Home
last modified time | relevance | path

Searched refs:sqlite3_str_appendall (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3ext.h648 #define sqlite3_str_appendall sqlite3_api->str_appendall macro
H A Dsqlite3.h8476 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
H A Dsqlite3.c8789 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
31665 sqlite3_str_appendall(pAccum, (const char*)pExpr->u.zToken); in sqlite3_str_vappendf()
31686 sqlite3_str_appendall(pAccum, pItem->zAlias); in sqlite3_str_vappendf()
31689 sqlite3_str_appendall(pAccum, pItem->zDatabase); in sqlite3_str_vappendf()
31692 sqlite3_str_appendall(pAccum, pItem->zName); in sqlite3_str_vappendf()
31694 sqlite3_str_appendall(pAccum, pItem->zAlias); in sqlite3_str_vappendf()
31876 SQLITE_API void sqlite3_str_appendall(sqlite3_str *p, const char *z){ in sqlite3_str_appendall() function
86117 sqlite3_str_appendall(&x, zP4);
86120 sqlite3_str_appendall(&x, pOp->zComment);
86166 sqlite3_str_appendall(&x, pOp->zComment);
[all …]
H A Dshell.c19842 sqlite3_str_appendall(pStr, zContext); in save_err_msg()