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

1234567891011>>

/freebsd-10-stable/contrib/ntp/lib/isc/
H A Dfsaccess.c38 isc_fsaccess_add(int trustee, int permission, isc_fsaccess_t *access) { argument
43 *access |= permission;
46 *access |= (permission << GROUP);
49 *access |= (permission << OTHER);
53 isc_fsaccess_remove(int trustee, int permission, isc_fsaccess_t *access) { argument
59 *access &= ~permission;
62 *access &= ~(permission << GROUP);
65 *access &= ~(permission << OTHER);
69 check_bad_bits(isc_fsaccess_t access, isc_boolean_t is_dir) { argument
94 if ((access
[all...]
/freebsd-10-stable/lib/libpam/modules/pam_login_access/
H A DMakefile29 MAN= login.access.5 pam_login_access.8
/freebsd-10-stable/sys/sys/
H A Dsysctl.h148 * This describes the access space for a sysctl request. This is needed
152 struct thread *td; /* used for access checking */
265 #define SYSCTL_ROOT_NODE(nbr, name, access, handler, descr) \
266 SYSCTL_NODE(, nbr, name, access, handler, descr); \
267 CTASSERT(((access) & CTLTYPE) == 0 || \
268 ((access) & SYSCTL_CT_ASSERT_MASK) == CTLTYPE_NODE)
271 #define SYSCTL_NODE(parent, nbr, name, access, handler, descr) \
273 SYSCTL_OID(parent, nbr, name, CTLTYPE_NODE|(access), \
275 CTASSERT(((access) & CTLTYPE) == 0 || \
276 ((access)
[all...]
/freebsd-10-stable/tools/regression/ia64/unaligned/
H A Dunaligned.t39 local ($nr, $access, $type, $size, $postinc) = @_;
40 local $test = "${access}_${type}_${size}_${postinc}";
44 $st = system("cc -o $tmpfile -DACCESS=$access -DTYPE=$type -DSIZE=$size -DPOSTINC=$postinc -Wall -O -g $srcdir/test.c");
84 foreach $access (@accesses) {
86 $_ = "$access $postinc";
90 run ++$nr, $access, $type, $size, $postinc;
/freebsd-10-stable/contrib/ntp/lib/isc/include/isc/
H A Dfsaccess.h24 * \brief The ISC filesystem access module encapsulates the setting of file
25 * and directory access permissions into one API that is meant to be
29 * are POSIX and Windows NT 4.0 and later. The Windows NT access model is
60 * unless the directory path disallows complete access somewhere along
93 * The Windows standard access right "DELETE" doesn't have a direct
117 * \li What NT access right controls the ability to rename a file?
128 * granting or denying access. Because this functionality is
168 isc_fsaccess_add(int trustee, int permission, isc_fsaccess_t *access);
171 isc_fsaccess_remove(int trustee, int permission, isc_fsaccess_t *access);
174 isc_fsaccess_set(const char *path, isc_fsaccess_t access);
[all...]
/freebsd-10-stable/sys/dev/io/
H A Diodev.h36 u_int access; member in struct:iodev_pio_req
/freebsd-10-stable/contrib/ntp/lib/isc/unix/
H A Dfsaccess.c36 isc_fsaccess_set(const char *path, isc_fsaccess_t access) { argument
51 result = check_bad_bits(access, is_dir);
61 if ((access & bits) != 0) { \
63 access &= ~bits; \
87 INSIST(access == 0);
/freebsd-10-stable/lib/libc/i386/sys/
H A Di386_set_watch.c37 int access, struct dbreg * d)
52 switch (access) {
72 mask |= access;
36 i386_set_watch(int watchnum, unsigned int watchaddr, int size, int access, struct dbreg * d) argument
/freebsd-10-stable/release/picobsd/floppy.tree/etc/
H A Dsnmpd.conf28 # Setting up the access control lists to the agent
44 access public "" any noauth 0 system none none
45 access local "" any noauth 0 all all all
57 # access public "" any noauth 0 all none none
58 # access private "" any noauth 0 all all none
/freebsd-10-stable/contrib/ntp/lib/isc/win32/
H A Dunistd.h39 * access() related definitions for winXP
58 #define access _access macro
H A Dfsaccess.c21 * Note that Win32 does not have the concept of files having access
24 * different concept of controlling access.
26 * This code needs to be revisited to set up proper access control for
54 * In order to set or retrieve access information, we need to obtain
114 FAT_fsaccess_set(const char *path, isc_fsaccess_t access) { argument
124 if ((access & bits) != 0) { \
126 access &= ~bits; \
145 INSIST(access == 0);
154 NTFS_Access_Control(const char *filename, const char *user, int access, argument
197 caccess = access;
283 NTFS_fsaccess_set(const char *path, isc_fsaccess_t access, isc_boolean_t isdir) argument
299 isc_fsaccess_set(const char *path, isc_fsaccess_t access) argument
[all...]
/freebsd-10-stable/sys/net/
H A Dvnet.h238 * access it. If a caller may sleep while accessing the list, it must use
293 #define SYSCTL_VNET_INT(parent, nbr, name, access, ptr, val, descr) \
295 CTLTYPE_INT|CTLFLAG_MPSAFE|CTLFLAG_VNET|(access), \
297 #define SYSCTL_VNET_PROC(parent, nbr, name, access, ptr, arg, handler, \
299 CTASSERT(((access) & CTLTYPE) != 0); \
300 SYSCTL_OID(parent, nbr, name, CTLFLAG_VNET|(access), ptr, arg, \
302 #define SYSCTL_VNET_OPAQUE(parent, nbr, name, access, ptr, len, fmt, \
305 CTLTYPE_OPAQUE|CTLFLAG_VNET|(access), ptr, len, \
307 #define SYSCTL_VNET_STRING(parent, nbr, name, access, arg, len, descr) \
309 CTLTYPE_STRING|CTLFLAG_VNET|(access), \
[all...]
/freebsd-10-stable/usr.sbin/pkg_install/lib/
H A Dpkgng.c59 if (access(pkgngpath, F_OK) == 0)
/freebsd-10-stable/contrib/netbsd-tests/lib/libc/sys/
H A Dt_access.c49 static const char path[] = "access";
55 atf_tc_set_md_var(tc, "descr", "Test access(2) for EACCES");
76 ATF_REQUIRE(access(path, mode[i]) != 0);
91 atf_tc_set_md_var(tc, "descr", "Test access(2) for EFAULT");
102 ATF_REQUIRE(access(NULL, mode[i]) != 0);
107 ATF_REQUIRE(access((char *)-1, mode[i]) != 0);
115 atf_tc_set_md_var(tc, "descr", "Test access(2) for EINVAL");
122 atf_tc_expect_fail("arguments to access aren't validated; see "
127 ATF_REQUIRE(access("/usr", -1) != 0);
134 atf_tc_set_md_var(tc, "descr", "Test access(
[all...]
/freebsd-10-stable/sys/contrib/ngatm/netnatm/msg/
H A Die.def42 element connedsub 0x4d itu 25 access file=addr
45 element aal 0x58 itu 21 access
51 element bhli 0x5d itu 13 access
53 element blli 0x5f itu 17 access
59 element callingsub 0x6d itu 25 access file=addr
61 element calledsub 0x71 itu 25 access file=addr
65 element uu 0x7e itu UNI_UU_MAXLEN+4 access !pnni
H A Dparseie.awk97 access = 0
100 if($i == "access") {
101 access = 1
/freebsd-10-stable/sys/gnu/dts/arm/
H A Domap-gpmc-smsc911x.dtsi41 gpmc,access-ns = <120>;
42 gpmc,page-burst-access-ns = <20>;
48 gpmc,wr-access-ns = <0>;
H A Domap-gpmc-smsc9221.dtsi44 gpmc,access-ns = <36>;
45 gpmc,page-burst-access-ns = <0>;
49 gpmc,wr-access-ns = <42>;
H A Domap2430-sdp.dts63 gpmc,access-ns = <187>;
64 gpmc,page-burst-access-ns = <24>;
70 gpmc,wr-access-ns = <0>;
H A Domap2420-h4.dts46 gpmc,access-ns = <150>;
47 gpmc,page-burst-access-ns = <10>;
/freebsd-10-stable/lib/libefi/
H A Defi_nextvarname.c56 req.access = IODEV_EFIVAR_NEXTNAME;
H A Defi_setvar.c62 req.access = IODEV_EFIVAR_SETVAR;
/freebsd-10-stable/sys/ia64/include/
H A Diodev.h43 u_int access; member in struct:iodev_efivar_req
/freebsd-10-stable/contrib/openbsm/bin/auditdistd/
H A Dfaccessat.h58 ret = access(path, mode);
/freebsd-10-stable/usr.bin/svn/lib/libsvn_fs/
H A DMakefile10 SRCS= access.c deprecated.c editor.c fs-loader.c

Completed in 122 milliseconds

1234567891011>>