Searched refs:sqlite3_str_append (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | sqlite3ext.h | 647 #define sqlite3_str_append sqlite3_api->str_append macro
|
H A D | sqlite3.h | 8475 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N);
|
H A D | sqlite3.c | 8788 SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); 25412 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc() 25478 sqlite3_str_append(&sRes, cf=='p' ? "PM" : "pm", 2); in strftimeFunc() 25480 sqlite3_str_append(&sRes, cf=='p' ? "AM" : "am", 2); in strftimeFunc() 25527 if( j<i ) sqlite3_str_append(&sRes, zFmt+j, (int)(i-j)); in strftimeFunc() 31070 sqlite3_str_append(pAccum, bufpt, (int)(fmt - bufpt)); in sqlite3_str_vappendf() 31074 sqlite3_str_append(pAccum, "%", 1); in sqlite3_str_vappendf() 31540 sqlite3_str_append(pAccum, buf, length); in sqlite3_str_vappendf() 31550 sqlite3_str_append(pAccum, in sqlite3_str_vappendf() 31673 sqlite3_str_append(pAccum, (const char*)pToken->z, pToken->n); in sqlite3_str_vappendf() [all …]
|
H A D | shell.c | 20575 sqlite3_str_append(pStr, "x'", 2); in quoted_column() 20579 sqlite3_str_append(pStr, "'", 1); in quoted_column()
|