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.c1585 static int recoverOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ argument
1586 Recover *pRecover = (Recover*)pVTab;
1626 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);
9232 Table *pVTab; /* vtab with active Connect/Create method */ member in struct:sqlite3
63011 VTable *pVTab; member in struct:vdbeExecUnion::OP_VBegin_stack_vars
75082 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ local
81665 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
84831 VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; local
85659 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
96517 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); local
97013 sqlite3VtabLock(VTable *pVTab) argument
97034 sqlite3VtabUnlock(VTable *pVTab) argument
97489 addToVTrans(sqlite3 *db, VTable *pVTab) argument
97655 VTable *pVTab = db->aVTrans[i]; local
97724 sqlite3VtabBegin(sqlite3 *db, VTable *pVTab) argument
102603 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
112038 recoverOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
114304 fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo) argument
114357 fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
117091 fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
117147 fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
125261 rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c5506 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5507 int (*xDisconnect)(sqlite3_vtab *pVTab);
5508 int (*xDestroy)(sqlite3_vtab *pVTab);
5509 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5518 int (*xBegin)(sqlite3_vtab *pVTab);
5519 int (*xSync)(sqlite3_vtab *pVTab);
5520 int (*xCommit)(sqlite3_vtab *pVTab);
5521 int (*xRollback)(sqlite3_vtab *pVTab);
5528 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
5529 int (*xRelease)(sqlite3_vtab *pVTab, in
65366 VTable *pVTab; member in struct:vdbeExecUnion::OP_VBegin_stack_vars
78840 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ local
85873 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
89103 VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; local
89932 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
101058 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); local
101569 sqlite3VtabLock(VTable *pVTab) argument
101590 sqlite3VtabUnlock(VTable *pVTab) argument
102070 addToVTrans(sqlite3 *db, VTable *pVTab) argument
102223 VTable *pVTab = db->aVTrans[i]; local
102293 sqlite3VtabBegin(sqlite3 *db, VTable *pVTab) argument
102356 VTable *pVTab = db->aVTrans[i]; local
107544 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
118028 fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo) argument
118109 fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
121944 fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
122000 fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
130915 rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c5506 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
5507 int (*xDisconnect)(sqlite3_vtab *pVTab);
5508 int (*xDestroy)(sqlite3_vtab *pVTab);
5509 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
5518 int (*xBegin)(sqlite3_vtab *pVTab);
5519 int (*xSync)(sqlite3_vtab *pVTab);
5520 int (*xCommit)(sqlite3_vtab *pVTab);
5521 int (*xRollback)(sqlite3_vtab *pVTab);
5528 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
5529 int (*xRelease)(sqlite3_vtab *pVTab, in
65394 VTable *pVTab; member in struct:vdbeExecUnion::OP_VBegin_stack_vars
78876 VTable *pVTab = 0; /* Non-zero if this is a v-tab with an xRename() */ local
85909 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
89139 VTable *pVTab = IsVirtual(pTab) ? sqlite3GetVTable(p->db, pTab) : 0; local
89968 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
101094 const char *pVTab = (const char*)sqlite3GetVTable(db, pTab); local
101605 sqlite3VtabLock(VTable *pVTab) argument
101626 sqlite3VtabUnlock(VTable *pVTab) argument
102106 addToVTrans(sqlite3 *db, VTable *pVTab) argument
102259 VTable *pVTab = db->aVTrans[i]; local
102329 sqlite3VtabBegin(sqlite3 *db, VTable *pVTab) argument
102392 VTable *pVTab = db->aVTrans[i]; local
107580 const char *pVTab = (const char *)sqlite3GetVTable(db, pTab); local
118064 fts3BestIndexMethod(sqlite3_vtab *pVTab, sqlite3_index_info *pInfo) argument
118145 fts3OpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
121992 fts3auxBestIndexMethod( sqlite3_vtab *pVTab, sqlite3_index_info *pInfo ) argument
122048 fts3auxOpenMethod(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCsr) argument
130963 rtreeOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) argument
[all...]

Completed in 1235 milliseconds