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

  /external/chromium_org/third_party/sqlite/src/src/
vdbeaux.c 952 ** Declare to the Vdbe that the BTree object at db->aDb[i] is used.
962 if( i!=1 && sqlite3BtreeSharable(p->db->aDb[i].pBt) ){
993 Db *aDb;
997 aDb = db->aDb;
1000 if( i!=1 && (mask & p->lockMask)!=0 && ALWAYS(aDb[i].pBt!=0) ){
1001 sqlite3BtreeEnter(aDb[i].pBt);
1015 Db *aDb;
1019 aDb = db->aDb;
    [all...]
sqliteInt.h 657 ** in the sqlite.aDb[] array. aDb[0] is the main database file and
658 ** aDb[1] is the database file used to hold temporary tables. Additional
673 ** the Schema for the TEMP databaes (sqlite3.aDb[1]) which is free-standing.
704 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->flags&(P))==(P))
705 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->flags&(P))!=0)
706 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->flags|=(P)
707 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->flags&=~(P)
803 Db *aDb; /* All backends */
    [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 1245 milliseconds