Searched defs:pFKey (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbeblob.c225 FKey *pFKey; local
226 for(pFKey=pTab->pFKey; pFKey; pFKey=pFKey->pNextFrom){
228 for(j=0; j<pFKey->nCol; j++){
229 if( pFKey->aCol[j].iFrom==iCol ){
H A Dfkey.c144 ** Given that pParent is the parent table for foreign key constraint pFKey,
183 Table *pParent, /* Parent table of FK constraint pFKey */
184 FKey *pFKey, /* Foreign key to find index for */
186 int **paiCol /* OUT: Map of index columns in pFKey */
190 int nCol = pFKey->nCol; /* Number of columns in parent key */
191 char *zKey = pFKey->aCol[0].zCol; /* Name of left-most parent key column */
229 ** column of pFKey, then this index is a winner. */
238 for(i=0; i<nCol; i++) aiCol[i] = pFKey->aCol[i].iFrom;
264 if( sqlite3StrICmp(pFKey->aCol[j].zCol, zIdxCol)==0 ){
265 if( aiCol ) aiCol[i] = pFKey
181 locateFkeyIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
314 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
457 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
690 FKey *pFKey; /* Used to iterate through FKs */ local
940 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
1136 FKey *pFKey; /* Iterator variable */ local
1154 FKey *pFKey; /* Iterator variable */ local
[all...]
H A Dbuild.c2176 FKey *pFKey = 0; local
2204 nByte = sizeof(*pFKey) + (nCol-1)*sizeof(pFKey->aCol[0]) + pTo->n + 1;
2210 pFKey = sqlite3DbMallocZero(db, nByte );
2211 if( pFKey==0 ){
2214 pFKey->pFrom = p;
2215 pFKey->pNextFrom = p->pFKey;
2216 z = (char*)&pFKey->aCol[nCol];
2217 pFKey
2291 FKey *pFKey; local
[all...]
H A DsqliteInt.h1280 FKey *pFKey; /* Linked list of all foreign keys in this table */ member in struct:Table
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9625 FKey *pFKey; /* Linked list of all foreign keys in this table */ member in struct:Table
68653 FKey *pFKey; local
79015 FKey *pFKey = 0; local
79130 FKey *pFKey; local
83473 locateFkeyIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
83606 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
83749 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
83982 FKey *pFKey; /* Used to iterate through FKs */ local
84232 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
84428 FKey *pFKey; /* Iterator variable */ local
84446 FKey *pFKey; /* Iterator variable */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10943 FKey *pFKey; /* Linked list of all foreign keys in this table */ member in struct:Table
11022 ** The list of all parents for child Table X is held at X.pFKey.
74758 FKey *pFKey; local
88611 FKey *pFKey = 0; local
88726 FKey *pFKey; local
93603 sqlite3FkLocateIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
93738 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
93953 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
94263 FKey *pFKey; /* Used to iterate through FKs */ local
94529 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
94728 FKey *pFKey; /* Iterator variable */ local
94748 FKey *pFKey; /* Iterator variable */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10943 FKey *pFKey; /* Linked list of all foreign keys in this table */ member in struct:Table
11022 ** The list of all parents for child Table X is held at X.pFKey.
74778 FKey *pFKey; local
88631 FKey *pFKey = 0; local
88746 FKey *pFKey; local
93623 sqlite3FkLocateIndex( Parse *pParse, Table *pParent, FKey *pFKey, Index **ppIdx, int **paiCol ) argument
93758 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
93973 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
94283 FKey *pFKey; /* Used to iterate through FKs */ local
94549 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
94748 FKey *pFKey; /* Iterator variable */ local
94768 FKey *pFKey; /* Iterator variable */ local
[all...]

Completed in 537 milliseconds