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

1234567891011>>

/freebsd-11.0-release/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-11.0-release/sys/sys/
H A Dsysctl.h153 * This describes the access space for a sysctl request. This is needed
157 struct thread *td; /* used for access checking */
286 #define SYSCTL_ROOT_NODE(nbr, name, access, handler, descr) \
288 nbr, #name, CTLTYPE_NODE|(access), NULL, 0, \
290 CTASSERT(((access) & CTLTYPE) == 0 || \
291 ((access) & SYSCTL_CT_ASSERT_MASK) == CTLTYPE_NODE)
294 #define SYSCTL_NODE(parent, nbr, name, access, handler, descr) \
295 SYSCTL_OID_GLOBAL(parent, nbr, name, CTLTYPE_NODE|(access), \
297 CTASSERT(((access) & CTLTYPE) == 0 || \
298 ((access)
[all...]
/freebsd-11.0-release/lib/libpam/modules/pam_login_access/
H A DMakefile29 MAN= login.access.5 pam_login_access.8
/freebsd-11.0-release/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-11.0-release/sys/dev/io/
H A Diodev.h36 u_int access; member in struct:iodev_pio_req
/freebsd-11.0-release/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-11.0-release/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-11.0-release/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-11.0-release/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-11.0-release/sys/arm64/include/
H A Ddebug_monitor.h54 enum dbg_access_t access);
/freebsd-11.0-release/contrib/netbsd-tests/lib/libc/sys/
H A Dt_access.c48 static const char path[] = "access";
54 atf_tc_set_md_var(tc, "descr", "Test access(2) for EACCES");
75 ATF_REQUIRE(access(path, mode[i]) != 0);
90 atf_tc_set_md_var(tc, "descr", "Test access(2) for EFAULT");
101 ATF_REQUIRE(access(NULL, mode[i]) != 0);
106 ATF_REQUIRE(access((char *)-1, mode[i]) != 0);
114 atf_tc_set_md_var(tc, "descr", "Test access(2) for EINVAL");
121 atf_tc_expect_fail("arguments to access aren't validated; see "
126 ATF_REQUIRE(access("/usr", -1) != 0);
133 atf_tc_set_md_var(tc, "descr", "Test access(
[all...]
/freebsd-11.0-release/contrib/openbsm/bin/auditdistd/
H A Dfaccessat.h58 ret = access(path, mode);
/freebsd-11.0-release/lib/libefi/
H A Defi_nextvarname.c56 req.access = IODEV_EFIVAR_NEXTNAME;
H A Defi_setvar.c62 req.access = IODEV_EFIVAR_SETVAR;
H A Defi_getvar.c61 req.access = IODEV_EFIVAR_GETVAR;
/freebsd-11.0-release/sys/arm/include/
H A Ddebug_monitor.h60 enum dbg_access_t access __unused)
/freebsd-11.0-release/usr.bin/svn/lib/libsvn_fs/
H A DMakefile10 SRCS= access.c deprecated.c editor.c fs-loader.c
/freebsd-11.0-release/sys/contrib/ngatm/netnatm/msg/
H A Dparseie.awk97 access = 0
100 if($i == "access") {
101 access = 1
/freebsd-11.0-release/sys/ofed/include/rdma/
H A Dib_umem.h83 size_t size, int access, int dmasync);
85 size_t size, int access, int dmasync,
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_debugging.cc31 AsanThread::StackFrameAccess access; local
32 if (!t->GetStackFrameAccessByAddr(addr, &access))
35 if (!ParseFrameDescription(access.frame_descr, &vars)) {
40 if (access.offset <= vars[i].beg + vars[i].size) {
43 descr->region_address = addr - (access.offset - vars[i].beg);
/freebsd-11.0-release/sys/amd64/vmm/intel/
H A Dvmcs.c245 uint32_t base, limit, access; local
247 error = vmcs_seg_desc_encoding(seg, &base, &limit, &access);
259 if (access != VMCS_INVALID_ENCODING) {
260 if ((error = vmwrite(access, desc->access)) != 0)
273 uint32_t base, limit, access; local
276 error = vmcs_seg_desc_encoding(seg, &base, &limit, &access);
290 if (access != VMCS_INVALID_ENCODING) {
291 if ((error = vmread(access, &u64)) != 0)
293 desc->access
[all...]
H A Dvmx_msr.h62 int msr_bitmap_change_access(char *bitmap, u_int msr, int access);
/freebsd-11.0-release/sys/amd64/vmm/amd/
H A Dvmcb.c144 "Invalid size %d for VMCB access: %d", bytes);
370 * Map seg_desc access to VMCB attribute format.
375 attrib = ((desc->access & 0xF000) >> 4) | (desc->access & 0xFF);
376 if (SEG_DESC_UNUSABLE(desc->access)) {
418 desc->access = 0;
421 /* Map seg_desc access to VMCB attribute format */
422 desc->access = ((seg->attrib & 0xF00) << 4) |
427 * with a NULL selector (aka unusable). The 'desc->access'
436 if ((desc->access
[all...]
/freebsd-11.0-release/contrib/gcc/config/i386/
H A Dxm-djgpp.h63 else if (access (djgpp, R_OK) == 0) \

Completed in 292 milliseconds

1234567891011>>