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/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10295 #define WHERE_ONETABLE_ONLY 0x0080 /* Only code the 1st table in pTabList */
10309 SrcList *pTabList; /* List of tables in the join */ member in struct:WhereInfo
81280 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
84916 sqlite3Insert( Parse *pParse, SrcList *pTabList, ExprList *pList, Select *pSelect, IdList *pColumn, int onError ) argument
90925 SrcList *pTabList = pNC->pSrcList; local
91026 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
91066 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
93084 SrcList *pTabList; local
93353 SrcList *pTabList; local
93637 SrcList *pTabList; /* List of tables to select from */ local
95787 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
98275 exprAnalyzeAll( SrcList *pTabList, WhereClause *pWC ) argument
101160 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
102020 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList **ppOrderBy, u16 wctrlFlags ) argument
102523 SrcList *pTabList = pWInfo->pTabList; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11613 #define WHERE_ONETABLE_ONLY 0x0040 /* Only code the 1st table in pTabList */
91049 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
95221 sqlite3Insert( Parse *pParse, SrcList *pTabList, Select *pSelect, IdList *pColumn, int onError ) argument
102742 SrcList *pTabList = pNC->pSrcList; local
102856 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
102896 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
105393 SrcList *pTabList; local
105721 SrcList *pTabList; local
105984 SrcList *pTabList; /* List of tables to select from */ local
108273 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
110844 SrcList *pTabList; /* List of tables in the join */ member in struct:WhereInfo
111511 exprAnalyzeAll( SrcList *pTabList, WhereClause *pWC ) argument
112326 isDistinctRedundant( Parse *pParse, SrcList *pTabList, WhereClause *pWC, ExprList *pDistinct ) argument
113686 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
115503 SrcList *pTabList; /* The FROM clause */ local
115966 SrcList *pTabList = pWInfo->pTabList; local
116852 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList *pOrderBy, ExprList *pResultSet, u16 wctrlFlags, int iIdxCur ) argument
117276 SrcList *pTabList = pWInfo->pTabList; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11613 #define WHERE_ONETABLE_ONLY 0x0040 /* Only code the 1st table in pTabList */
91069 sqlite3DeleteFrom( Parse *pParse, SrcList *pTabList, Expr *pWhere ) argument
95241 sqlite3Insert( Parse *pParse, SrcList *pTabList, Select *pSelect, IdList *pColumn, int onError ) argument
102762 SrcList *pTabList = pNC->pSrcList; local
102876 generateColumnTypes( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
102916 generateColumnNames( Parse *pParse, SrcList *pTabList, ExprList *pEList ) argument
105413 SrcList *pTabList; local
105741 SrcList *pTabList; local
106004 SrcList *pTabList; /* List of tables to select from */ local
108293 sqlite3Update( Parse *pParse, SrcList *pTabList, ExprList *pChanges, Expr *pWhere, int onError ) argument
110864 SrcList *pTabList; /* List of tables in the join */ member in struct:WhereInfo
111531 exprAnalyzeAll( SrcList *pTabList, WhereClause *pWC ) argument
112346 isDistinctRedundant( Parse *pParse, SrcList *pTabList, WhereClause *pWC, ExprList *pDistinct ) argument
113706 explainOneScan( Parse *pParse, SrcList *pTabList, WhereLevel *pLevel, int iLevel, int iFrom, u16 wctrlFlags ) argument
115523 SrcList *pTabList; /* The FROM clause */ local
115986 SrcList *pTabList = pWInfo->pTabList; local
116872 sqlite3WhereBegin( Parse *pParse, SrcList *pTabList, Expr *pWhere, ExprList *pOrderBy, ExprList *pResultSet, u16 wctrlFlags, int iIdxCur ) argument
117296 SrcList *pTabList = pWInfo->pTabList; local
[all...]

Completed in 833 milliseconds