Searched refs:sqlite3_strglob (Results 1 - 4 of 4) sorted by relevance
/third_party/sqlite/include/ |
H A D | sqlite3ext.h | 608 #define sqlite3_strglob sqlite3_api->strglob macro
|
H A D | sqlite3.h | 9248 ** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if 9251 ** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the 9252 ** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function 9260 SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr); 9281 ** See also: [sqlite3_strglob()].
|
/third_party/sqlite/src/ |
H A D | shell.c | 16385 if( sqlite3_strglob("CREATE TABLE ['\"]*", z)==0 ){ in printSchemaLine() 18586 }else if( sqlite3_strglob("sqlite_stat?", zTable)==0 && !noSys ){ in dump_callback() 19045 if( sqlite3_strglob(zPat, azHelp[i])==0 ){ in showHelp() 19166 if( sqlite3_strglob(pSession->azFilter[i], zTab)==0 ) return 0; in session_filter() 20684 ** 1. A GLOB pattern suitable for sqlite3_strglob(). If the plan output by in lintFkeyIndexes() 20783 res = zPlan!=0 && ( 0==sqlite3_strglob(zGlob, zPlan) in lintFkeyIndexes() 20784 || 0==sqlite3_strglob(zGlobIPK, zPlan)); in lintFkeyIndexes() 22945 if( rc && sqlite3_strglob("no such table: *", sqlite3_errmsg(p->db))==0 ){ in do_meta_command()
|
H A D | sqlite3.c | 9557 ** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if 9560 ** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the 9561 ** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function 9569 SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr); 9590 ** See also: [sqlite3_strglob()]. 125541 SQLITE_API int sqlite3_strglob(const char *zGlobPattern, const char *zString){ global() function 132531 #define sqlite3_strglob global() macro [all...] |
Completed in 172 milliseconds