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

  /external/chromium_org/third_party/sqlite/src/src/
vtab.c 568 ** Add the virtual table pVTab to the array sqlite3.aVTrans[].
573 /* Grow the sqlite3.aVTrans array if required */
575 VTable **aVTrans;
577 aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes);
578 if( !aVTrans ){
581 memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR);
582 db->aVTrans = aVTrans;
585 /* Add pVtab to the end of sqlite3.aVTrans */
    [all...]
sqliteInt.h     [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 90 milliseconds