HomeSort by relevance Sort by last modified time
    Searched refs:pTabList (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
auth.c 127 ** is in pTabList or else it is the NEW or OLD table of a trigger.
138 SrcList *pTabList /* All table that pExpr might refer to */
143 int iSrc; /* Index in pTabList->a[] of table being read */
159 assert( pTabList );
160 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
161 if( pExpr->iTable==pTabList->a[iSrc].iCursor ){
162 pTab = pTabList->a[iSrc].pTab;
delete.c 221 ** pTabList pWhere
225 SrcList *pTabList, /* The table from which we should delete things */
253 assert( pTabList->nSrc==1 );
260 pTab = sqlite3SrcListLookup(pParse, pTabList);
299 assert( pTabList->nSrc==1 );
300 iCur = pTabList->a[0].iCursor = pParse->nTab++;
333 sNC.pSrcList = pTabList;
374 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0,WHERE_DUPLICATES_OK);
445 sqlite3SrcListDelete(db, pTabList);
update.c 86 * onError pTabList pChanges pWhere
90 SrcList *pTabList, /* The table in which we should change things */
137 assert( pTabList->nSrc==1 );
141 pTab = sqlite3SrcListLookup(pParse, pTabList);
177 pTabList->a[0].iCursor = iCur = pParse->nTab++;
185 sNC.pSrcList = pTabList;
269 updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef,
272 pTabList = 0;
313 pWInfo = sqlite3WhereBegin(pParse, pTabList, pWhere,0, WHERE_ONEPASS_DESIRED);
558 sqlite3SrcListDelete(db, pTabList);
    [all...]
select.c     [all...]
where.c 622 SrcList *pTabList, /* the FROM clause */
627 exprAnalyze(pTabList, pWC, i);
    [all...]
insert.c 435 SrcList *pTabList, /* Name of table into which we are inserting */
487 assert( pTabList->nSrc==1 );
488 zTab = pTabList->a[0].zName;
490 pTab = sqlite3SrcListLookup(pParse, pTabList);
692 pTabList, 0, pTab->nCol-nHidden, nColumn);
730 pTabList, 0, pColumn->a[i].zName);
    [all...]
sqliteInt.h     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 83 milliseconds