Searched refs:sqlite3_strglob (Results 1 – 15 of 15) sorted by relevance
| /sqlite-3.40.0/ext/misc/ |
| H A D | dbdump.c | 397 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 ){ in dump_callback() 412 if( sqlite3_strglob("CREATE TABLE ['\"]*", zSql)==0 ){ in dump_callback()
|
| H A D | vfslog.c | 276 && sqlite3_strglob("-mj??????9??", zFilename+nName-12)==0 ){ in vlogLogOpen()
|
| /sqlite-3.40.0/src/ |
| H A D | analyze.c | 1505 if( sqlite3_strglob("unordered*", z)==0 ){ 1507 }else if( sqlite3_strglob("sz=[0-9]*", z)==0 ){ 1511 }else if( sqlite3_strglob("noskipscan*", z)==0 ){ 1515 else if( sqlite3_strglob("costmult=[0-9]*",z)==0 ){
|
| H A D | loadext.c | 409 sqlite3_strglob,
|
| H A D | sqlite3ext.h | 602 #define sqlite3_strglob sqlite3_api->strglob macro
|
| H A D | func.c | 825 int sqlite3_strglob(const char *zGlobPattern, const char *zString){ in sqlite3_strglob() function
|
| H A D | test1.c | 8169 if( sqlite3_strglob("SQLITE_*", zSetting)==0 ) zSetting += 7; in test_sqlite3_db_config() 8170 if( sqlite3_strglob("DBCONFIG_*", zSetting)==0 ) zSetting += 9; in test_sqlite3_db_config() 8171 if( sqlite3_strglob("ENABLE_*", zSetting)==0 ) zSetting += 7; in test_sqlite3_db_config()
|
| H A D | shell.c.in | 1981 if( sqlite3_strglob("CREATE TABLE ['\"]*", z)==0 ){ 4182 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){ 4641 if( sqlite3_strglob(zPat, azHelp[i])==0 ){ 4762 if( sqlite3_strglob(pSession->azFilter[i], zTab)==0 ) return 0; 6280 ** 1. A GLOB pattern suitable for sqlite3_strglob(). If the plan output by 6379 res = zPlan!=0 && ( 0==sqlite3_strglob(zGlob, zPlan) 6380 || 0==sqlite3_strglob(zGlobIPK, zPlan)); 8541 if( rc && sqlite3_strglob("no such table: *", sqlite3_errmsg(p->db))==0 ){
|
| H A D | sqlite.h.in | 9196 ** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if 9199 ** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the 9200 ** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function 9208 int sqlite3_strglob(const char *zGlob, const char *zStr); 9229 ** See also: [sqlite3_strglob()].
|
| /sqlite-3.40.0/test/ |
| H A D | threadtest3.c | 480 if( sqlite3_strglob("* - no such table: *",p->zErr)==0 ) isWarn = 1; in print_err() 1554 if( sqlite3_strglob(zArg, aTest[i].zTest)==0 ) break; in main() 1563 if( sqlite3_strglob(argv[iArg],z)==0 ){ in main()
|
| H A D | speedtest1.c | 464 && ( sqlite3_strglob("CREATE *", zSql)==0 in printSql() 465 || sqlite3_strglob("DROP *", zSql)==0 in printSql() 466 || sqlite3_strglob("ALTER *", zSql)==0 in printSql()
|
| H A D | fuzzcheck.c | 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()
|
| /sqlite-3.40.0/ext/session/ |
| H A D | changeset.c | 340 if( !isalnum(zTab[0]) || sqlite3_strglob("*[^a-zA-Z0-9]*",zTab)==0 ){ in main()
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | tester1.js | 369 T.assert(0===capi.sqlite3_strglob("*.txt", "foo.txt")). 370 assert(0!==capi.sqlite3_strglob("*.txt", "foo.xtx")). 1187 T.assert(0===capi.sqlite3_strglob("*.txt", "foo.txt")). 1188 assert(0!==capi.sqlite3_strglob("*.txt", "foo.xtx")).
|
| /sqlite-3.40.0/mptest/ |
| H A D | mptest.c | 1008 if( (sqlite3_strglob(zCopy, sResult.z)==0)^isGlob ){ in runScript()
|