Searched defs:aXRef (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dupdate.c25 int *aXRef, /* Mapping from columns of pTab to entries in pChanges */
105 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the local
107 ** aXRef[i]==-1 if the i-th column is not changed. */
168 aXRef = sqlite3DbMallocRaw(db, sizeof(int) * pTab->nCol );
169 if( aXRef==0 ) goto update_cleanup;
170 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1;
204 aXRef[j] = i;
226 aXRef[j] = -1;
232 hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngRowi
593 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere ) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c95804 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the local
96292 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere ) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c108293 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the local
108884 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c108313 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the local
108904 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
[all...]

Completed in 471 milliseconds