Searched refs:zTest (Results 1 – 6 of 6) sorted by relevance
| /sqlite-3.40.0/ext/fts2/ |
| H A D | fts2_tokenizer.c | 348 char *zTest = 0; in sqlite3Fts2InitHashTable() local 353 zTest = sqlite3_mprintf("%s_test", zName); in sqlite3Fts2InitHashTable() 355 if( !zTest || !zTest2 ){ in sqlite3Fts2InitHashTable() 364 || (rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0)) in sqlite3Fts2InitHashTable() 365 || (rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0)) in sqlite3Fts2InitHashTable() 370 sqlite3_free(zTest); in sqlite3Fts2InitHashTable()
|
| /sqlite-3.40.0/test/ |
| H A D | fuzzinvariants.c | 73 char *zTest; in fuzz_invariant() local 83 zTest = fuzz_invariant_sql(pStmt, iCnt); in fuzz_invariant() 84 if( zTest==0 ) return SQLITE_DONE; in fuzz_invariant() 85 rc = sqlite3_prepare_v2(db, zTest, -1, &pTestStmt, 0); in fuzz_invariant() 89 sqlite3_errmsg(db), zTest); in fuzz_invariant() 91 sqlite3_free(zTest); in fuzz_invariant() 95 sqlite3_free(zTest); in fuzz_invariant()
|
| H A D | malloctraceviewer.tcl | 150 proc populate_tree_widget {db zTest} { argument 160 WHERE (zTest = $zTest OR $zTest = 'TOTAL') AND llength(lstack)>$ii 176 set ::O(current) $zTest 252 populate_tree_widget mddb [mddb one {SELECT zTest FROM malloc LIMIT 1}]
|
| H A D | threadtest3.c | 1500 const char *zTest; /* Name of this test */ in main() member 1554 if( sqlite3_strglob(zArg, aTest[i].zTest)==0 ) break; in main() 1562 char const *z = aTest[i].zTest; in main() 1580 printf(" %s\n", aTest[i].zTest); in main()
|
| /sqlite-3.40.0/ext/lsm1/lsm-test/ |
| H A D | lsmtest2.c | 149 char *zTest; in testCaseBegin() local 153 zTest = testMallocVPrintf(zFmt, ap); in testCaseBegin() 155 if( zPattern==0 || testGlobMatch(zPattern, zTest) ){ in testCaseBegin() 156 printf("%-50s ...", zTest); in testCaseBegin() 159 testFree(zTest); in testCaseBegin() 468 const char *zTest; in do_crash_test() member 483 if( testCaseBegin(pRc, zPattern, "%s", p->zTest) ){ in do_crash_test()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_tokenizer.c | 487 char *zTest = 0; in sqlite3Fts3InitHashTable() local 490 zTest = sqlite3_mprintf("%s_test", zName); in sqlite3Fts3InitHashTable() 492 if( !zTest || !zTest2 ){ in sqlite3Fts3InitHashTable() 505 rc = sqlite3_create_function(db, zTest, -1, any, p, testFunc, 0, 0); in sqlite3Fts3InitHashTable() 513 sqlite3_free(zTest); in sqlite3Fts3InitHashTable()
|