HomeSort by relevance Sort by last modified time
    Searched defs:aRegIdx (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
update.c 104 int *aRegIdx = 0; /* One register assigned to each index to be updated */
234 /* Allocate memory for the array aRegIdx[]. There is one entry in the
241 aRegIdx = sqlite3DbMallocRaw(db, sizeof(Index*) * nIdx );
242 if( aRegIdx==0 ) goto update_cleanup;
257 aRegIdx[j] = reg;
356 if( openAll || aRegIdx[i]>0 ){
480 aRegIdx, (chngRowid?regOldRowid:0), 1, onError, addr, 0);
489 sqlite3GenerateRowIndexDelete(pParse, pTab, iCur, aRegIdx);
502 sqlite3CompleteInsertion(pParse, pTab, iCur, regNewRowid, aRegIdx, 1, 0, 0);
529 if( openAll || aRegIdx[i]>0 )
    [all...]
insert.c 471 int *aRegIdx = 0; /* One register allocated to each index */
759 aRegIdx = sqlite3DbMallocRaw(db, sizeof(int)*(nIdx+1));
760 if( aRegIdx==0 ){
764 aRegIdx[i] = ++pParse->nMem;
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 214 milliseconds