Lines Matching refs:zLike
28740 static int outputDumpWarning(ShellState *p, const char *zLike){ in outputDumpWarning() argument
28745 "sql LIKE 'CREATE VIRTUAL TABLE%%' AND %s", zLike ? zLike : "true" in outputDumpWarning()
29191 char *zLike = 0; in do_meta_command() local
29208 sqlite3_free(zLike); in do_meta_command()
29227 sqlite3_free(zLike); in do_meta_command()
29245 if( zLike ){ in do_meta_command()
29246 zLike = sqlite3_mprintf("%z OR %z", zLike, zExpr); in do_meta_command()
29248 zLike = zExpr; in do_meta_command()
29255 outputDumpWarning(p, zLike); in do_meta_command()
29270 if( zLike==0 ) zLike = sqlite3_mprintf("true"); in do_meta_command()
29276 zLike in do_meta_command()
29286 zLike in do_meta_command()
29291 sqlite3_free(zLike); in do_meta_command()
31417 const char *zLike = 0; /* Which table to checksum. 0 means everything */ in do_meta_command() local
31452 }else if( zLike ){ in do_meta_command()
31457 zLike = z; in do_meta_command()
31459 if( sqlite3_strlike("sqlite\\_%", zLike, '\\')==0 ) bSchema = 1; in do_meta_command()
31481 if( zLike && sqlite3_strlike(zLike, zTab, 0)!=0 ) continue; in do_meta_command()
31537 zRevText = sqlite3_mprintf(zRevText, zLike? " AND name LIKE $tspec" : ""); in do_meta_command()
31562 if( zLike ) sqlite3_bind_text(pStmt,1,zLike,-1,SQLITE_STATIC); in do_meta_command()