Home
last modified time | relevance | path

Searched refs:xFileControl (Results 1 – 3 of 3) sorted by relevance

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.h846 int (*xFileControl)(sqlite3_file*, int op, void *pArg); member
Dshell.c8978 rc = pFile->pMethods->xFileControl(pFile, op, pArg); in apndFileControl()
17681 (pFd->pMethods ? pFd->pMethods->xFileControl(pFd, op, pArg) : SQLITE_NOTFOUND) in recoverVfsFileControl()
Dsqlite3.c1159 int (*xFileControl)(sqlite3_file*, int op, void *pArg); member
25913 return id->pMethods->xFileControl(id, op, pArg); in sqlite3OsFileControl()
25916 if( id->pMethods ) (void)id->pMethods->xFileControl(id, op, pArg); in sqlite3OsFileControlHint()
221128 int (*xControl)(sqlite3_file*,int,void*) = p->pReal->pMethods->xFileControl;