Searched refs:pVfs (Results 1 - 25 of 38) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Dos.c127 sqlite3_vfs *pVfs,
139 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f3f, pFlagsOut);
143 int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
144 return pVfs->xDelete(pVfs, zPath, dirSync);
147 sqlite3_vfs *pVfs,
153 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
156 sqlite3_vfs *pVfs,
126 sqlite3OsOpen( sqlite3_vfs *pVfs, const char *zPath, sqlite3_file *pFile, int flags, int *pFlagsOut ) argument
146 sqlite3OsAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
155 sqlite3OsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nPathOut, char *zPathOut ) argument
165 sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath) argument
168 sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
171 sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym) argument
174 sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
178 sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
181 sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro) argument
184 sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut) argument
202 sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ) argument
254 sqlite3_vfs *pVfs = 0; local
277 vfsUnlink(sqlite3_vfs *pVfs) argument
299 sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt) argument
323 sqlite3_vfs_unregister(sqlite3_vfs *pVfs) argument
[all...]
H A Dtest_devsym.c125 sqlite3_vfs *pVfs; member in struct:DevsymGlobal
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){ argument
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, cons argument
266 devsymOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
296 devsymAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
310 devsymFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
332 devsymDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg) argument
339 devsymDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym) argument
346 devsymDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
355 devsymRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
363 devsymSleep(sqlite3_vfs *pVfs, int nMicro) argument
370 devsymCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut) argument
[all...]
H A Dtest_osinst.c116 sqlite3_vfs *pVfs; /* Parent VFS */ member in struct:VfslogVfs
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, zNam
472 vfslogOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
503 vfslogDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync) argument
518 vfslogAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
539 vfslogFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
551 vfslogDlOpen(sqlite3_vfs *pVfs, const char *zPath) argument
560 vfslogDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg) argument
567 vfslogDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym) argument
574 vfslogDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
582 vfslogRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
590 vfslogSleep(sqlite3_vfs *pVfs, int nMicro) argument
597 vfslogCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut) argument
601 vfslogGetLastError(sqlite3_vfs *pVfs, int a, char *b) argument
604 vfslogCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *p) argument
643 vfslog_call( sqlite3_vfs *pVfs, int eEvent, int iFileid, int nClick, int return_code, int size, int offset ) argument
667 vfslog_string(sqlite3_vfs *pVfs, const char *zStr) argument
691 sqlite3_vfs *pVfs; local
750 sqlite3_vfs *pVfs; local
861 sqlite3_vfs *pVfs; /* VFS used to read log file */ local
[all...]
H A Dtest_syscall.c54 ** xSetSystemCall(pVfs, 0, 0);
59 ** xSetSystemCall(pVfs, "open", 0);
385 sqlite3_vfs *pVfs; local
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; local
429 pVfs
445 sqlite3_vfs *pVfs; local
483 sqlite3_vfs *pVfs; local
580 sqlite3_vfs *pVfs; local
609 sqlite3_vfs *pVfs; local
[all...]
H A Djournal.c41 sqlite3_vfs *pVfs; /* The "real" underlying VFS */ member in struct:JournalFile
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){ argument
236 return (pVfs
195 sqlite3JournalOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pJfd, int flags, int nBuf ) argument
[all...]
H A Dtest_journal.c205 sqlite3_vfs *pVfs; /* Parent VFS */ member in struct:JtGlobal
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){ argument
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, cons argument
689 jtOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
743 jtAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
757 jtFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
778 jtDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg) argument
785 jtDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym) argument
792 jtDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
800 jtRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
808 jtSleep(sqlite3_vfs *pVfs, int nMicro) argument
815 jtCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut) argument
821 jtCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut) argument
[all...]
H A Dtest6.c575 ** 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; local
594 rc = sqlite3OsOpen(pVfs, zName, pReal, flags, pOutFlags);
637 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
638 return pVfs->xDelete(pVfs, zPath, dirSync);
646 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
647 return pVfs->xAccess(pVfs, zPat
655 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
659 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
663 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
667 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
671 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
675 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
679 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
683 sqlite3_vfs *pVfs = (sqlite3_vfs *)pCfVfs->pAppData; local
[all...]
H A Dtest_vfs.c51 sqlite3_vfs *pVfs; /* The VFS */ member in struct:TestvfsFd
82 sqlite3_vfs *pVfs; /* The testvfs registered with SQLite */ member in struct:Testvfs
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
523 tvfsOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
607 tvfsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync) argument
627 tvfsAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
660 tvfsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
673 tvfsDlOpen(sqlite3_vfs *pVfs, const char *zPath) argument
682 tvfsDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg) argument
689 tvfsDlSym(sqlite3_vfs *pVfs, void *p, const char *zSym) argument
696 tvfsDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
705 tvfsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
713 tvfsSleep(sqlite3_vfs *pVfs, int nMicro) argument
720 tvfsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut) argument
1311 sqlite3_vfs *pVfs; /* New VFS */ local
[all...]
H A Dtest_onefile.c584 sqlite3_vfs *pVfs,
590 fs_vfs_t *pFsVfs = (fs_vfs_t *)pVfs;
685 static int fsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
687 fs_vfs_t *pFsVfs = (fs_vfs_t *)pVfs;
712 sqlite3_vfs *pVfs,
717 fs_vfs_t *pFsVfs = (fs_vfs_t *)pVfs;
723 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent;
746 sqlite3_vfs *pVfs, /* Pointer to vfs object */
751 sqlite3_vfs *pParent = ((fs_vfs_t *)pVfs)->pParent;
758 static void *fsDlOpen(sqlite3_vfs *pVfs, cons argument
583 fsOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
711 fsAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
745 fsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
768 fsDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg) argument
776 fsDlSym(sqlite3_vfs *pVfs, void *pH, const char *zSym) argument
784 fsDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
793 fsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
802 fsSleep(sqlite3_vfs *pVfs, int nMicro) argument
810 fsCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut) argument
[all...]
H A Dtest_demovfs.c392 sqlite3_vfs *pVfs, /* VFS */
454 static int demoDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
498 sqlite3_vfs *pVfs,
531 sqlite3_vfs *pVfs, /* VFS */
562 static void *demoDlOpen(sqlite3_vfs *pVfs, const char *zPath){ argument
565 static void demoDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ argument
569 static void (*demoDlSym(sqlite3_vfs *pVfs, void *pH, const char *z))(void){ argument
572 static void demoDlClose(sqlite3_vfs *pVfs, void *pHandle){ argument
580 static int demoRandomness(sqlite3_vfs *pVfs, int nByte, char *zByte){ argument
588 static int demoSleep(sqlite3_vfs *pVfs, in argument
391 demoOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
497 demoAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
530 demoFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nPathOut, char *zPathOut ) argument
605 demoCurrentTime(sqlite3_vfs *pVfs, double *pTime) argument
[all...]
H A Dtest_vfstrace.c483 sqlite3_vfs *pVfs,
491 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData;
538 static int vfstraceDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
539 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData;
554 sqlite3_vfs *pVfs,
559 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData;
576 sqlite3_vfs *pVfs,
581 vfstrace_info *pInfo = (vfstrace_info*)pVfs->pAppData;
595 static void *vfstraceDlOpen(sqlite3_vfs *pVfs, const char *zPath){ argument
596 vfstrace_info *pInfo = (vfstrace_info*)pVfs
482 vfstraceOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
553 vfstraceAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
575 vfstraceFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
607 vfstraceDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg) argument
618 vfstraceDlSym(sqlite3_vfs *pVfs,void *p,const char *zSym) argument
628 vfstraceDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
639 vfstraceRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
650 vfstraceSleep(sqlite3_vfs *pVfs, int nMicro) argument
659 vfstraceCurrentTime(sqlite3_vfs *pVfs, double *pTimeOut) argument
664 vfstraceCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut) argument
673 vfstraceGetLastError(sqlite3_vfs *pVfs, int iErr, char *zErr) argument
682 vfstraceSetSystemCall( sqlite3_vfs *pVfs, const char *zName, sqlite3_syscall_ptr pFunc ) argument
691 vfstraceGetSystemCall( sqlite3_vfs *pVfs, const char *zName ) argument
699 vfstraceNextSystemCall(sqlite3_vfs *pVfs, const char *zName) argument
[all...]
H A Dloadext.c395 sqlite3_vfs *pVfs = db->pVfs; local
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]);
H A Dos_win.c103 sqlite3_vfs *pVfs; /* The VFS used to open this file */ member in struct:winFile
125 sqlite3_vfs *pVfs,
1391 static void winShmPurge(sqlite3_vfs *pVfs, int deleteFlag){ argument
1418 winDelete(pVfs, p->zFilename, 0);
1487 rc = winOpen(pDbFd->pVfs,
1538 winShmPurge(pDbFd->pVfs, 0); /* This call frees pShmNode if required */
1580 winShmPurge(pDbFd->pVfs, deleteFlag);
1904 ** hold at pVfs->mxPathname characters.
2041 sqlite3_vfs *pVfs, /* Not used */
2112 UNUSED_PARAMETER(pVfs);
2040 winOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
2267 winDelete( sqlite3_vfs *pVfs, const char *zFilename, int syncDir ) argument
2317 winAccess( sqlite3_vfs *pVfs, const char *zFilename, int flags, int *pResOut ) argument
2388 winFullPathname( sqlite3_vfs *pVfs, const char *zRelative, int nFull, char *zFull ) argument
2468 getSectorSize( sqlite3_vfs *pVfs, const char *zRelative ) argument
2543 winDlOpen(sqlite3_vfs *pVfs, const char *zFilename) argument
2564 winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut) argument
2568 winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol) argument
2579 winDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
2594 winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf) argument
2631 winSleep(sqlite3_vfs *pVfs, int microsec) argument
2655 winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow) argument
2697 winCurrentTime(sqlite3_vfs *pVfs, double *prNow) argument
2737 winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf) argument
[all...]
H A Dos_os2.c1373 ** hold at pVfs->mxPathname characters.
1434 ** pathname into zFull[]. zFull[] will be at least pVfs->mxPathname
1438 sqlite3_vfs *pVfs, /* Pointer to vfs object */
1460 sqlite3_vfs *pVfs, /* Not used */
1490 UNUSED_PARAMETER(pVfs);
1580 return os2Open( pVfs, zName, id,
1592 os2FullPathname( pVfs, zUtf8Name, sizeof( zTmpname ), zTmpname );
1607 sqlite3_vfs *pVfs, /* Not used on os2 */
1627 sqlite3_vfs *pVfs, /* Not used on os2 */
1636 UNUSED_PARAMETER(pVfs);
1437 os2FullPathname( sqlite3_vfs *pVfs, const char *zRelative, int nFull, char *zFull ) argument
1459 os2Open( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
1606 os2Delete( sqlite3_vfs *pVfs, const char *zFilename, int syncDir ) argument
1626 os2Access( sqlite3_vfs *pVfs, const char *zFilename, int flags, int *pOut ) argument
1681 os2DlOpen(sqlite3_vfs *pVfs, const char *zFilename) argument
1693 os2DlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut) argument
1696 os2DlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol) argument
1710 os2DlClose(sqlite3_vfs *pVfs, void *pHandle) argument
1724 os2Randomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf ) argument
1776 os2Sleep( sqlite3_vfs *pVfs, int microsec ) argument
1798 os2CurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow) argument
1840 os2CurrentTime( sqlite3_vfs *pVfs, double *prNow ) argument
1880 os2GetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf) argument
[all...]
H A Dpager.c611 sqlite3_vfs *pVfs; /* OS functions to use for IO */ member in struct:Pager
1941 rc = sqlite3OsDelete(pPager->pVfs, pPager->zJournal, 0);
2362 sqlite3_vfs *pVfs = pPager->pVfs; local
2375 pMaster = (sqlite3_file *)sqlite3MallocZero(pVfs->szOsFile * 2);
2376 pJournal = (sqlite3_file *)(((u8 *)pMaster) + pVfs->szOsFile);
2381 rc = sqlite3OsOpen(pVfs, zMaster, pMaster, flags, 0);
2392 nMasterPtr = pVfs->mxPathname+1;
2406 rc = sqlite3OsAccess(pVfs, zJournal, SQLITE_ACCESS_EXISTS, &exists);
2417 rc = sqlite3OsOpen(pVfs, zJourna
2595 sqlite3_vfs *pVfs = pPager->pVfs; local
4280 sqlite3PagerOpen( sqlite3_vfs *pVfs, Pager **ppPager, const char *zFilename, int nExtra, int flags, int vfsFlags, void (*xReinit)(DbPage*) ) argument
4574 sqlite3_vfs * const pVfs = pPager->pVfs; local
4761 sqlite3_vfs * const pVfs = pPager->pVfs; local
5134 sqlite3_vfs * const pVfs = pPager->pVfs; /* Local cache of vfs pointer */ local
[all...]
H A Dtest2.c535 sqlite3_vfs *pVfs; local
547 pVfs = sqlite3_vfs_find(0);
548 rc = sqlite3OsOpenMalloc(pVfs, argv[2], &fd,
H A Dmain.c911 sqlite3OsSleep(db->pVfs, delay*1000);
919 sqlite3OsSleep(db->pVfs, 1000000);
1906 db->pVfs = sqlite3_vfs_find(zVfs);
1907 if( !db->pVfs ){
2388 sqlite3_vfs *pVfs; local
2390 pVfs = sqlite3_vfs_find(0);
2391 if( pVfs==0 ) return 0;
2396 rc = (sqlite3OsSleep(pVfs, 1000*ms)/1000);
H A Dtest3.c77 sDb.pVfs = sqlite3_vfs_find(0);
122 sDb.pVfs = 0;
H A Dwal.c411 sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */ member in struct:Wal
1233 sqlite3_vfs *pVfs, /* vfs module to open wal and wal-index */
1260 pRet = (Wal*)sqlite3MallocZero(sizeof(Wal) + pVfs->szOsFile);
1265 pRet->pVfs = pVfs;
1274 rc = sqlite3OsOpen(pVfs, zWalName, pRet->pWalFd, flags, &flags);
1800 sqlite3OsDelete(pWal->pVfs, pWal->zWalName, 0);
2027 sqlite3OsSleep(pWal->pVfs, nDelay);
1232 sqlite3WalOpen( sqlite3_vfs *pVfs, sqlite3_file *pDbFd, const char *zWalName, int bNoShm, Wal **ppWal ) argument
H A Dtest_multiplex.c292 sqlite3_vfs *pVfs, /* The multiplex VFS */
307 UNUSED_PARAMETER(pVfs);
385 sqlite3_vfs *pVfs, /* The multiplex VFS */
394 UNUSED_PARAMETER(pVfs);
291 multiplexOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pConn, int flags, int *pOutFlags ) argument
384 multiplexDelete( sqlite3_vfs *pVfs, const char *zName, int syncDir ) argument
H A Dshell.c2734 sqlite3_vfs *pVfs = sqlite3_vfs_find(argv[++i]); local
2735 if( pVfs ){
2736 sqlite3_vfs_register(pVfs, 1);
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.c1037 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1054 2 * pVfs->szOsFile + /* AsyncFileData.pBaseRead and pBaseWrite */
1065 z += pVfs->szOsFile;
1071 z += pVfs->szOsFile;
1079 rc = pVfs->xOpen(pVfs, pData->zName, pData->pBaseRead, flags, &flagsout);
1084 rc = pVfs->xOpen(pVfs, pData->zName, pData->pBaseWrite, flags, 0);
1096 int nByte = pVfs->szOsFile + sizeof(AsyncLock) + pData->nName + 1;
1102 rc = pVfs
1191 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1232 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1266 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1270 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1278 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1282 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1286 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1290 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1294 sqlite3_vfs *pVfs = (sqlite3_vfs *)pAsyncVfs->pAppData; local
1338 sqlite3_vfs *pVfs = (sqlite3_vfs *)(async_vfs.pAppData); local
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspeedtest8inst1.c82 sqlite3_vfs *pVfs = sqlite3_vfs_find(0); local
89 p = (sqlite3_file *)malloc(pVfs->szOsFile);
90 rc = pVfs->xOpen(pVfs, zFile, p, flags, &flags);
H A Dspeedtest8.c114 sqlite3_vfs *pVfs = 0; local
121 pVfs = sqlite3_instvfs_binarylog("oslog", 0, argv[2]);
122 sqlite3_vfs_register(pVfs, 1);
253 if( pVfs ){
254 sqlite3_instvfs_destroy(pVfs);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9146 sqlite3_vfs *pVfs; /* OS Interface */ member in struct:sqlite3
11490 #define sqlite3JournalSize(pVfs) ((pVfs)->szOsFile)
13161 sqlite3OsCurrentTimeInt64(db->pVfs, &p->iJD);
13891 sqlite3OsCurrentTimeInt64(db->pVfs, &iT);
14071 sqlite3_vfs *pVfs,
14083 rc = pVfs->xOpen(pVfs, zPath, pFile, flags & 0x87f3f, pFlagsOut);
14087 SQLITE_PRIVATE int sqlite3OsDelete(sqlite3_vfs *pVfs, const char *zPath, int dirSync){ argument
14088 return pVfs
14070 sqlite3OsOpen( sqlite3_vfs *pVfs, const char *zPath, sqlite3_file *pFile, int flags, int *pFlagsOut ) argument
14090 sqlite3OsAccess( sqlite3_vfs *pVfs, const char *zPath, int flags, int *pResOut ) argument
14099 sqlite3OsFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nPathOut, char *zPathOut ) argument
14109 sqlite3OsDlOpen(sqlite3_vfs *pVfs, const char *zPath) argument
14112 sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
14115 sqlite3OsDlSym(sqlite3_vfs *pVfs, void *pHdle, const char *zSym) argument
14118 sqlite3OsDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
14122 sqlite3OsRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut) argument
14125 sqlite3OsSleep(sqlite3_vfs *pVfs, int nMicro) argument
14128 sqlite3OsCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *pTimeOut) argument
14146 sqlite3OsOpenMalloc( sqlite3_vfs *pVfs, const char *zFile, sqlite3_file **ppFile, int flags, int *pOutFlags ) argument
14198 sqlite3_vfs *pVfs = 0; local
14221 vfsUnlink(sqlite3_vfs *pVfs) argument
14243 sqlite3_vfs_register(sqlite3_vfs *pVfs, int makeDflt) argument
14267 sqlite3_vfs_unregister(sqlite3_vfs *pVfs) argument
23449 os2FullPathname( sqlite3_vfs *pVfs, const char *zRelative, int nFull, char *zFull ) argument
23471 os2Open( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
23618 os2Delete( sqlite3_vfs *pVfs, const char *zFilename, int syncDir ) argument
23638 os2Access( sqlite3_vfs *pVfs, const char *zFilename, int flags, int *pOut ) argument
23693 os2DlOpen(sqlite3_vfs *pVfs, const char *zFilename) argument
23705 os2DlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut) argument
23708 os2DlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol) argument
23722 os2DlClose(sqlite3_vfs *pVfs, void *pHandle) argument
23736 os2Randomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf ) argument
23788 os2Sleep( sqlite3_vfs *pVfs, int microsec ) argument
23810 os2CurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow) argument
23852 os2CurrentTime( sqlite3_vfs *pVfs, double *prNow ) argument
23892 os2GetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf) argument
28615 fillInUnixFile( sqlite3_vfs *pVfs, int h, int syncDir, sqlite3_file *pId, const char *zFilename, int noLock, int isDelete, int isReadOnly ) argument
29087 unixOpen( sqlite3_vfs *pVfs, const char *zPath, sqlite3_file *pFile, int flags, int *pOutFlags ) argument
29390 unixFullPathname( sqlite3_vfs *pVfs, const char *zPath, int nOut, char *zOut ) argument
31223 sqlite3_vfs *pVfs; /* The VFS used to open this file */ member in struct:winFile
32510 winShmPurge(sqlite3_vfs *pVfs, int deleteFlag) argument
33159 winOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *id, int flags, int *pOutFlags ) argument
33386 winDelete( sqlite3_vfs *pVfs, const char *zFilename, int syncDir ) argument
33436 winAccess( sqlite3_vfs *pVfs, const char *zFilename, int flags, int *pResOut ) argument
33507 winFullPathname( sqlite3_vfs *pVfs, const char *zRelative, int nFull, char *zFull ) argument
33587 getSectorSize( sqlite3_vfs *pVfs, const char *zRelative ) argument
33662 winDlOpen(sqlite3_vfs *pVfs, const char *zFilename) argument
33683 winDlError(sqlite3_vfs *pVfs, int nBuf, char *zBufOut) argument
33687 winDlSym(sqlite3_vfs *pVfs, void *pHandle, const char *zSymbol) argument
33698 winDlClose(sqlite3_vfs *pVfs, void *pHandle) argument
33713 winRandomness(sqlite3_vfs *pVfs, int nBuf, char *zBuf) argument
33750 winSleep(sqlite3_vfs *pVfs, int microsec) argument
33774 winCurrentTimeInt64(sqlite3_vfs *pVfs, sqlite3_int64 *piNow) argument
33816 winCurrentTime(sqlite3_vfs *pVfs, double *prNow) argument
33856 winGetLastError(sqlite3_vfs *pVfs, int nBuf, char *zBuf) argument
37041 sqlite3_vfs *pVfs; /* OS functions to use for IO */ member in struct:Pager
38792 sqlite3_vfs *pVfs = pPager->pVfs; local
39025 sqlite3_vfs *pVfs = pPager->pVfs; local
40710 sqlite3PagerOpen( sqlite3_vfs *pVfs, Pager **ppPager, const char *zFilename, int nExtra, int flags, int vfsFlags, void (*xReinit)(DbPage*) ) argument
41004 sqlite3_vfs * const pVfs = pPager->pVfs; local
41191 sqlite3_vfs * const pVfs = pPager->pVfs; local
41564 sqlite3_vfs * const pVfs = pPager->pVfs; /* Local cache of vfs pointer */ local
43691 sqlite3_vfs *pVfs; /* The VFS used to create pDbFd */ member in struct:Wal
44512 sqlite3WalOpen( sqlite3_vfs *pVfs, sqlite3_file *pDbFd, const char *zWalName, int bNoShm, Wal **ppWal ) argument
48816 sqlite3_vfs *pVfs; /* The VFS to use for this btree */ local
58910 sqlite3_vfs *pVfs = db->pVfs; local
68937 sqlite3_vfs *pVfs; /* The "real" underlying VFS */ member in struct:JournalFile
69091 sqlite3JournalOpen( sqlite3_vfs *pVfs, const char *zName, sqlite3_file *pJfd, int flags, int nBuf ) argument
69131 sqlite3JournalSize(sqlite3_vfs *pVfs) argument
87279 sqlite3_vfs *pVfs = db->pVfs; local
109633 sqlite3_vfs *pVfs; local
[all...]

Completed in 347 milliseconds

12