Searched refs:access (Results 26 - 43 of 43) sorted by path

12

/haiku/src/add-ons/kernel/file_systems/layers/attribute_overlay/
H A Dattribute_overlay.cpp1321 OVERLAY_CALL(access, mode)
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRequestBuilder.cpp383 RequestBuilder::Open(OpenClaim claim, uint32 seq, uint32 access, uint64 id, argument
394 fRequest->Stream().AddUInt(access);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dwin32_io.c2 * win32_io.c - A stdio-like disk I/O implementation for low-level disk access
3 * on Win32. Can access an NTFS volume while it is mounted.
502 * Locking a volume means no one can access its contents.
882 ACCESS_MASK access; local
914 access = (mode == O_RDWR ?
918 st = NtOpenFile(&handle, access,
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp635 // cache file access
653 CLEAR_UNSUPPORTED(FS_VNODE_CAPABILITY_ACCESS, access);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A DFUSEFileSystem.cpp457 // VM file access
462 // cache file access
484 fNodeCapabilities.Set(FS_VNODE_CAPABILITY_ACCESS, fLowLevelOps.access);
542 fNodeCapabilities.Set(FS_VNODE_CAPABILITY_ACCESS, fFS->ops.access);
H A DFUSELowLevel.cpp405 if (ops->access == NULL)
409 ops->access(&request, ino, mask);
H A Dfuse_fs.cpp251 tv[0].tv_sec, // access time
264 if (fs->ops.access == NULL)
266 return fs->ops.access(path, mask);
/haiku/src/add-ons/kernel/network/devices/ethernet/
H A Dethernet.cpp145 if (access(name, F_OK) != 0)
/haiku/src/apps/mediaconverter/
H A DMediaConverterWindow.cpp1034 if (access(path.Path(), W_OK) != -1) {
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dsysctl.h129 #define SYSCTL_ADD_NODE(ctx, parent, nbr, name, access, handler, descr) \
130 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_NODE|(access), \
133 #define SYSCTL_ADD_STRING(ctx, parent, nbr, name, access, arg, len, descr) \
134 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_STRING|(access), \
137 #define SYSCTL_ADD_INT(ctx, parent, nbr, name, access, ptr, val, descr) \
138 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_INT|(access), \
141 #define SYSCTL_ADD_UINT(ctx, parent, nbr, name, access, ptr, val, descr) \
142 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|(access), \
145 #define SYSCTL_ADD_XINT(ctx, parent, nbr, name, access, ptr, val, descr) \
146 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|(access), \
[all...]
/haiku/src/system/kernel/cache/
H A Dfile_cache.cpp54 inline void SetLastAccess(int32 index, off_t access, bool isWrite) argument
57 last_access[index] = isWrite ? -access : access;
/haiku/src/system/kernel/fs/
H A Dvfs.cpp128 (e.g. by holding a reference to a vnode of that mount) (read) access
131 and thus making the access path vnode->mount->root_vnode->covers->mount->...
216 The holder is allowed to read/write access the sMountsTable.
238 The holder is allowed read/write access to sVnodeTable and to
240 private_node, mount) to which only read-only access is allowed.
244 locked. Write access to covered_by and covers requires to write lock
1906 However, any subsequent access will fail.
2188 // If a file system doesn't have the access() function, we assume that
2190 if (status == B_OK && HAS_FS_CALL(vnode, access))
2191 status = FS_CALL(vnode.Get(), access, X_O
[all...]
/haiku/src/system/libroot/os/
H A Dimage.cpp363 if (access(path, X_OK) == 0) {
/haiku/src/system/libroot/stubbed/
H A Dlibroot_stubs.c1414 void access() {} function
H A Dlibroot_stubs_legacy.c1343 void access() {} function
/haiku/src/tests/kits/net/netservices2/
H A DTestServer.cpp228 if (::access(testFilePath.data(), R_OK) != 0) {
229 fprintf(stderr, "ERROR: No access to the test server script at: %s\n", testFilePath.data());
287 if (::access(testFilePath.data(), R_OK) != 0) {
288 fprintf(stderr, "ERROR: No access to the test server script at: %s\n", testFilePath.data());
/haiku/src/tools/fs_shell/
H A Dfuse.cpp154 PRINTD("##access\n");
407 fuseOps->access = fuse_access;
H A Dvfs.cpp104 (e.g. by holding a reference to a vnode of that mount) (read) access
107 making the access path vnode->mount->covers_vnode->mount->... safe if a
130 * The holder is allowed to read/write access the sMountsTable.
153 * The holder is allowed to read access the vnode::covered_by field of any
154 * vnode. Additionally holding sMountOpLock allows for write access.
162 * The holder is allowed to read/write access sVnodeTable and to
165 * only read-only access is allowed, and to the field covered_by, which is
874 * However, any subsequent access will fail.
1139 // If a file system doesn't have the access() function, we assume that
1141 if (HAS_FS_CALL(vnode, access))
[all...]

Completed in 231 milliseconds

12