Searched refs:zAux (Results 1 – 4 of 4) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | startup.c | 602 char *zAux; in main() local 606 zAux = sqlite3_mprintf("%s-journal", zDbName); in main() 607 unlink(zAux); in main() 608 sqlite3_free(zAux); in main() 609 zAux = sqlite3_mprintf("%s-wal", zDbName); in main() 610 unlink(zAux); in main() 611 sqlite3_free(zAux); in main()
|
| /sqlite-3.40.0/ext/fts3/tool/ |
| H A D | fts3view.c | 184 char *zAux; in showVocabulary() local 194 zAux = sqlite3_mprintf("viewer_%llx", zTab, r); in showVocabulary() 203 runSql(db, "CREATE VIRTUAL TABLE %s USING fts4aux(%Q)", zAux, zTab); in showVocabulary() 206 zAux); in showVocabulary() 218 " WHERE col='*' AND occurrences==1", zAux); in showVocabulary() 228 " WHERE col='*' AND documents==1", zAux); in showVocabulary() 239 " WHERE col='*' AND occurrences<=%d", zAux, nDoc/1000); in showVocabulary() 251 " WHERE col='*' AND occurrences<=%d", zAux, nDoc/100); in showVocabulary() 266 " LIMIT %d", zAux, nTop); in showVocabulary() 278 sqlite3_free(zAux); in showVocabulary()
|
| /sqlite-3.40.0/src/ |
| H A D | test_func.c | 202 char *zAux = sqlite3_get_auxdata(pCtx, i); in test_auxdata() local 203 if( zAux ){ in test_auxdata() 205 assert( strcmp(zAux,z)==0 ); in test_auxdata() 210 zAux = testContextMalloc(pCtx, n); in test_auxdata() 211 if( zAux ){ in test_auxdata() 212 memcpy(zAux, z, n); in test_auxdata() 213 sqlite3_set_auxdata(pCtx, i, zAux, free_test_auxdata); in test_auxdata()
|
| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest6.c | 317 void testSaveDb(const char *zFile, const char *zAux){ in testSaveDb() argument 318 char *zLog = testMallocPrintf("%s-%s", zFile, zAux); in testSaveDb() 320 char *zLogSave = testMallocPrintf("%s-%s-save", zFile, zAux); in testSaveDb() 338 void testRestoreDb(const char *zFile, const char *zAux){ in testRestoreDb() argument 339 char *zLog = testMallocPrintf("%s-%s", zFile, zAux); in testRestoreDb() 341 char *zLogSave = testMallocPrintf("%s-%s-save", zFile, zAux); in testRestoreDb()
|