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

1234

/haiku-fatelf/src/bin/coreutils/lib/
H A Dfaccessat.c1 /* Check the access rights of a file relative to an open directory.
24 /* Mingw lacks access, but it also lacks real vs. effective ids, so
26 # undef access macro
27 # define access euidaccess macro
30 /* Invoke access or euidaccess on file, FILE, using mode MODE, in the directory
33 (access|euidaccess)/restore_cwd. If either the save_cwd or the
40 #define AT_FUNC_F2 access
H A Deuidaccess.c1 /* euidaccess -- check if effective user id can access file
56 # define access __access macro
74 Like access, except that it uses the effective user and group
84 return access (file, mode | EFF_ONLY_OK);
118 result = access (file, mode);
139 /* If we are not set-uid or set-gid, access does the same. */
140 return access (file, mode);
/haiku-fatelf/src/libs/compat/freebsd_network/compat/sys/
H A Dsysctl.h96 #define SYSCTL_ADD_NODE(ctx, parent, nbr, name, access, handler, descr) \
97 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_NODE|(access), \
100 #define SYSCTL_ADD_STRING(ctx, parent, nbr, name, access, arg, len, descr) \
101 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_STRING|(access), \
104 #define SYSCTL_ADD_INT(ctx, parent, nbr, name, access, ptr, val, descr) \
105 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_INT|(access), \
108 #define SYSCTL_ADD_UINT(ctx, parent, nbr, name, access, ptr, val, descr) \
109 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|(access), \
112 #define SYSCTL_ADD_XINT(ctx, parent, nbr, name, access, ptr, val, descr) \
113 sysctl_add_oid(ctx, parent, nbr, name, CTLTYPE_UINT|(access), \
[all...]
/haiku-fatelf/src/bin/gdb/gdb/rdi-share/
H A Ddbg_cp.h32 unsigned char access; /* see above (Access_xxx) */ member in struct:__anon3831
/haiku-fatelf/src/system/libroot/posix/unistd/
H A Daccess.c16 access(const char* path, int accessMode) function
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/FileSharing-Windows/
H A DShareProperties.cpp158 char access[50]; local
159 access[0] = 0;
161 strcat(access, "Read ");
163 strcat(access, "Write");
166 m_userList.SetItemText(nItem, 1, access);
179 char access[50]; local
190 access[0] = 0;
192 strcat(access, "Read ");
194 strcat(access, "Write");
197 m_userList.SetItemText(nItem, 1, access);
[all...]
H A DPrinterProperties.cpp134 char access[50]; local
135 access[0] = 0;
137 strcpy(access, "Print");
140 m_userList.SetItemText(nItem, 1, access);
169 char access[50]; local
180 access[0] = 0;
182 strcpy(access, "Print");
185 m_userList.SetItemText(nItem, 1, access);
/haiku-fatelf/src/libs/ncurses/ncurses/tinfo/
H A Daccess.c37 MODULE_ID("$Id: access.c,v 1.10 2003/07/05 19:31:28 tom Exp $")
94 if (access(path, mode) < 0) {
107 return access(head, R_OK | W_OK | X_OK);
/haiku-fatelf/src/bin/bash/lib/sh/
H A Deaccess.c1 /* eaccess.c - eaccess replacement for the shell, plus other access functions. */
131 /* Do the same thing access(2) does, but use the effective uid and gid,
183 r = access (path, mode);
207 return access (path, mode|EFF_ONLY_OK);
218 return (access (path, mode));
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dmake-temp-file.c73 && access (dir, R_OK | W_OK | X_OK) == 0)
H A Dmake-relative-prefix.c279 if (! access (nstore, X_OK)
281 || ! access (strcat (nstore, HOST_EXECUTABLE_SUFFIX), X_OK)
/haiku-fatelf/src/bin/rc/
H A Drdef.cpp169 if (access(tmpname, R_OK) == 0) {
/haiku-fatelf/src/bin/rcs/
H A Drcssyn.c173 Kaccess[] = "access",
198 struct access * AccessList;
233 struct access * newaccess;
237 struct access **LastAccess;
272 newaccess = ftalloc(struct access);
H A Drcsbase.h120 * Adjust ANSI C / Posix support. Add -k, -V, setuid. Don't call access().
388 struct access { struct
390 struct access * nextaccess;
656 extern struct access * AccessList;
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/beserved/server-Windows/
H A Dprinting.cpp204 // If no rights have been granted, deny access.
215 } while (access(printJob, 0) == 0);
251 if (access(printJob, 0) == 0)
279 if (access(printJob, 0) == 0)
/haiku-fatelf/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
/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
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-fatelf/src/bin/bash/
H A Dfindcmd.c97 /* We have to use access(2) to determine access because AFS does not
100 if (access (name, X_OK) == 0)
102 if (access (name, R_OK) == 0)
/haiku-fatelf/src/build/libroot/
H A Dfs_darwin.cpp119 // call access() ignoring fd
121 : access(path, accessMode);
135 : access(fullPath, accessMode);
/haiku-fatelf/headers/posix/
H A Dunistd.h13 /* access modes */
156 extern int access(const char *path, int accessMode);
248 /* access permissions */
/haiku-fatelf/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);
/haiku-fatelf/src/bin/coreutils/src/
H A Dstdbuf.c155 if (access (candidate, X_OK) == 0)
/haiku-fatelf/src/libs/ncurses/progs/
H A Dtoe.c89 || access(path, R_OK | X_OK) != 0)
/haiku-fatelf/src/libs/print/libgutenprint/src/cups/
H A Di18n.c141 if (access(poname, 0) && strlen(ll_CC) > 2)

Completed in 375 milliseconds

1234