Home | History | Annotate | Download | only in dist

Lines Matching refs:xAccess

1529 ** [[sqlite3_vfs.xAccess]]
1530 ** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS]
1585 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
1615 ** CAPI3REF: Flags for the xAccess VFS method
1618 ** the xAccess method of an [sqlite3_vfs] object. They determine
1619 ** what kind of permissions the xAccess method is looking for.
1620 ** With SQLITE_ACCESS_EXISTS, the xAccess method
1622 ** With SQLITE_ACCESS_READWRITE, the xAccess method
1629 ** With SQLITE_ACCESS_READ, the xAccess method
14845 return pVfs->xAccess(pVfs, zPath, flags, pResOut);
24780 os2Access, /* xAccess */
30358 sqlite3_vfs *NotUsed, /* The VFS containing this xAccess method */
31860 unixAccess, /* xAccess */ \
35803 winAccess, /* xAccess */
41574 ** between the xAccess() below and an xDelete() being executed by some