Searched refs:zWhere (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dalter.c253 ** If argument zWhere is NULL, then a pointer string containing the text
259 ** If argument zWhere is not NULL, then the string returned is
260 ** "<where> OR name=<constant>", where <where> is the contents of zWhere.
261 ** In this case zWhere is passed to sqlite3DbFree() before returning.
264 static char *whereOrName(sqlite3 *db, char *zWhere, char *zConstant){ argument
266 if( !zWhere ){
269 zNew = sqlite3MPrintf(db, "%s OR name=%Q", zWhere, zConstant);
270 sqlite3DbFree(db, zWhere);
284 char *zWhere = 0; local
286 zWhere
300 char *zWhere = 0; local
334 char *zWhere; local
407 char *zWhere = 0; /* Where clause to locate temp triggers */ local
[all...]
H A Danalyze.c27 ** Argument zWhere may be a pointer to a buffer containing a table name,
30 ** with the named table are deleted. If zWhere==0, then code is generated
37 const char *zWhere, /* Delete entries for this table or index */
76 /* The table already exists. If zWhere is not NULL, delete all entries
77 ** associated with the table zWhere. If zWhere is NULL, delete the
81 if( zWhere ){
83 "DELETE FROM %Q.%s WHERE %s=%Q", pDb->zName, zTab, zWhereType, zWhere
33 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
H A Dvtab.c339 char *zWhere; local
373 zWhere = sqlite3MPrintf(db, "name='%q' AND type='table'", pTab->zName);
374 sqlite3VdbeAddOp4(v, OP_ParseSchema, iDb, 0, 0, zWhere, P4_DYNAMIC);
H A Dwhere.c3541 char *zWhere = explainIndexRange(db, pLevel, pItem->pTab); local
3547 zWhere
3549 sqlite3DbFree(db, zWhere);
/external/sqlite/dist/orig/
H A Dshell.c2124 ** Try to transfer all rows of the schema that match zWhere. For
2132 const char *zWhere,
2143 " WHERE %s", zWhere);
2170 " WHERE %s ORDER BY rowid DESC", zWhere);
2129 tryToCloneSchema( struct callback_data *p, sqlite3 *newDb, const char *zWhere, void (*xForEach)(struct callback_data*,sqlite3*,const char*) ) argument
H A Dsqlite3.c62449 sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere) argument
82845 whereOrName(sqlite3 *db, char *zWhere, char *zConstant) argument
82865 char *zWhere = 0; local
82881 char *zWhere = 0; local
82915 char *zWhere; local
82988 char *zWhere = 0; /* Where clause to locate temp triggers */ local
83582 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
109709 char *zWhere; local
113730 char *zWhere = explainIndexRange(db, pLoop, pItem->pTab); local
[all...]
/external/sqlite/dist/
H A Dshell.c2144 ** Try to transfer all rows of the schema that match zWhere. For
2152 const char *zWhere,
2163 " WHERE %s", zWhere);
2190 " WHERE %s ORDER BY rowid DESC", zWhere);
2149 tryToCloneSchema( struct callback_data *p, sqlite3 *newDb, const char *zWhere, void (*xForEach)(struct callback_data*,sqlite3*,const char*) ) argument
H A Dsqlite3.c62469 sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere) argument
82865 whereOrName(sqlite3 *db, char *zWhere, char *zConstant) argument
82885 char *zWhere = 0; local
82901 char *zWhere = 0; local
82935 char *zWhere; local
83008 char *zWhere = 0; /* Where clause to locate temp triggers */ local
83602 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
109729 char *zWhere; local
113750 char *zWhere = explainIndexRange(db, pLoop, pItem->pTab); local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c74758 whereOrName(sqlite3 *db, char *zWhere, char *zConstant) argument
74778 char *zWhere = 0; local
74794 char *zWhere = 0; local
74828 char *zWhere; local
74901 char *zWhere = 0; /* Where clause to locate temp triggers */ local
75355 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
97051 char *zWhere; local
101195 char *zWhere = explainIndexRange(db, pLevel, pItem->pTab); local
[all...]

Completed in 633 milliseconds