Searched refs:SrcList (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A DsqliteInt.h625 typedef struct SrcList SrcList; typedef in typeref:struct:SrcList
1817 ** the SrcList.a[] array.
1833 struct SrcList { struct
1858 ** Permitted values of the SrcList.a.jointype field
1964 SrcList *pTabList; /* List of tables in the join */
1998 SrcList *pSrcList; /* One or more tables used to resolve names */
2035 SrcList *pSrc; /* The FROM clause */
2705 void sqlite3DropTable(Parse*, SrcList*, int, int);
2714 void sqlite3Insert(Parse*, SrcList*, ExprLis
[all...]
H A Ddelete.c18 ** While a SrcList can in general represent multiple tables and subqueries
31 Table *sqlite3SrcListLookup(Parse *pParse, SrcList *pSrc){
101 SrcList *pFrom;
133 SrcList *pSrc, /* the FROM clause -- which tables to scan */
144 SrcList *pSelectSrc = NULL; /* SELECT rowid FROM x ... (dup of pSrc) */
225 SrcList *pTabList, /* The table from which we should delete things */
256 ** put in an SrcList structure because some of the subroutines we
258 ** an SrcList* parameter instead of just a Table* parameter.
H A Dwalker.c98 SrcList *pSrc;
H A Dauth.c138 SrcList *pTabList /* All table that pExpr might refer to */
H A Dupdate.c21 SrcList *pSrc, /* The virtual table to be modified */
90 SrcList *pTabList, /* The table in which we should change things */
595 SrcList *pSrc, /* The virtual table to be modified */
H A Dbuild.c1481 SrcList sSrc; /* Fake SrcList for pParse->pNewTable */
1989 void sqlite3DropTable(Parse *pParse, SrcList *pName, int isView, int noErr){
2397 SrcList *pTblName, /* Table to index. Use pParse->pNewTable if 0 */
2903 void sqlite3DropIndex(Parse *pParse, SrcList *pName, int ifExists){
3074 ** Expand the space allocated for the given SrcList object by
3078 ** For example, suppose a SrcList initially contains two entries: A,B.
3089 ** If a memory allocation fails the SrcList is unchanged. The
3092 SrcList *sqlite3SrcListEnlarge(
3094 SrcList *pSr
[all...]
H A Dresolve.c158 SrcList *pSrcList = pNC->pSrcList;
407 ** from datasource iSrc in SrcList pSrc.
409 Expr *sqlite3CreateColumnExpr(sqlite3 *db, SrcList *pSrc, int iSrc, int iCol){
452 SrcList *pSrcList = pNC->pSrcList;
467 SrcList *pSrcList = pNC->pSrcList;
H A Dtrigger.c87 SrcList *pTableName,/* The name of the table/view the trigger applies to */
477 void sqlite3DropTrigger(Parse *pParse, SrcList *pName, int noErr){
658 ** Convert the pStep->target token into a SrcList and return a pointer
659 ** to that SrcList.
662 ** forming the SrcList. This prevents a trigger in one database from
667 static SrcList *targetSrcList(
672 SrcList *pSrc; /* SrcList to be returned */
H A Dselect.c53 SrcList *pSrc, /* the FROM clause -- which tables to scan */
202 SrcList *pSrc, /* Array of tables to search */
232 ** where tab1 is the iSrc'th table in SrcList pSrc and tab2 is the
238 SrcList *pSrc, /* List of tables in FROM clause */
321 SrcList *pSrc; /* All tables in the FROM clause */
1003 SrcList *pTabList = pNC->pSrcList;
1106 SrcList *pTabList, /* List of tables */
1146 SrcList *pTabList, /* List of tables */
2541 SrcList *pSrc;
2683 SrcList *pSr
[all...]
H A Dalter.c395 SrcList *pSrc, /* The table to rename. */
747 void sqlite3AlterBeginAddColumn(Parse *pParse, SrcList *pSrc){
H A Dfkey.c459 SrcList *pSrc, /* SrcList containing the table to scan */
607 ** being dropped from the database. The SrcList passed as the second argument
622 void sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab){
777 SrcList *pSrc;
793 /* Create a SrcList structure containing a single table (the table
H A Dattach.c444 SrcList *pList /* The Source list to check and modify */
H A Dwhere.c614 static void exprAnalyze(SrcList*, WhereClause*, int);
622 SrcList *pTabList, /* the FROM clause */
844 SrcList *pSrc, /* the FROM clause */
1096 SrcList *pSrc, /* the FROM clause */
3508 SrcList *pTabList, /* Table list this loop refers to */
4067 SrcList *pOrTab; /* Shortened table list or OR-clause generation */
4085 /* Set up a new SrcList ni pOrTab containing the table being scanned
4087 ** This becomes the SrcList in the recursive call to sqlite3WhereBegin().
4368 SrcList *pTabList, /* A list of all tables to be scanned */
4869 SrcList *pTabLis
[all...]
H A Dparse.y472 %type seltablist {SrcList*}
474 %type stl_prefix {SrcList*}
476 %type from {SrcList*}
533 %type fullname {SrcList*}
1016 SrcList *pSrc = sqlite3SrcListAppend(pParse->db, 0,&Y,&Z);
H A Dinsert.c435 SrcList *pTabList, /* Name of table into which we are inserting */
H A Dexpr.c840 ** Any tables that the SrcList might point to are not duplicated.
886 SrcList *sqlite3SrcListDup(sqlite3 *db, SrcList *p, int flags){
887 SrcList *pNew;
1344 SrcList *pSrc;
3536 SrcList *pSrcList = pNC->pSrcList;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7605 typedef struct SrcList SrcList; typedef in typeref:struct:SrcList
10162 ** the SrcList.a[] array.
10178 struct SrcList { struct
10203 ** Permitted values of the SrcList.a.jointype field
10309 SrcList *pTabList; /* List of tables in the join */
10343 SrcList *pSrcList; /* One or more tables used to resolve names */
10380 SrcList *pSrc; /* The FROM clause */
11050 SQLITE_PRIVATE void sqlite3DropTable(Parse*, SrcList*, int, int);
11059 SQLITE_PRIVATE void sqlite3Insert(Parse*, SrcList*, ExprLis
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c8810 typedef struct SrcList SrcList; typedef in typeref:struct:SrcList
11544 ** the SrcList.a[] array.
11560 struct SrcList { struct
11591 ** Permitted values of the SrcList.a.jointype field
11651 SrcList *pSrcList; /* One or more tables used to resolve names */
11696 SrcList *pSrc; /* The FROM clause */
12264 SrcList *pSrcList; /* FROM clause */
12564 SQLITE_PRIVATE void sqlite3DropTable(Parse*, SrcList*, int, int);
12574 SQLITE_PRIVATE void sqlite3Insert(Parse*, SrcList*, Selec
[all...]
/external/sqlite/dist/
H A Dsqlite3.c8810 typedef struct SrcList SrcList; typedef in typeref:struct:SrcList
11544 ** the SrcList.a[] array.
11560 struct SrcList { struct
11591 ** Permitted values of the SrcList.a.jointype field
11651 SrcList *pSrcList; /* One or more tables used to resolve names */
11696 SrcList *pSrc; /* The FROM clause */
12264 SrcList *pSrcList; /* FROM clause */
12564 SQLITE_PRIVATE void sqlite3DropTable(Parse*, SrcList*, int, int);
12574 SQLITE_PRIVATE void sqlite3Insert(Parse*, SrcList*, Selec
[all...]

Completed in 5372 milliseconds