Home | History | Annotate | Download | only in orig

Lines Matching refs:xAccess

2273 ** [[sqlite3_vfs.xAccess]]
2274 ** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS]
2329 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
2359 ** CAPI3REF: Flags for the xAccess VFS method
2362 ** the xAccess method of an [sqlite3_vfs] object. They determine
2363 ** what kind of permissions the xAccess method is looking for.
2364 ** With SQLITE_ACCESS_EXISTS, the xAccess method
2366 ** With SQLITE_ACCESS_READWRITE, the xAccess method
2373 ** With SQLITE_ACCESS_READ, the xAccess method
21041 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
36830 sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */
38409 unixAccess, /* xAccess */ \
44630 winAccess, /* xAccess */
44655 winAccess, /* xAccess */
44680 winAccess, /* xAccess */
44705 winAccess, /* xAccess */
51296 ** between the xAccess() below and an xDelete() being executed by some
176665 ** 3a. If xAccess() is called to check if there exists a *-wal file
177179 ** either the xOpen() or xAccess() VFS method, return a pointer to the
177195 ** happens to pass a pointer to this buffer when using xAccess()
177264 ** happens to pass a pointer to this buffer when using xAccess()
177355 rc = pRealVfs->xAccess(pRealVfs, zPath, flags, pResOut);
177505 rbuVfsAccess, /* xAccess */