HomeSort by relevance Sort by last modified time
    Searched refs:sqlite3_mprintf (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/sqlite/src/src/
test_loadext.c 63 char *zMsg = sqlite3_mprintf("unknown status property: %s", zName);
79 char *zMsg = sqlite3_mprintf("sqlite3_status(%d,...) returns %d", op, rc);
119 zErr = sqlite3_mprintf("broken!");
table.c 72 z = sqlite3_mprintf("%s", colv[i]);
78 p->zErrMsg = sqlite3_mprintf(
153 *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg);
test_autoext.c 80 zErr = sqlite3_mprintf("broken autoext!");
test_schema.c 196 zSql = sqlite3_mprintf(
201 zSql = sqlite3_mprintf(
220 zSql = sqlite3_mprintf("PRAGMA %Q.table_info(%Q)",
loadext.c 205 sqlite3_mprintf,
412 *pzErrMsg = sqlite3_mprintf("not authorized");
448 *pzErrMsg = sqlite3_mprintf("error during initialization: %s", zErrmsg);
test8.c 100 p->base.zErrMsg = sqlite3_mprintf("echo-vtab-error: %s", zErr);
171 zSql = sqlite3_mprintf("SELECT * FROM %Q", zTab);
254 zSql = sqlite3_mprintf("PRAGMA index_list(%s)", zTab);
268 zSql = sqlite3_mprintf("PRAGMA index_info(%s)", zIdx);
414 pVtab->zThis = sqlite3_mprintf("%s", argv[2]);
422 pVtab->zTableName = sqlite3_mprintf("%s", argv[3]);
425 char *z = sqlite3_mprintf("%s%s", argv[2], &(pVtab->zTableName[1]));
483 pVtab->zLogName = sqlite3_mprintf("%s", argv[4]);
484 zSql = sqlite3_mprintf("CREATE TABLE %Q(logmsg)", pVtab->zLogName);
488 *pzErr = sqlite3_mprintf("%s", sqlite3_errmsg(db))
    [all...]
test_stat.c 389 pCsr->aPage[0].zPath = sqlite3_mprintf("/");
409 pCsr->zPath = sqlite3_mprintf(
442 p[1].zPath = sqlite3_mprintf("%s%.3x/", p->zPath, p->iCell);
474 pCsr->zPath = sqlite3_mprintf("%s", p->zPath);
recover.c 503 zSql = sqlite3_mprintf("SELECT rootpage FROM %s.sqlite_master "
538 char *zSql = sqlite3_mprintf("PRAGMA %s.encoding", zDb);
    [all...]
test5.c 158 z = sqlite3_mprintf("%s", z);
test_fuzzer.c 197 *pzErr = sqlite3_mprintf("%s virtual tables must be TEMP", argv[0]);
816 pVTab->zErrMsg = sqlite3_mprintf("cannot delete from a %s virtual table",
822 pVTab->zErrMsg = sqlite3_mprintf("cannot update a %s virtual table",
837 pVTab->zErrMsg = sqlite3_mprintf("cost must be positive");
test_intarray.c 237 zSql = sqlite3_mprintf("CREATE VIRTUAL TABLE temp.%Q USING %Q",
test1.c 324 zSql = sqlite3_mprintf(argv[2], argv[3]);
447 zSql = sqlite3_mprintf("%s", argv[2]);
511 zResult = sqlite3_mprintf("%z%s%s", zResult, argv[1], argv[i]);
532 zStr = sqlite3_mprintf("%s%n", argv[1], &n);
600 zSql = sqlite3_mprintf(argv[2],argv[3]);
    [all...]
test4.c 145 threadset[i].zFilename = sqlite3_mprintf("%s", argv[2]);
479 threadset[i].zArg = sqlite3_mprintf("%s", argv[2]);
test7.c 167 threadset[i].zFilename = sqlite3_mprintf("%s", argv[2]);
510 threadset[i].zArg = sqlite3_mprintf("%s", argv[2]);
test_func.c 312 zErr = sqlite3_mprintf("sqlite3_prepare_v2() error: %s",sqlite3_errmsg(db));
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_tokenizer.c 93 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
176 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
352 zTest = sqlite3_mprintf("%s_test", zName);
353 zTest2 = sqlite3_mprintf("%s_internal_test", zName);
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_tokenizer.c 90 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
164 zCopy = sqlite3_mprintf("%s", zArg);
174 *pzErr = sqlite3_mprintf("unknown tokenizer: %s", z);
197 *pzErr = sqlite3_mprintf("unknown tokenizer");
282 char *zErr = sqlite3_mprintf("unknown tokenizer: %s", zName);
461 zTest = sqlite3_mprintf("%s_test", zName);
462 zTest2 = sqlite3_mprintf("%s_internal_test", zName);
fts3_expr.c 802 zBuf = sqlite3_mprintf(
805 zBuf = sqlite3_mprintf("%z %.*s%s", zBuf,
814 zBuf = sqlite3_mprintf("%zNEAR/%d ", zBuf, pExpr->nNear);
817 zBuf = sqlite3_mprintf("%zNOT ", zBuf);
820 zBuf = sqlite3_mprintf("%zAND ", zBuf);
823 zBuf = sqlite3_mprintf("%zOR ", zBuf);
827 if( zBuf ) zBuf = sqlite3_mprintf("%z{", zBuf);
829 if( zBuf ) zBuf = sqlite3_mprintf("%z} {", zBuf);
832 if( zBuf ) zBuf = sqlite3_mprintf("%z}", zBuf);
fts3_aux.c 76 *pzErr = sqlite3_mprintf(
366 pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr);
373 pCsr->zStop = sqlite3_mprintf("%s", sqlite3_value_text(apVal[iIdx]));
fts3.c 529 zCols = sqlite3_mprintf("%Q, ", p->azColumn[0]);
531 zCols = sqlite3_mprintf("%z%Q, ", zCols, p->azColumn[i]);
535 zSql = sqlite3_mprintf(
566 zContentCols = sqlite3_mprintf("docid INTEGER PRIMARY KEY");
569 zContentCols = sqlite3_mprintf("%z, 'c%d%q'", zContentCols, i, z);
624 zSql = sqlite3_mprintf("PRAGMA %Q.page_size", p->zDb);
666 zValue = sqlite3_mprintf("%s", &zCsr[1]);
689 char *z2 = sqlite3_mprintf("%s%s", *pz, z);
895 *pzErr = sqlite3_mprintf("unrecognized matchinfo: %s", zVal);
905 *pzErr = sqlite3_mprintf("unrecognized parameter: %s", z)
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
threadtest1.c 44 extern char *sqlite3_mprintf(const char *zFormat, ...);
93 sqlite3_mprintf("%s",azArg[i] ? azArg[i] : "");
264 zFile = sqlite3_mprintf("%d.testdb-%d", i%2+1, (i+2)/2);
269 char *zJournal = sqlite3_mprintf("%s-journal", zDb);
threadtest3.c 60 #define test_error(z, ...) test_error_x(z, sqlite3_mprintf(__VA_ARGS__))
467 pErr->zErr = sqlite3_mprintf(
544 pErr->zErr = sqlite3_mprintf("%s", sqlite3_errmsg(pDb->db));
609 pErr->zErr = sqlite3_mprintf("Cannot discern type: \"%s\"", zName);
674 zRet = sqlite3_mprintf("%s", sqlite3_column_text(pStmt, 0));
706 zErr = sqlite3_mprintf("%s", z);
708 zErr = sqlite3_mprintf("%z\n%s", zErr, z);
800 test_error_x(pErr, sqlite3_mprintf("no such file: %s", zFrom));
934 return sqlite3_mprintf("%d iterations", nIter);
952 return sqlite3_mprintf("%d checkpoints", nCkpt)
    [all...]
threadtest2.c 104 char *zJournal = sqlite3_mprintf("%s-journal", DB_FILE);
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 778 char *zCreate = sqlite3_mprintf(
    [all...]
  /external/sqlite/android/
sqlite3_android.cpp 295 char * sql = sqlite3_mprintf("INSERT INTO %s (token, source%s%s) VALUES (?, ?%s%s);",

Completed in 208 milliseconds

1 2