Lines Matching refs:zLike
26025 static int outputDumpWarning(ShellState *p, const char *zLike){ in outputDumpWarning() argument
26030 "sql LIKE 'CREATE VIRTUAL TABLE%%' AND %s", zLike ? zLike : "true" in outputDumpWarning()
26479 char *zLike = 0; in do_meta_command() local
26496 sqlite3_free(zLike); in do_meta_command()
26514 sqlite3_free(zLike); in do_meta_command()
26532 if( zLike ){ in do_meta_command()
26533 zLike = sqlite3_mprintf("%z OR %z", zLike, zExpr); in do_meta_command()
26535 zLike = zExpr; in do_meta_command()
26542 outputDumpWarning(p, zLike); in do_meta_command()
26557 if( zLike==0 ) zLike = sqlite3_mprintf("true"); in do_meta_command()
26563 zLike in do_meta_command()
26573 zLike in do_meta_command()
26578 sqlite3_free(zLike); in do_meta_command()
28594 const char *zLike = 0; /* Which table to checksum. 0 means everything */ in do_meta_command() local
28628 }else if( zLike ){ in do_meta_command()
28633 zLike = z; in do_meta_command()
28635 if( sqlite3_strlike("sqlite\\_%", zLike, '\\')==0 ) bSchema = 1; in do_meta_command()
28657 if( zLike && sqlite3_strlike(zLike, zTab, 0)!=0 ) continue; in do_meta_command()
28713 zRevText = sqlite3_mprintf(zRevText, zLike? " AND name LIKE $tspec" : ""); in do_meta_command()
28738 if( zLike ) sqlite3_bind_text(pStmt,1,zLike,-1,SQLITE_STATIC); in do_meta_command()