Lines Matching defs:xAccess
1728 ** [[sqlite3_vfs.xAccess]]
1729 ** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS]
1735 ** directory. The xAccess method returns [SQLITE_OK] on success or some
1790 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1820 ** CAPI3REF: Flags for the xAccess VFS method
1823 ** the xAccess method of an [sqlite3_vfs] object. They determine
1824 ** what kind of permissions the xAccess method is looking for.
1825 ** With SQLITE_ACCESS_EXISTS, the xAccess method
1827 ** With SQLITE_ACCESS_READWRITE, the xAccess method
1834 ** With SQLITE_ACCESS_READ, the xAccess method
26282 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
37479 kvvfsAccess, /* xAccess */
38252 SQLITE_KV_LOG(("xAccess(\"%s\")\n", zPath));
38268 SQLITE_KV_LOG(("xAccess returns %d\n",*pResOut));
44947 sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */
46543 unixAccess, /* xAccess */ \
52722 winAccess, /* xAccess */
52747 winAccess, /* xAccess */
52772 winAccess, /* xAccess */
52797 winAccess, /* xAccess */
53011 memdbAccess, /* xAccess */
60433 ** between the xAccess() below and an xDelete() being executed by some
222582 ** 3a. If xAccess() is called to check if there exists a *-wal file
222691 ** either the xOpen() or xAccess() VFS method, search the main-db list for
223226 ** happens to pass a pointer to this buffer when using xAccess()
223305 rc = pRealVfs->xAccess(pRealVfs, zPath, flags, pResOut);
223456 rbuVfsAccess, /* xAccess */