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

  /external/chromium_org/third_party/sqlite/src/src/
test_intarray.c 42 sqlite3_vtab base; /* Base class */
70 static int intarrayDestroy(sqlite3_vtab *p){
84 sqlite3_vtab **ppVtab, /* Write the new virtual table object here */
95 *ppVtab = (sqlite3_vtab *)pVtab;
102 static int intarrayOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
175 static int intarrayBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
test_schema.c 54 sqlite3_vtab base;
75 static int schemaDestroy(sqlite3_vtab *pVtab){
87 sqlite3_vtab **ppVtab,
99 *ppVtab = (sqlite3_vtab *)pVtab;
106 static int schemaOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
262 static int schemaBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
test_tclvar.c 33 sqlite3_vtab base;
52 sqlite3_vtab **ppVtab,
68 static int tclvarDisconnect(sqlite3_vtab *pVtab){
77 static int tclvarOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
227 static int tclvarBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
test_wholenumber.c 45 sqlite3_vtab **ppVtab,
48 sqlite3_vtab *pNew;
58 static int wholenumberDisconnect(sqlite3_vtab *pVtab){
68 static int wholenumberOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor){
177 sqlite3_vtab *tab,
sqlite.h.in     [all...]
test_stat.c 130 sqlite3_vtab base;
145 sqlite3_vtab **ppVtab,
162 static int statDisconnect(sqlite3_vtab *pVtab){
171 static int statBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
198 static int statOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
vtab.c 124 sqlite3_vtab *p = pVTab->pVtab;
434 int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**),
474 ** the sqlite3_vtab object if successful. */
576 int nBytes = sizeof(sqlite3_vtab *) * (db->nVTrans + ARRAY_INCR);
581 memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR);
624 ** create a valid sqlite3_vtab if it returns SQLITE_OK. */
712 /* Remove the sqlite3_vtab* from the aVTrans[] array, if applicable */
737 sqlite3_vtab *p = pVTab->pVtab;
739 int (*x)(sqlite3_vtab *);
740 x = *(int (**)(sqlite3_vtab *))((char *)p->pModule + offset)
    [all...]
test_fuzzer.c 159 sqlite3_vtab base; /* Base class - must be first */
191 sqlite3_vtab **ppVtab,
213 static int fuzzerDisconnect(sqlite3_vtab *pVtab){
263 static int fuzzerOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
751 static int fuzzerBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
802 sqlite3_vtab *pVTab,
test8.c 73 sqlite3_vtab base;
373 static int echoDestructor(sqlite3_vtab *pVtab){
398 sqlite3_vtab **ppVtab,
405 /* Allocate the sqlite3_vtab/echo_vtab structure itself */
416 echoDestructor((sqlite3_vtab *)pVtab);
431 echoDestructor((sqlite3_vtab *)pVtab);
442 ** structure. If an error occurs, delete the sqlite3_vtab structure and
447 echoDestructor((sqlite3_vtab *)pVtab);
463 sqlite3_vtab **ppVtab,
511 sqlite3_vtab **ppVtab
    [all...]
recover.c     [all...]
vdbe.c 502 ** Transfer error message text from an sqlite3_vtab.zErrMsg (text stored
506 static void importVtabErrMsg(Vdbe *p, sqlite3_vtab *pVtab){
    [all...]
test_osinst.c 802 sqlite3_vtab base; /* Base class */
858 sqlite3_vtab **ppVtab,
907 static int vlogBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo){
915 static int vlogDisconnect(sqlite3_vtab *pVtab){
928 static int vlogOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
    [all...]
sqliteInt.h     [all...]
vdbeaux.c 925 sqlite3_vtab *pVtab = pOp->p4.pVtab->pVtab;
    [all...]
where.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.h 4564 typedef struct sqlite3_vtab sqlite3_vtab; typedef in typeref:struct:sqlite3_vtab
4766 struct sqlite3_vtab { struct
    [all...]
sqlite3.c 5107 typedef struct sqlite3_vtab sqlite3_vtab; typedef in typeref:struct:sqlite3_vtab
5309 struct sqlite3_vtab { struct
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_aux.c 25 sqlite3_vtab base; /* Base class used by SQLite core */
61 sqlite3_vtab **ppVtab, /* OUT: New sqlite3_vtab object */
104 *ppVtab = (sqlite3_vtab *)p;
113 static int fts3auxDisconnectMethod(sqlite3_vtab *pVtab){
135 sqlite3_vtab *pVTab,
190 static int fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){
fts3Int.h 120 sqlite3_vtab base; /* Base class used by SQLite core */
283 int sqlite3Fts3UpdateMethod(sqlite3_vtab*,int,sqlite3_value**,sqlite3_int64*);
fts3.c 440 static int fts3DisconnectMethod(sqlite3_vtab *pVtab){
492 static int fts3DestroyMethod(sqlite3_vtab *pVtab){
826 sqlite3_vtab **ppVTab, /* Write the resulting vtab structure here */
    [all...]
fts3_write.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 563 sqlite3_vtab base;
856 sqlite3_vtab **ppVTab){
902 sqlite3_vtab **ppVTab){
943 static int fulltextBestIndex(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){
963 static int fulltextDisconnect(sqlite3_vtab *pVTab){
968 static int fulltextDestroy(sqlite3_vtab *pVTab){
979 static int fulltextOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
    [all...]
fts1.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 144 sqlite3_vtab base;
708 sqlite3 *, void *, int, const char *const*, sqlite3_vtab **, char **, int
718 sqlite3_vtab **ppVtab,
731 sqlite3_vtab **ppVtab,
767 static int rtreeDisconnect(sqlite3_vtab *pVtab){
775 static int rtreeDestroy(sqlite3_vtab *pVtab){
802 static int rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c     [all...]

Completed in 826 milliseconds