Home
last modified time | relevance | path

Searched refs:SrcList (Results 1 – 15 of 15) sorted by relevance

/titanic_41/usr/src/lib/libsqlite/src/
H A DsqliteInt.h243 typedef struct SrcList SrcList; typedef
771 struct SrcList { struct
826 SrcList *pTabList; /* List of tables in the join */
857 SrcList *pSrc; /* The FROM clause */
1160 void sqliteInsert(Parse*, SrcList*, ExprList*, Select*, IdList*, int);
1163 SrcList *sqliteSrcListAppend(SrcList*, Token*, Token*);
1164 void sqliteSrcListAddAlias(SrcList*, Token*);
1165 void sqliteSrcListAssignCursors(Parse*, SrcList*);
1167 void sqliteSrcListDelete(SrcList*);
1168 void sqliteCreateIndex(Parse*,Token*,SrcList*,IdList*,int,Token*,Token*);
[all …]
H A Dtrigger.c50 SrcList *pTableName,/* The name of the table/view the trigger applies to */ in sqliteBeginTrigger()
391 void sqliteDropTrigger(Parse *pParse, SrcList *pName){ in sqliteDropTrigger()
579 static SrcList *targetSrcList( in targetSrcList()
585 SrcList *pSrc; /* SrcList to be returned */ in targetSrcList()
626 SrcList *pSrc; in codeTriggerProgram()
636 SrcList *pSrc; in codeTriggerProgram()
645 SrcList *pSrc; in codeTriggerProgram()
724 SrcList dummyTablist; in sqliteCodeRowTrigger()
H A Ddelete.c27 Table *sqliteSrcListLookup(Parse *pParse, SrcList *pSrc){ in sqliteSrcListLookup()
61 SrcList *pTabList, /* The table from which we should delete things */ in sqliteDeleteFrom()
H A Dbuild.c1478 SrcList *pTable, /* Name of the table to index. Use pParse->pNewTable if 0 */ in sqliteCreateIndex()
1760 void sqliteDropIndex(Parse *pParse, SrcList *pName){ in sqliteDropIndex()
1899 SrcList *sqliteSrcListAppend(SrcList *pList, Token *pTable, Token *pDatabase){ in sqliteSrcListAppend()
1901 pList = sqliteMalloc( sizeof(SrcList) ); in sqliteSrcListAppend()
1906 SrcList *pNew; in sqliteSrcListAppend()
1953 void sqliteSrcListAssignCursors(Parse *pParse, SrcList *pList){ in sqliteSrcListAssignCursors()
1965 void sqliteSrcListAddAlias(SrcList *pList, Token *pToken){ in sqliteSrcListAddAlias()
2002 void sqliteSrcListDelete(SrcList *pList){ in sqliteSrcListDelete()
H A Dcopy.c34 SrcList *pTableName, /* The name of the table into which we will insert */ in sqliteCopy()
H A Dselect.c29 SrcList *pSrc, /* the FROM clause -- which tables to scan */ in sqliteSelectNew()
213 SrcList *pSrc; in sqliteProcessJoin()
664 SrcList *pTabList, /* List of tables */ in generateColumnTypes()
704 SrcList *pTabList, /* List of tables */ in generateColumnNames()
863 SrcList *pTabList; in fillInColumnList()
1054 SrcList *pSrc = p->pSrc; in sqliteSelectUnbind()
1646 SrcList *pSrc; /* The FROM clause of the outer query */ in flattenSubquery()
1647 SrcList *pSubSrc; /* The FROM clause of the subquery */ in flattenSubquery()
1860 SrcList *pSrc; in simpleMinMaxQuery()
2026 SrcList *pTabList; /* List of tables to select from */ in sqliteSelect()
H A Dauth.c109 SrcList *pTabList /* All table that pExpr might refer to */ in sqliteAuthRead()
H A Dparse.y351 %type seltablist {SrcList*}
353 %type stl_prefix {SrcList*}
355 %type from {SrcList*}
684 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D);
690 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D);
736 SrcList *pSrc = sqliteSrcListAppend(0, &Y, &D);
804 SrcList *pTab = sqliteSrcListAppend(0, &E, &DB);
H A Dexpr.c183 SrcList *sqliteSrcListDup(SrcList *p){ in sqliteSrcListDup()
184 SrcList *pNew; in sqliteSrcListDup()
417 SrcList *pSrcList, /* List of tables used to resolve column names */ in lookupName()
634 SrcList *pSrcList, /* List of tables used to resolve column names */ in sqliteExprResolveIds()
H A Dprintf.c581 SrcList *pSrc = va_arg(ap, SrcList*); in vxprintf()
H A Dattach.c223 SrcList *pList /* The Source list to check and modify */ in sqliteFixSrcList()
H A Dinsert.c91 SrcList *pTabList, /* Name of table into which we are inserting */ in sqliteInsert()
242 SrcList dummy; in sqliteInsert()
H A Dupdate.c31 SrcList *pTabList, /* The table in which we should change things */ in sqliteUpdate()
H A Dwhere.c385 SrcList *pTabList, /* A list of all tables to be scanned */ in sqliteWhereBegin()
1197 SrcList *pTabList = pWInfo->pTabList; in sqliteWhereEnd()
/titanic_41/usr/src/lib/libsqlite/test/
H A Dmisc2.test105 # There were some issues with expanding a SrcList object using a call
106 # to sqliteSrcListAppend() if the SrcList had previously been duplicated