Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/sqlite3/
H A Dsqlite3ext.h620 #define sqlite3_strlike sqlite3_api->strlike macro
H A Dsqlite3.h9511 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
H A Dshell.c20594 if( sqlite3_strlike("CREATE VIEW%", azArg[0], 0)==0 in shell_callback()
20595 || sqlite3_strlike("CREATE TRIG%", azArg[0], 0)==0 in shell_callback()
21641 }else if( sqlite3_strlike("_NAN", zVar, 0)==0 ){ in bind_prepared_stmt()
21645 }else if( sqlite3_strlike("_INF", zVar, 0)==0 ){ in bind_prepared_stmt()
23127 if( sqlite3_strlike(zPat, azHelp[i], 0)==0 ){ in showHelp()
23256 if( dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){ in deduceDatabaseType()
23277 }else if( n==0 && dfltZip && sqlite3_strlike("%.zip",zName,0)==0 ){ in deduceDatabaseType()
28140 int isSchema = sqlite3_strlike(zName, "sqlite_master", '\\')==0 in do_meta_command()
28141 || sqlite3_strlike(zName, "sqlite_schema", '\\')==0 in do_meta_command()
28635 if( sqlite3_strlike("sqlite\\_%", zLike, '\\')==0 ) bSchema = 1; in do_meta_command()
[all …]
H A Dsqlite3.c9824 SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc);
102252 || sqlite3_strlike("DELETE%",p->zSql,0)!=0
119476 if( sqlite3_strlike("sqlite\\_%", pTab->zName, '\\')==0 ){
129523 SQLITE_API int sqlite3_strlike(const char *zPattern, const char *zStr, unsigned int esc){
137053 #define sqlite3_strlike sqlite3_api->strlike
137556 sqlite3_strlike,