Searched defs:pVTab (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Ddelete.c401 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
403 sqlite3VdbeAddOp4(v, OP_VUpdate, 0, 1, iRowid, pVTab, P4_VTAB);
H A Dtest_intarray.c102 static int intarrayOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
H A Dtest_schema.c106 static int schemaOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
H A Dtest_tclvar.c77 static int tclvarOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
H A Dupdate.c611 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); local
656 sqlite3VdbeAddOp4(v, OP_VUpdate, 0, pTab->nCol+2, iReg, pVTab, P4_VTAB);
H A Dalter.c409 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ local
465 pVTab = sqlite3GetVTable(db, pTab);
466 if( pVTab->pVtab->pModule->xRename==0 ){
467 pVTab = 0;
481 sqlite3BeginWriteOperation(pParse, pVTab!=0, iDb);
490 if( pVTab ){
493 sqlite3VdbeAddOp4(v, OP_VRename, i, 0, 0,(const char*)pVTab, P4_VTAB);
H A Dtest_fuzzer.c263 static int fuzzerOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
264 fuzzer_vtab *p = (fuzzer_vtab*)pVTab;
802 sqlite3_vtab *pVTab,
807 fuzzer_vtab *p = (fuzzer_vtab*)pVTab;
815 sqlite3_free(pVTab->zErrMsg);
816 pVTab->zErrMsg = sqlite3_mprintf("cannot delete from a %s virtual table",
821 sqlite3_free(pVTab->zErrMsg);
822 pVTab->zErrMsg = sqlite3_mprintf("cannot update a %s virtual table",
836 sqlite3_free(pVTab->zErrMsg);
837 pVTab
801 fuzzerUpdate( sqlite3_vtab *pVTab, int argc, sqlite3_value **argv, sqlite_int64 *pRowid ) argument
[all...]
H A Dtest_stat.c198 static int statOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
199 StatTable *pTab = (StatTable *)pVTab;
205 pCsr->base.pVtab = pVTab;
H A Dvtab.c94 void sqlite3VtabLock(VTable *pVTab){ argument
95 pVTab->nRef++;
115 void sqlite3VtabUnlock(VTable *pVTab){ argument
116 sqlite3 *db = pVTab->db;
119 assert( pVTab->nRef>0 );
122 pVTab->nRef--;
123 if( pVTab->nRef==0 ){
124 sqlite3_vtab *p = pVTab->pVtab;
128 sqlite3DbFree(db, pVTab);
456 assert( !db->pVTab );
570 addToVTrans(sqlite3 *db, VTable *pVTab) argument
736 VTable *pVTab = db->aVTrans[i]; local
805 sqlite3VtabBegin(sqlite3 *db, VTable *pVTab) argument
[all...]
H A Dinsert.c141 VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; local
160 if( pOp->opcode==OP_VOpen && pOp->p4.pVtab==pVTab ){
969 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
971 sqlite3VdbeAddOp4(v, OP_VUpdate, 1, pTab->nCol+2, regIns, pVTab, P4_VTAB);
H A Dtest8.c551 static int echoOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
553 if( simulateVtabError((echo_vtab *)pVTab, "xOpen") ){
H A Drecover.c1607 static int recoverOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
1608 Recover *pRecover = (Recover*)pVTab;
1648 pCursor->base.pVtab = pVTab;
H A Dtest_osinst.c928 static int vlogOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
H A Dvdbe.c5470 VTable *pVTab; local
5471 pVTab = pOp->p4.pVtab;
5472 rc = sqlite3VtabBegin(db, pVTab);
5473 if( pVTab ) importVtabErrMsg(p, pVTab->pVtab);
H A Dwhere.c4742 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
4744 sqlite3VdbeAddOp4(v, OP_VOpen, iCur, 0, 0, pVTab, P4_VTAB);
H A DsqliteInt.h872 Table *pVTab; /* vtab with active Connect/Create method */ member in struct:sqlite3
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_aux.c135 sqlite3_vtab *pVTab,
143 UNUSED_PARAMETER(pVTab);
190 static int fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ argument
193 UNUSED_PARAMETER(pVTab);
134 fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
H A Dfts3.c1052 static int fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){ argument
1053 Fts3Table *p = (Fts3Table *)pVTab;
1105 static int fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr){ argument
1108 UNUSED_PARAMETER(pVTab);
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c943 static int fulltextBestIndex(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){ argument
963 static int fulltextDisconnect(sqlite3_vtab *pVTab){ argument
964 fulltext_vtab_destroy((fulltext_vtab *)pVTab);
968 static int fulltextDestroy(sqlite3_vtab *pVTab){ argument
969 fulltext_vtab *v = (fulltext_vtab *)pVTab;
975 fulltext_vtab_destroy((fulltext_vtab *)pVTab);
979 static int fulltextOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
H A Dfts1.c2087 static int fulltextBestIndex(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){ argument
2121 static int fulltextDisconnect(sqlite3_vtab *pVTab){ argument
2122 TRACE(("FTS1 Disconnect %p\n", pVTab));
2123 fulltext_vtab_destroy((fulltext_vtab *)pVTab);
2127 static int fulltextDestroy(sqlite3_vtab *pVTab){ argument
2128 fulltext_vtab *v = (fulltext_vtab *)pVTab;
2131 TRACE(("FTS1 Destroy %p\n", pVTab));
2138 fulltext_vtab_destroy((fulltext_vtab *)pVTab);
2142 static int fulltextOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
2148 TRACE(("FTS1 Open %p: %p\n", pVTab,
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c802 static int rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
809 pCsr->base.pVtab = pVTab;
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c3125 static int fulltextBestIndex(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo){ argument
3159 static int fulltextDisconnect(sqlite3_vtab *pVTab){ argument
3160 TRACE(("FTS2 Disconnect %p\n", pVTab));
3161 fulltext_vtab_destroy((fulltext_vtab *)pVTab);
3165 static int fulltextDestroy(sqlite3_vtab *pVTab){ argument
3166 fulltext_vtab *v = (fulltext_vtab *)pVTab;
3169 TRACE(("FTS2 Destroy %p\n", pVTab));
3177 fulltext_vtab_destroy((fulltext_vtab *)pVTab);
3181 static int fulltextOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
3189 TRACE(("FTS2 Open %p: %p\n", pVTab,
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c5136 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5137 int (*xDisconnect)(sqlite3_vtab *pVTab);
5138 int (*xDestroy)(sqlite3_vtab *pVTab);
5139 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5148 int (*xBegin)(sqlite3_vtab *pVTab);
5149 int (*xSync)(sqlite3_vtab *pVTab);
5150 int (*xCommit)(sqlite3_vtab *pVTab);
5151 int (*xRollback)(sqlite3_vtab *pVTab);
9217 Table *pVTab; /* vtab with active Connect/Create method */ member in struct:sqlite3
62832 VTable *pVTab; member in struct:vdbeExecUnion::OP_VBegin_stack_vars
74903 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ local
81458 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
84624 VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; local
85452 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
96310 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); local
96806 sqlite3VtabLock(VTable *pVTab) argument
96827 sqlite3VtabUnlock(VTable *pVTab) argument
97282 addToVTrans(sqlite3 *db, VTable *pVTab) argument
97448 VTable *pVTab = db->aVTrans[i]; local
97517 sqlite3VtabBegin(sqlite3 *db, VTable *pVTab) argument
102396 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
111847 recoverOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
114113 fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo) argument
114166 fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
116900 fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
116956 fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
125070 rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c5427 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5428 int (*xDisconnect)(sqlite3_vtab *pVTab);
5429 int (*xDestroy)(sqlite3_vtab *pVTab);
5430 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5439 int (*xBegin)(sqlite3_vtab *pVTab);
5440 int (*xSync)(sqlite3_vtab *pVTab);
5441 int (*xCommit)(sqlite3_vtab *pVTab);
5442 int (*xRollback)(sqlite3_vtab *pVTab);
5449 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
5450 int (*xRelease)(sqlite3_vtab *pVTab, in
73970 VTable *pVTab; local
82990 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ local
91331 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
94945 VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; local
95735 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
108903 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); local
109438 sqlite3VtabLock(VTable *pVTab) argument
109459 sqlite3VtabUnlock(VTable *pVTab) argument
109532 VTable *pVTab = *ppVTab; local
109969 addToVTrans(sqlite3 *db, VTable *pVTab) argument
110123 VTable *pVTab = db->aVTrans[i]; local
110190 sqlite3VtabBegin(sqlite3 *db, VTable *pVTab) argument
110253 VTable *pVTab = db->aVTrans[i]; local
117160 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
128328 fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo) argument
128450 fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
132783 fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
132853 fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
136476 fts3tokBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
136505 fts3tokOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
145493 rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c5427 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5428 int (*xDisconnect)(sqlite3_vtab *pVTab);
5429 int (*xDestroy)(sqlite3_vtab *pVTab);
5430 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5439 int (*xBegin)(sqlite3_vtab *pVTab);
5440 int (*xSync)(sqlite3_vtab *pVTab);
5441 int (*xCommit)(sqlite3_vtab *pVTab);
5442 int (*xRollback)(sqlite3_vtab *pVTab);
5449 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
5450 int (*xRelease)(sqlite3_vtab *pVTab, in
73990 VTable *pVTab; local
83010 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ local
91351 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
94965 VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; local
95755 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
108923 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); local
109458 sqlite3VtabLock(VTable *pVTab) argument
109479 sqlite3VtabUnlock(VTable *pVTab) argument
109552 VTable *pVTab = *ppVTab; local
109989 addToVTrans(sqlite3 *db, VTable *pVTab) argument
110143 VTable *pVTab = db->aVTrans[i]; local
110210 sqlite3VtabBegin(sqlite3 *db, VTable *pVTab) argument
110273 VTable *pVTab = db->aVTrans[i]; local
117180 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
128348 fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo) argument
128470 fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
132815 fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
132885 fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
136508 fts3tokBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
136537 fts3tokOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
145525 rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
[all...]

Completed in 4271 milliseconds