Searched refs:aXRef (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/sqlite/src/src/ |
D | update.c | 25 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 in sqlite3Update() local 168 aXRef = sqlite3DbMallocRaw(db, sizeof(int) * pTab->nCol ); in sqlite3Update() 169 if( aXRef==0 ) goto update_cleanup; in sqlite3Update() 170 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1; in sqlite3Update() 204 aXRef[j] = i; in sqlite3Update() 226 aXRef[j] = -1; in sqlite3Update() 232 hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngRowid); in sqlite3Update() 251 if( aXRef[pIdx->aiColumn[i]]>=0 ){ in sqlite3Update() 269 updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef, in sqlite3Update() [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 108256 int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ 108340 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the 108431 aXRef = sqlite3DbMallocRaw(db, sizeof(int) * (pTab->nCol+nIdx) + nIdx+2 ); 108432 if( aXRef==0 ) goto update_cleanup; 108433 aRegIdx = aXRef+pTab->nCol; 108437 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1; 108463 aXRef[j] = i; 108487 aXRef[j] = -1; 108502 hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngKey); 108515 if( aXRef[pIdx->aiColumn[i]]>=0 ){ [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 108236 int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ 108320 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the 108411 aXRef = sqlite3DbMallocRaw(db, sizeof(int) * (pTab->nCol+nIdx) + nIdx+2 ); 108412 if( aXRef==0 ) goto update_cleanup; 108413 aRegIdx = aXRef+pTab->nCol; 108417 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1; 108443 aXRef[j] = i; 108467 aXRef[j] = -1; 108482 hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngKey); 108495 if( aXRef[pIdx->aiColumn[i]]>=0 ){ [all …]
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 95724 int *aXRef, /* Mapping from columns of pTab to entries in pChanges */ 95804 int *aXRef = 0; /* aXRef[i] is the index in pChanges->a[] of the 95867 aXRef = sqlite3DbMallocRaw(db, sizeof(int) * pTab->nCol ); 95868 if( aXRef==0 ) goto update_cleanup; 95869 for(i=0; i<pTab->nCol; i++) aXRef[i] = -1; 95903 aXRef[j] = i; 95925 aXRef[j] = -1; 95931 hasFK = sqlite3FkRequired(pParse, pTab, aXRef, chngRowid); 95950 if( aXRef[pIdx->aiColumn[i]]>=0 ){ 95968 updateVirtualTable(pParse, pTabList, pTab, pChanges, pRowidExpr, aXRef, [all …]
|