Home
last modified time | relevance | path

Searched refs:pVTab (Results 1 – 5 of 5) sorted by relevance

/netbsd/external/gpl3/gcc/dist/libphobos/src/etc/c/
H A Dsqlite3.d1368 int function (sqlite3_vtab *pVTab, sqlite3_index_info*) xBestIndex;
1369 int function (sqlite3_vtab *pVTab) xDisconnect;
1370 int function (sqlite3_vtab *pVTab) xDestroy;
1371 int function (sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) xOpen;
1380 int function (sqlite3_vtab *pVTab) xBegin;
1381 int function (sqlite3_vtab *pVTab) xSync;
1382 int function (sqlite3_vtab *pVTab) xCommit;
1383 int function (sqlite3_vtab *pVTab) xRollback;
1388 int function (sqlite3_vtab *pVTab, int) xSavepoint;
1389 int function (sqlite3_vtab *pVTab, int) xRelease;
[all …]
/netbsd/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d1368 int function (sqlite3_vtab *pVTab, sqlite3_index_info*) xBestIndex;
1369 int function (sqlite3_vtab *pVTab) xDisconnect;
1370 int function (sqlite3_vtab *pVTab) xDestroy;
1371 int function (sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor) xOpen;
1380 int function (sqlite3_vtab *pVTab) xBegin;
1381 int function (sqlite3_vtab *pVTab) xSync;
1382 int function (sqlite3_vtab *pVTab) xCommit;
1383 int function (sqlite3_vtab *pVTab) xRollback;
1388 int function (sqlite3_vtab *pVTab, int) xSavepoint;
1389 int function (sqlite3_vtab *pVTab, int) xRelease;
[all …]
/netbsd/external/public-domain/sqlite/dist/
H A Dsqlite3.h6295 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
6296 int (*xDisconnect)(sqlite3_vtab *pVTab);
6297 int (*xDestroy)(sqlite3_vtab *pVTab);
6298 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
6307 int (*xBegin)(sqlite3_vtab *pVTab);
6308 int (*xSync)(sqlite3_vtab *pVTab);
6309 int (*xCommit)(sqlite3_vtab *pVTab);
6310 int (*xRollback)(sqlite3_vtab *pVTab);
6317 int (*xSavepoint)(sqlite3_vtab *pVTab, int);
6318 int (*xRelease)(sqlite3_vtab *pVTab, int);
[all …]
H A Dsqlite3.c89811 VTable *pVTab;
89814 if( pVTab ) sqlite3VtabImportErrmsg(p, pVTab->pVtab);
101673 pVTab = 0;
101751 if( pVTab ){
133727 pVTab->nRef++;
133754 pVTab->nRef--;
133755 if( pVTab->nRef==0 ){
134536 if( !pVTab ){
164494 sqlite3_vtab *pVTab,
168234 sqlite3_vtab *pVTab,
[all …]
H A Dshell.c7058 static int expertOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor){ in expertOpen() argument
7061 (void)pVTab; in expertOpen()