HomeSort by relevance Sort by last modified time
    Searched defs:pVfs (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/sqlite/src/src/
journal.c 41 sqlite3_vfs *pVfs; /* The "real" underlying VFS */
55 rc = sqlite3OsOpen(p->pVfs, p->zJournal, pReal, p->flags, 0);
196 sqlite3_vfs *pVfs, /* The VFS to use for actual file I/O */
203 memset(p, 0, sqlite3JournalSize(pVfs));
210 return sqlite3OsOpen(pVfs, zName, pJfd, flags, 0);
216 p->pVfs = pVfs;
233 ** pVfs to create the underlying on-disk files.
235 int sqlite3JournalSize(sqlite3_vfs *pVfs){
236 return (pVfs->szOsFile+sizeof(JournalFile))
    [all...]
os.c 127 sqlite3_vfs *pVfs,
139 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f3f, pFlagsOut);
143 int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
144 return pVfs->xDelete(pVfs, zPath, dirSync);
147 sqlite3_vfs *pVfs,
153 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
156 sqlite3_vfs *pVfs,
    [all...]
test2.c 535 sqlite3_vfs *pVfs;
547 pVfs = sqlite3_vfs_find(0);
548 rc = sqlite3OsOpenMalloc(pVfs, argv[2], &fd,
test_devsym.c 125 sqlite3_vfs *pVfs;
267 sqlite3_vfs *pVfs,
276 rc = sqlite3OsOpen(g.pVfs, zName, p->pReal, flags, pOutFlags);
288 static int devsymDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
289 return sqlite3OsDelete(g.pVfs, zPath, dirSync);
297 sqlite3_vfs *pVfs,
302 return sqlite3OsAccess(g.pVfs, zPath, flags, pResOut);
311 sqlite3_vfs *pVfs,
316 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
323 static void *devsymDlOpen(sqlite3_vfs *pVfs, const char *zPath)
    [all...]
loadext.c 395 sqlite3_vfs *pVfs = db->pVfs;
421 handle = sqlite3OsDlOpen(pVfs, zFile);
428 sqlite3OsDlError(pVfs, nMsg-1, zErrmsg);
434 sqlite3OsDlSym(pVfs, handle, zProc);
441 sqlite3OsDlError(pVfs, nMsg-1, zErrmsg);
443 sqlite3OsDlClose(pVfs, handle);
451 sqlite3OsDlClose(pVfs, handle);
491 sqlite3OsDlClose(db->pVfs, db->aExtension[i]);
test_syscall.c 54 ** xSetSystemCall(pVfs, 0, 0);
59 ** xSetSystemCall(pVfs, "open", 0);
385 sqlite3_vfs *pVfs;
397 pVfs = sqlite3_vfs_find(0);
406 aSyscall[iCall].xOrig = pVfs->xGetSystemCall(pVfs, aSyscall[iCall].zName);
407 pVfs->xSetSystemCall(pVfs, aSyscall[iCall].zName, aSyscall[iCall].xTest);
421 sqlite3_vfs *pVfs;
429 pVfs = sqlite3_vfs_find(0)
    [all...]
test6.c 575 ** The caller will have allocated pVfs->szOsFile bytes of space
578 ** sqlite3_malloc(). The assumption here is (pVfs->szOsFile) is
588 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData;
594 rc = sqlite3OsOpen(pVfs, zName, pReal, flags, pOutFlags);
637 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData;
638 return pVfs->xDelete(pVfs, zPath, dirSync);
646 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData;
647 return pVfs->xAccess(pVfs, zPath, flags, pResOut)
    [all...]
test_journal.c 205 sqlite3_vfs *pVfs; /* Parent VFS */
690 sqlite3_vfs *pVfs,
701 rc = sqlite3OsOpen(g.pVfs, zName, p->pReal, flags, pOutFlags);
726 static int jtDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){
736 return sqlite3OsDelete(g.pVfs, zPath, dirSync);
744 sqlite3_vfs *pVfs,
749 return sqlite3OsAccess(g.pVfs, zPath, flags, pResOut);
758 sqlite3_vfs *pVfs,
763 return sqlite3OsFullPathname(g.pVfs, zPath, nOut, zOut);
769 static void *jtDlOpen(sqlite3_vfs *pVfs, const char *zPath)
    [all...]
main.c 911 sqlite3OsSleep(db->pVfs, delay*1000);
919 sqlite3OsSleep(db->pVfs, 1000000);
    [all...]
test_osinst.c 116 sqlite3_vfs *pVfs; /* Parent VFS */
131 #define REALVFS(p) (((VfslogVfs *)(p))->pVfs)
165 static void (*vfslogDlSym(sqlite3_vfs *pVfs, void *p, const char*zSym))(void);
473 sqlite3_vfs *pVfs,
482 VfslogVfs *pLog = (VfslogVfs *)pVfs;
486 p->pVfslog = pVfs;
490 rc = REALVFS(pVfs)->xOpen(REALVFS(pVfs), zName, p->pReal, flags, pOutFlags);
493 vfslog_call(pVfs, OS_OPEN, p->iFileId, t, rc, 0, 0);
494 vfslog_string(pVfs, zName)
    [all...]
os_win.c 103 sqlite3_vfs *pVfs; /* The VFS used to open this file */
125 sqlite3_vfs *pVfs,
    [all...]
shell.c     [all...]
test_vfs.c 51 sqlite3_vfs *pVfs; /* The VFS */
82 sqlite3_vfs *pVfs; /* The testvfs registered with SQLite */
324 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData;
369 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData;
397 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData;
418 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData;
501 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData;
513 Testvfs *p = (Testvfs *)pFd->pVfs->pAppData;
524 sqlite3_vfs *pVfs,
534 Testvfs *p = (Testvfs *)pVfs->pAppData
    [all...]
vdbeaux.c     [all...]
wal.c 411 sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */
    [all...]
pager.c 611 sqlite3_vfs *pVfs; /* OS functions to use for IO */
    [all...]
btree.c     [all...]
test1.c     [all...]
sqliteInt.h 801 sqlite3_vfs *pVfs; /* OS Interface */
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
speedtest8.c 114 sqlite3_vfs *pVfs = 0;
121 pVfs = sqlite3_instvfs_binarylog("oslog", 0, argv[2]);
122 sqlite3_vfs_register(pVfs, 1);
253 if( pVfs ){
254 sqlite3_instvfs_destroy(pVfs);
speedtest8inst1.c 82 sqlite3_vfs *pVfs = sqlite3_vfs_find(0);
89 p = (sqlite3_file *)malloc(pVfs->szOsFile);
90 rc = pVfs->xOpen(pVfs, zFile, p, flags, &flags);
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c     [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 710 milliseconds

1 2