Searched refs:sqlite3_str_append (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3ext.h | 649 #define sqlite3_str_append sqlite3_api->str_append macro
|
H A D | sqlite3.h | 8712 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
|
H A D | sqlite3.c | 9031 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); 26137 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc() 26204 sqlite3_str_append(&sRes, cf=='p' ? "PM" : "pm", 2); in strftimeFunc() 26206 sqlite3_str_append(&sRes, cf=='p' ? "AM" : "am", 2); in strftimeFunc() 26273 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc() 31882 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); in sqlite3_str_vappendf() 31886 sqlite3_str_append(pAccum, "%", 1); in sqlite3_str_vappendf() 32336 sqlite3_str_append(pAccum, buf, length); in sqlite3_str_vappendf() 32346 sqlite3_str_append(pAccum, in sqlite3_str_vappendf() 32529 sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); in sqlite3_str_vappendf() [all …]
|
H A D | shell.c | 24357 sqlite3_str_append(pStr, "x'", 2); in quoted_column() 24361 sqlite3_str_append(pStr, "'", 1); in quoted_column()
|