Lines Matching refs:zArg1
854 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()
896 if( sqlite3_strglob("file:*[?]vfs=memdb", zArg1)==0 in block_troublesome_sql()
897 && sqlite3_strglob("file:*[^/a-zA-Z0-9_.]*[?]vfs=memdb", zArg1)!=0 in block_troublesome_sql()