Home
last modified time | relevance | path

Searched refs:zArg1 (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/test/
H A Dossfuzz.c89 const char *zArg1, in block_debug_pragmas() argument
95 && (sqlite3_strnicmp("vdbe_", zArg1, 5)==0 in block_debug_pragmas()
96 || sqlite3_stricmp("parser_trace", zArg1)==0) in block_debug_pragmas()
H A Dfuzzcheck.c854 const char *zArg1, in block_troublesome_sql() argument
865 if( sqlite3_stricmp("busy_timeout",zArg1)==0 in block_troublesome_sql()
869 }else if( sqlite3_stricmp("hard_heap_limit", zArg1)==0 in block_troublesome_sql()
870 || sqlite3_stricmp("reverse_unordered_selects", zArg1)==0 in block_troublesome_sql()
877 if( sqlite3_strnicmp("vdbe_", zArg1, 5)==0 in block_troublesome_sql()
878 || sqlite3_stricmp("parser_trace", zArg1)==0 in block_troublesome_sql()
879 || sqlite3_stricmp("temp_store_directory", zArg1)==0 in block_troublesome_sql()
883 }else if( sqlite3_stricmp("oom",zArg1)==0 in block_troublesome_sql()
894 if( zArg1==0 ) return SQLITE_DENY; in block_troublesome_sql()
895 if( strcmp(zArg1,":memory:")==0 ) return SQLITE_OK; in block_troublesome_sql()
[all …]
/sqlite-3.40.0/src/
H A Dauth.c200 const char *zArg1, in sqlite3AuthCheck() argument
221 testcase( zArg1==0 ); in sqlite3AuthCheck()
226 rc = db->xAuth(db->pAuthArg, code, zArg1, zArg2, zArg3, pParse->zAuthContext in sqlite3AuthCheck()
H A Dtclsqlite.c1093 const char *zArg1, in auth_callback() argument
1155 Tcl_DStringAppendElement(&str, zArg1 ? zArg1 : ""); in auth_callback()