Lines Matching refs:flags
148 static int vfslogSync(sqlite3_file*, int flags);
157 static int vfslogShmLock(sqlite3_file *pFile, int ofst, int n, int flags);
167 static int vfslogAccess(sqlite3_vfs*, const char *zName, int flags, int *);
325 static int vfslogSync(sqlite3_file *pFile, int flags){ in vfslogSync() argument
330 rc = p->pReal->pMethods->xSync(p->pReal, flags); in vfslogSync()
332 vfslog_call(p->pVfslog, OS_SYNC, p->iFileId, t, rc, flags, 0); in vfslogSync()
432 static int vfslogShmLock(sqlite3_file *pFile, int ofst, int n, int flags){ in vfslogShmLock() argument
437 rc = p->pReal->pMethods->xShmLock(p->pReal, ofst, n, flags); in vfslogShmLock()
485 int flags, in vfslogOpen() argument
499 rc = REALVFS(pVfs)->xOpen(REALVFS(pVfs), zName, p->pReal, flags, pOutFlags); in vfslogOpen()
530 int flags, in vfslogAccess() argument
536 rc = REALVFS(pVfs)->xAccess(REALVFS(pVfs), zPath, flags, pResOut); in vfslogAccess()
538 vfslog_call(pVfs, OS_ACCESS, 0, t, rc, flags, *pResOut); in vfslogAccess()
718 int flags; in sqlite3_vfslog_new() local
743 flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE|SQLITE_OPEN_SUPER_JOURNAL; in sqlite3_vfslog_new()
745 rc = pParent->xOpen(pParent, zFile, p->pLog, flags, &flags); in sqlite3_vfslog_new()
871 int flags; /* flags passed to pVfs->xOpen() */ in vlogConnect() local
896 flags = SQLITE_OPEN_READWRITE|SQLITE_OPEN_SUPER_JOURNAL; in vlogConnect()
897 rc = pVfs->xOpen(pVfs, p->zFile, p->pFd, flags, &flags); in vlogConnect()