Searched refs:pTabList (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dauth.c127 ** 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;
H A Ddelete.c221 ** 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);
223 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
H A Dupdate.c86 * 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);
88 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
[all...]
H A Dselect.c1003 SrcList *pTabList = pNC->pSrcList; local
1004 for(j=0;j<pTabList->nSrc && pTabList->a[j].iCursor!=pExpr->iTable;j++);
1005 if( j<pTabList->nSrc ){
1006 pTab = pTabList->a[j].pTab;
1007 pS = pTabList->a[j].pSelect;
1106 SrcList *pTabList, /* List of tables */
1113 sNC.pSrcList = pTabList;
1146 SrcList *pTabList, /* List of tables */
1173 }else if( (p->op==TK_COLUMN || p->op==TK_AGG_COLUMN) && pTabList ){
1104 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
1144 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
3162 SrcList *pTabList; local
3431 SrcList *pTabList; local
3715 SrcList *pTabList; /* List of tables to select from */ local
[all...]
H A Dwhere.c622 SrcList *pTabList, /* the FROM clause */
627 exprAnalyze(pTabList, pWC, i);
3508 SrcList *pTabList, /* Table list this loop refers to */
3516 struct SrcList_item *pItem = &pTabList->a[pLevel->iFrom];
3615 pTabItem = &pWInfo->pTabList->a[pLevel->iFrom];
4099 origSrc = pWInfo->pTabList->a;
4104 pOrTab = pWInfo->pTabList;
4311 ** number pTabList->a[0].iCursor. t2 uses the cursor pTabList->a[1].iCursor.
4316 ** in pTabList pointin
621 exprAnalyzeAll( SrcList *pTabList, WhereClause *pWC ) argument
3506 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
4366 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, u16 wctrlFlags ) argument
4869 SrcList *pTabList = pWInfo->pTabList; local
[all...]
H A Dinsert.c435 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);
1041 sqlite3SrcListDelete(db, pTabList);
433 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
H A DsqliteInt.h1950 #define WHERE_ONETABLE_ONLY 0x0080 /* Only code the 1st table in pTabList */
1964 SrcList *pTabList; /* List of tables in the join */ member in struct:WhereInfo
/external/sqlite/dist/orig/
H A Dsqlite3.c10858 #define WHERE_ONETABLE_ONLY 0x0040 /* Only code the 1st table in pTabList */
10874 SrcList *pTabList; /* List of tables in the join */ member in struct:WhereInfo
85693 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
89396 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
95530 SrcList *pTabList = pNC->pSrcList; local
95631 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
95671 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
97703 SrcList *pTabList; local
97972 SrcList *pTabList; local
98265 SrcList *pTabList; /* List of tables to select from */ local
100529 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
103177 exprAnalyzeAll( SrcList *pTabList, WhereClause *pWC ) argument
104058 isDistinctRedundant( Parse *pParse, SrcList *pTabList, WhereClause *pWC, ExprList *pDistinct ) argument
106250 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
107147 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, ExprList *pDistinct, u16 wctrlFlags ) argument
107671 SrcList *pTabList = pWInfo->pTabList; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10858 #define WHERE_ONETABLE_ONLY 0x0040 /* Only code the 1st table in pTabList */
10874 SrcList *pTabList; /* List of tables in the join */ member in struct:WhereInfo
85729 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
89432 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
95566 SrcList *pTabList = pNC->pSrcList; local
95667 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
95707 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
97739 SrcList *pTabList; local
98008 SrcList *pTabList; local
98301 SrcList *pTabList; /* List of tables to select from */ local
100565 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
103213 exprAnalyzeAll( SrcList *pTabList, WhereClause *pWC ) argument
104094 isDistinctRedundant( Parse *pParse, SrcList *pTabList, WhereClause *pWC, ExprList *pDistinct ) argument
106286 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
107183 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, ExprList *pDistinct, u16 wctrlFlags ) argument
107707 SrcList *pTabList = pWInfo->pTabList; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10310 #define WHERE_ONETABLE_ONLY 0x0080 /* Only code the 1st table in pTabList */
10324 SrcList *pTabList; /* List of tables in the join */ member in struct:WhereInfo
81487 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
85123 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
91132 SrcList *pTabList = pNC->pSrcList; local
91233 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
91273 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
93291 SrcList *pTabList; local
93560 SrcList *pTabList; local
93844 SrcList *pTabList; /* List of tables to select from */ local
95994 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
98482 exprAnalyzeAll( SrcList *pTabList, WhereClause *pWC ) argument
101367 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
102227 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, u16 wctrlFlags ) argument
102730 SrcList *pTabList = pWInfo->pTabList; local
[all...]

Completed in 790 milliseconds