Home
last modified time | relevance | path

Searched refs:zTest (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/ext/fts2/
H A Dfts2_tokenizer.c348 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 Dfuzzinvariants.c73 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 Dmalloctraceviewer.tcl150 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 Dthreadtest3.c1500 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 Dlsmtest2.c149 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 Dfts3_tokenizer.c487 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()