Searched refs:access (Results 1 - 25 of 43) sorted by relevance

12

/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/libs/compat/freebsd_network/compat/net/
H A Dvnet.h238 * access it. If a caller may sleep while accessing the list, it must use
298 #define SYSCTL_VNET_INT(parent, nbr, name, access, ptr, val, descr) \
300 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_VNET|(access), \
302 #define SYSCTL_VNET_PROC(parent, nbr, name, access, ptr, arg, handler, \
304 CTASSERT(((access) & CTLTYPE) != 0); \
305 SYSCTL_OID(parent, nbr, name, CTLFLAG_VNET|(access), ptr, arg, \
307 #define SYSCTL_VNET_OPAQUE(parent, nbr, name, access, ptr, len, fmt, \
310 CTLTYPE_OPAQUE|CTLFLAG_VNET|(access), ptr, len, \
312 #define SYSCTL_VNET_STRING(parent, nbr, name, access, arg, len, descr) \
314 CTLTYPE_STRING|CTLFLAG_VNET|(access), \
[all...]
/haiku/src/system/libroot/posix/unistd/
H A Daccess.c16 access(const char* path, int accessMode) function
/haiku/src/bin/rc/
H A Drdef.cpp169 if (access(tmpname, R_OK) == 0) {
/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/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexregion.c259 * the access.
279 goto access;
351 access:
354 * access
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DRequestBuilder.h53 uint32 access, uint64 id, OpenCreate oc,
/haiku/src/build/libroot/
H A Dfs_darwin.cpp119 // call access() ignoring fd
121 : access(path, accessMode);
135 : access(fullPath, accessMode);
/haiku/headers/private/userlandfs/fuse/
H A Dfuse_lowlevel_compat.h61 void (*access) (fuse_req_t req, fuse_ino_t ino, int mask); member in struct:fuse_lowlevel_ops_compat25
128 void (*access) (fuse_req_t req, fuse_ino_t ino, int mask); member in struct:fuse_lowlevel_ops_compat
H A Dfuse_compat.h47 int (*access) (const char *, int); member in struct:fuse_operations_compat25
H A Dfuse_lowlevel.h749 * Check file access permissions
751 * This will be called for the access() system call. If the
764 * @param mask requested access mode
766 void (*access) (fuse_req_t req, fuse_ino_t ino, int mask); member in struct:fuse_lowlevel_ops
H A Dfuse.h77 * releasedir, fsyncdir, access, create, ftruncate, fgetattr, lock,
151 /** Change the access and/or modification times of a file
345 * Check file access permissions
347 * This will be called for the access() system call. If the
355 int (*access) (const char *, int); member in struct:fuse_operations
435 * Change the access and modification times of a file with
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
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);
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);
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/beos/
H A DBeOSKernelFileSystem.cpp139 // VM file access
144 // cache file access
161 fNodeCapabilities.Set(FS_VNODE_CAPABILITY_ACCESS, fFSOps->access);
H A DBeOSKernelVolume.cpp333 if (!fFSOps->access)
335 return fFSOps->access(fVolumeCookie, node, mode);
H A Dfs_interface.h190 beos_op_access *access; member in struct:beos_vnode_ops
/haiku/headers/private/userlandfs/legacy/
H A Dfsproto.h171 op_access *access; member in struct:vnode_ops
/haiku/src/system/libroot/os/
H A Dimage.cpp363 if (access(path, X_OK) == 0) {
/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/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A DHaikuKernelFileSystem.cpp313 // cache file access
330 capabilities.Set(FS_VNODE_CAPABILITY_ACCESS, ops->access);
/haiku/headers/posix/
H A Dunistd.h16 /* access modes */
336 extern int access(const char *path, int accessMode);
447 /* access permissions */
/haiku/src/tools/fs_shell/
H A Dfuse.cpp154 PRINTD("##access\n");
407 fuseOps->access = fuse_access;
/haiku/src/add-ons/kernel/network/devices/ethernet/
H A Dethernet.cpp145 if (access(name, F_OK) != 0)

Completed in 187 milliseconds

12