Lines Matching defs:xAccess
1722 ** [[sqlite3_vfs.xAccess]]
1723 ** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS]
1729 ** directory. The xAccess method returns [SQLITE_OK] on success or some
1784 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1814 ** CAPI3REF: Flags for the xAccess VFS method
1817 ** the xAccess method of an [sqlite3_vfs] object. They determine
1818 ** what kind of permissions the xAccess method is looking for.
1819 ** With SQLITE_ACCESS_EXISTS, the xAccess method
1821 ** With SQLITE_ACCESS_READWRITE, the xAccess method
1828 ** With SQLITE_ACCESS_READ, the xAccess method
25108 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
35896 kvvfsAccess, /* xAccess */
36664 SQLITE_KV_LOG(("xAccess(\"%s\")\n", zPath));
36680 SQLITE_KV_LOG(("xAccess returns %d\n",*pResOut));
43314 sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */
44965 unixAccess, /* xAccess */ \
51128 winAccess, /* xAccess */
51153 winAccess, /* xAccess */
51178 winAccess, /* xAccess */
51203 winAccess, /* xAccess */
51417 memdbAccess, /* xAccess */
58846 ** between the xAccess() below and an xDelete() being executed by some
213254 ** 3a. If xAccess() is called to check if there exists a *-wal file
213363 ** either the xOpen() or xAccess() VFS method, search the main-db list for
213876 ** happens to pass a pointer to this buffer when using xAccess()
213950 rc = pRealVfs->xAccess(pRealVfs, zPath, flags, pResOut);
214101 rbuVfsAccess, /* xAccess */