Searched refs:zWhere (Results 1 - 7 of 7) 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 Dsqlite3.c59715 sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere) argument
78695 whereOrName(sqlite3 *db, char *zWhere, char *zConstant) argument
78715 char *zWhere = 0; local
78731 char *zWhere = 0; local
78765 char *zWhere; local
78838 char *zWhere = 0; /* Where clause to locate temp triggers */ local
79394 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
101815 char *zWhere; local
106285 char *zWhere = explainIndexRange(db, pLevel, pItem->pTab); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c59743 sqlite3VdbeAddParseSchemaOp(Vdbe *p, int iDb, char *zWhere) argument
78731 whereOrName(sqlite3 *db, char *zWhere, char *zConstant) argument
78751 char *zWhere = 0; local
78767 char *zWhere = 0; local
78801 char *zWhere; local
78874 char *zWhere = 0; /* Where clause to locate temp triggers */ local
79430 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
101851 char *zWhere; local
106321 char *zWhere = explainIndexRange(db, pLevel, pItem->pTab); local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c74937 whereOrName(sqlite3 *db, char *zWhere, char *zConstant) argument
74957 char *zWhere = 0; local
74973 char *zWhere = 0; local
75007 char *zWhere; local
75080 char *zWhere = 0; /* Where clause to locate temp triggers */ local
75534 openStatTable( Parse *pParse, int iDb, int iStatCur, const char *zWhere, const char *zWhereType ) argument
97258 char *zWhere; local
101402 char *zWhere = explainIndexRange(db, pLevel, pItem->pTab); local
[all...]

Completed in 447 milliseconds