Home
last modified time | relevance | path

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

/freebsd-src/contrib/sqlite3/
H A Dsqlite3ext.h648 #define sqlite3_str_appendall sqlite3_api->str_appendall macro
H A Dsqlite3.h8481 ** zero-terminated string in its entirety, use the [sqlite3_str_appendall()]
8484 ** ^The [sqlite3_str_appendall(X,S)] method appends the complete content of
8501 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
H A Dsqlite3.c8794 ** zero-terminated string in its entirety, use the [sqlite3_str_appendall()]
8797 ** ^The [sqlite3_str_appendall(X,S)] method appends the complete content of
8814 SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn);
32181 SQLITE_API void sqlite3_str_appendall(sqlite3_str *p, const char *z){ sqlite3_str_appendall() function
[all...]
H A Dshell.c21105 sqlite3_str_appendall(pStr, zContext); in save_err_msg()