Searched refs:IdList (Results 1 – 7 of 7) sorted by relevance
/titanic_41/usr/src/lib/libsqlite/src/ |
H A D | sqliteInt.h | 242 typedef struct IdList IdList; typedef 751 struct IdList { struct 783 IdList *pUsing; /* The USING clause of a join */ 978 IdList *pColumns; /* If this is an UPDATE OF <column-list> trigger, 1036 IdList *pIdList; /* Valid for INSERT statements only */ 1150 void sqliteAddPrimaryKey(Parse*, IdList*, int); 1160 void sqliteInsert(Parse*, SrcList*, ExprList*, Select*, IdList*, int); 1161 IdList *sqliteIdListAppend(IdList*, Token*); 1162 int sqliteIdListIndex(IdList*,const char*); 1166 void sqliteIdListDelete(IdList*); [all …]
|
H A D | trigger.c | 49 IdList *pColumns, /* column list if this is an UPDATE OF trigger */ in sqliteBeginTrigger() 266 IdList *pNew = sqliteIdListDup(p->pIdList); in sqlitePersistTriggerStep() 300 IdList *pColumn, /* List of columns in pTableName to insert into */ in sqliteTriggerInsertStep() 512 static int checkColumnOverLap(IdList *pIdList, ExprList *pEList){ in checkColumnOverLap()
|
H A D | build.c | 683 void sqliteAddPrimaryKey(Parse *pParse, IdList *pList, int onError){ in sqliteAddPrimaryKey() 1354 IdList *pFromCol, /* Columns in this table that point to other table */ in sqliteCreateForeignKey() 1356 IdList *pToCol, /* Columns in the other table */ in sqliteCreateForeignKey() 1479 IdList *pList, /* A list of columns to be indexed */ in sqliteCreateIndex() 1843 IdList *sqliteIdListAppend(IdList *pList, Token *pToken){ in sqliteIdListAppend() 1845 pList = sqliteMalloc( sizeof(IdList) ); in sqliteIdListAppend() 1976 void sqliteIdListDelete(IdList *pList){ in sqliteIdListDelete() 1990 int sqliteIdListIndex(IdList *pList, const char *zName){ in sqliteIdListIndex()
|
H A D | parse.y | 58 struct TrigEvent { int a; IdList * b; }; 427 %type using_opt {IdList*} 522 %type inscollist_opt {IdList*} 524 %type inscollist {IdList*} 746 %type idxlist {IdList*} 748 %type idxlist_opt {IdList*}
|
H A D | expr.c | 207 IdList *sqliteIdListDup(IdList *p){ in sqliteIdListDup() 208 IdList *pNew; in sqliteIdListDup()
|
H A D | insert.c | 94 IdList *pColumn, /* Column names corresponding to IDLIST. */ in sqliteInsert()
|
H A D | select.c | 269 IdList *pList; in sqliteProcessJoin()
|