/external/chromium_org/third_party/sqlite/src/src/ |
util.c | 100 ** If it is not NULL, string zFormat specifies the format of the 110 ** zFormat and any string tokens that follow it are assumed to be 114 ** should be called with err_code set to SQLITE_OK and zFormat set 117 void sqlite3Error(sqlite3 *db, int err_code, const char *zFormat, ...){ 120 if( zFormat ){ 123 va_start(ap, zFormat); 124 z = sqlite3VMPrintf(db, zFormat, ap); 150 void sqlite3ErrorMsg(Parse *pParse, const char *zFormat, ...){ 154 va_start(ap, zFormat); 155 zMsg = sqlite3VMPrintf(db, zFormat, ap) [all...] |
test_vfstrace.c | 99 ** Send trace output defined by zFormat and subsequent arguments. 103 const char *zFormat, 108 va_start(ap, zFormat); 109 zMsg = sqlite3_vmprintf(zFormat, ap); 116 ** Convert value rc into a string and print it using zFormat. zFormat 121 const char *zFormat, 176 vfstrace_printf(pInfo, zFormat, zVal);
|
malloc.c | 739 void sqlite3SetString(char **pz, sqlite3 *db, const char *zFormat, ...){ 743 va_start(ap, zFormat); 744 z = sqlite3VMPrintf(db, zFormat, ap);
|
date.c | 1033 char *zFormat = (char *)sqlite3_user_data(context); 1048 strftime(zBuf, 20, zFormat, &sNow); 1055 strftime(zBuf, 20, zFormat, pTm);
|
shell.c | 250 static void iotracePrintf(const char *zFormat, ...){ 254 va_start(ap, zFormat); 255 z = sqlite3_vmprintf(zFormat, ap); [all...] |
vdbeaux.c | 777 void sqlite3VdbeComment(Vdbe *p, const char *zFormat, ...){ 784 va_start(ap, zFormat); 786 *pz = sqlite3VMPrintf(p->db, zFormat, ap); 790 void sqlite3VdbeNoopComment(Vdbe *p, const char *zFormat, ...){ 798 va_start(ap, zFormat); 800 *pz = sqlite3VMPrintf(p->db, zFormat, ap); [all...] |
vtab.c | 478 const char *zFormat = "vtable constructor did not declare schema: %s"; 479 *pzErr = sqlite3MPrintf(db, zFormat, pTab->zName);
|
test1.c | 248 static void io_trace_callback(const char *zFormat, ...){ 250 va_start(ap, zFormat); 251 vfprintf(iotrace_file, zFormat, ap); 556 const char *zFormat = argv[2]; 560 sqlite3_snprintf(n, zStr, zFormat, a1); [all...] |
sqlite.h.in | [all...] |
build.c | 234 void sqlite3NestedParse(Parse *pParse, const char *zFormat, ...){ 244 va_start(ap, zFormat); 245 zSql = sqlite3VMPrintf(db, zFormat, ap); [all...] |
btree.c | [all...] |
/external/chromium_org/third_party/sqlite/src/test/ |
threadtest1.c | 44 extern char *sqlite3_mprintf(const char *zFormat, ...); 45 extern char *sqlite3_vmprintf(const char *zFormat, va_list); 102 char **db_query(sqlite *db, const char *zFile, const char *zFormat, ...){ 108 va_start(ap, zFormat); 109 zSql = sqlite3_vmprintf(zFormat, ap); 137 void db_execute(sqlite *db, const char *zFile, const char *zFormat, ...){ 142 va_start(ap, zFormat); 143 zSql = sqlite3_vmprintf(zFormat, ap);
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fulltext.c | 478 static char *string_format(const char *zFormat, const char *zName){ 486 for(p = zFormat ; *p ; ++p){ 492 for(p = zFormat; *p; ++p){ 505 static int sql_exec(sqlite3 *db, const char *zName, const char *zFormat){ 506 char *zCommand = string_format(zFormat, zName); 513 const char *zFormat){ 514 char *zCommand = string_format(zFormat, zName); [all...] |
fts1.c | 890 static char *string_format(const char *zFormat, 901 for(p = zFormat ; *p ; ++p){ 907 for(p = zFormat; *p; ++p){ 924 const char *zFormat){ 925 char *zCommand = string_format(zFormat, zDb, zName); 934 sqlite3_stmt **ppStmt, const char *zFormat){ 935 char *zCommand = string_format(zFormat, zDb, zName); [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_snippet.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | 48 static void asyncTrace(const char *zFormat, ...){ 51 va_start(ap, zFormat); 52 z = sqlite3_vmprintf(zFormat, ap); [all...] |
/external/sqlite/dist/orig/ |
shell.c | 266 static void iotracePrintf(const char *zFormat, ...){ 270 va_start(ap, zFormat); 271 z = sqlite3_vmprintf(zFormat, ap); [all...] |
sqlite3.h | [all...] |
sqlite3.c | [all...] |
/external/sqlite/dist/ |
shell.c | 271 static void iotracePrintf(const char *zFormat, ...){ 275 va_start(ap, zFormat); 276 z = sqlite3_vmprintf(zFormat, ap); [all...] |
sqlite3.h | [all...] |
sqlite3.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2.c | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.h | [all...] |
sqlite3.c | [all...] |