Home
last modified time | relevance | path

Searched full:access (Results 1 – 25 of 5837) sorted by relevance

12345678910>>...234

/freebsd-src/sys/sys/
H A Dsysctl.h155 * This describes the access space for a sysctl request. This is needed
160 struct thread *td; /* used for access checking */
332 #define SYSCTL_ROOT_NODE(nbr, name, access, handler, descr) \ argument
334 nbr, #name, CTLTYPE_NODE|(access), NULL, 0, \
336 CTASSERT(((access) & CTLTYPE) == 0 || \
337 ((access) & SYSCTL_CT_ASSERT_MASK) == CTLTYPE_NODE)
340 #define SYSCTL_NODE(parent, nbr, name, access, handler, descr) \ argument
341 SYSCTL_NODE_WITH_LABEL(parent, nbr, name, access, handler, descr, NULL)
343 #define SYSCTL_NODE_WITH_LABEL(parent, nbr, name, access, handler, descr, label) \ argument
344 SYSCTL_OID_GLOBAL(parent, nbr, name, CTLTYPE_NODE|(access), \
350 SYSCTL_ADD_NODE(ctx,parent,nbr,name,access,handler,descr) global() argument
354 SYSCTL_ADD_NODE_WITH_LABEL(ctx,parent,nbr,name,access,handler,descr,label) global() argument
363 SYSCTL_ADD_ROOT_NODE(ctx,nbr,name,access,handler,descr) global() argument
374 SYSCTL_STRING(parent,nbr,name,access,arg,len,descr) global() argument
381 SYSCTL_ADD_STRING(ctx,parent,nbr,name,access,arg,len,descr) global() argument
393 SYSCTL_CONST_STRING(parent,nbr,name,access,arg,descr) global() argument
400 SYSCTL_ADD_CONST_STRING(ctx,parent,nbr,name,access,arg,descr) global() argument
413 SYSCTL_BOOL(parent,nbr,name,access,ptr,val,descr) global() argument
420 SYSCTL_ADD_BOOL(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
432 SYSCTL_S8(parent,nbr,name,access,ptr,val,descr) global() argument
440 SYSCTL_ADD_S8(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
452 SYSCTL_U8(parent,nbr,name,access,ptr,val,descr) global() argument
460 SYSCTL_ADD_U8(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
472 SYSCTL_S16(parent,nbr,name,access,ptr,val,descr) global() argument
480 SYSCTL_ADD_S16(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
492 SYSCTL_U16(parent,nbr,name,access,ptr,val,descr) global() argument
500 SYSCTL_ADD_U16(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
512 SYSCTL_S32(parent,nbr,name,access,ptr,val,descr) global() argument
520 SYSCTL_ADD_S32(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
532 SYSCTL_U32(parent,nbr,name,access,ptr,val,descr) global() argument
540 SYSCTL_ADD_U32(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
552 SYSCTL_S64(parent,nbr,name,access,ptr,val,descr) global() argument
560 SYSCTL_ADD_S64(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
572 SYSCTL_U64(parent,nbr,name,access,ptr,val,descr) global() argument
580 SYSCTL_ADD_U64(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
592 SYSCTL_INT(parent,nbr,name,access,ptr,val,descr) global() argument
595 SYSCTL_INT_WITH_LABEL(parent,nbr,name,access,ptr,val,descr,label) global() argument
603 SYSCTL_ADD_INT(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
615 SYSCTL_UINT(parent,nbr,name,access,ptr,val,descr) global() argument
623 SYSCTL_ADD_UINT(ctx,parent,nbr,name,access,ptr,val,descr) global() argument
635 SYSCTL_LONG(parent,nbr,name,access,ptr,val,descr) global() argument
643 SYSCTL_ADD_LONG(ctx,parent,nbr,name,access,ptr,descr) global() argument
655 SYSCTL_ULONG(parent,nbr,name,access,ptr,val,descr) global() argument
663 SYSCTL_ADD_ULONG(ctx,parent,nbr,name,access,ptr,descr) global() argument
675 SYSCTL_QUAD(parent,nbr,name,access,ptr,val,descr) global() argument
683 SYSCTL_ADD_QUAD(ctx,parent,nbr,name,access,ptr,descr) global() argument
694 SYSCTL_UQUAD(parent,nbr,name,access,ptr,val,descr) global() argument
702 SYSCTL_ADD_UQUAD(ctx,parent,nbr,name,access,ptr,descr) global() argument
713 SYSCTL_ADD_UAUTO(ctx,parent,nbr,name,access,ptr,descr) global() argument
734 SYSCTL_COUNTER_U64(parent,nbr,name,access,ptr,descr) global() argument
743 SYSCTL_ADD_COUNTER_U64(ctx,parent,nbr,name,access,ptr,descr) global() argument
755 SYSCTL_COUNTER_U64_ARRAY(parent,nbr,name,access,ptr,len,descr) global() argument
764 SYSCTL_ADD_COUNTER_U64_ARRAY(ctx,parent,nbr,name,access,ptr,len,descr) global() argument
777 SYSCTL_OPAQUE(parent,nbr,name,access,ptr,len,fmt,descr) global() argument
784 SYSCTL_ADD_OPAQUE(ctx,parent,nbr,name,access,ptr,len,fmt,descr) global() argument
794 SYSCTL_STRUCT(parent,nbr,name,access,ptr,type,descr) global() argument
802 SYSCTL_ADD_STRUCT(ctx,parent,nbr,name,access,ptr,type,descr) global() argument
813 SYSCTL_PROC(parent,nbr,name,access,ptr,arg,handler,fmt,descr) global() argument
818 SYSCTL_ADD_PROC(ctx,parent,nbr,name,access,ptr,arg,handler,fmt,descr) global() argument
827 SYSCTL_UMA_MAX(parent,nbr,name,access,ptr,descr) global() argument
834 SYSCTL_ADD_UMA_MAX(ctx,parent,nbr,name,access,ptr,descr) global() argument
846 SYSCTL_UMA_CUR(parent,nbr,name,access,ptr,descr) global() argument
853 SYSCTL_ADD_UMA_CUR(ctx,parent,nbr,name,access,ptr,descr) global() argument
865 SYSCTL_SBINTIME_USEC(parent,nbr,name,access,ptr,descr) global() argument
871 SYSCTL_ADD_SBINTIME_USEC(ctx,parent,nbr,name,access,ptr,descr) global() argument
883 SYSCTL_SBINTIME_MSEC(parent,nbr,name,access,ptr,descr) global() argument
889 SYSCTL_ADD_SBINTIME_MSEC(ctx,parent,nbr,name,access,ptr,descr) global() argument
901 SYSCTL_TIMEVAL_SEC(parent,nbr,name,access,ptr,descr) global() argument
907 SYSCTL_ADD_TIMEVAL_SEC(ctx,parent,nbr,name,access,ptr,descr) global() argument
[all...]
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_wlan/
H A DBEGEMOT-WIRELESS-MIB.txt263 MAX-ACCESS not-accessible
272 MAX-ACCESS not-accessible
293 MAX-ACCESS read-only
301 MAX-ACCESS read-create
309 MAX-ACCESS read-create
327 MAX-ACCESS read-create
340 MAX-ACCESS read-create
348 MAX-ACCESS read-create
357 MAX-ACCESS read-create
366 MAX-ACCESS read-create
[all …]
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_pf/
H A DBEGEMOT-PF-MIB.txt77 MAX-ACCESS read-only
86 MAX-ACCESS read-only
97 MAX-ACCESS read-only
105 MAX-ACCESS read-only
119 MAX-ACCESS read-only
127 MAX-ACCESS read-only
135 MAX-ACCESS read-only
143 MAX-ACCESS read-only
151 MAX-ACCESS read-only
159 MAX-ACCESS read-only
[all …]
/freebsd-src/contrib/bsnmp/snmp_ntp/
H A DNTP-PROXY-MIB.txt94 MAX-ACCESS not-accessible
102 MAX-ACCESS not-accessible
116 MAX-ACCESS not-accessible
124 MAX-ACCESS read-create
136 MAX-ACCESS not-accessible
144 MAX-ACCESS not-accessible
171 MAX-ACCESS read-only
179 MAX-ACCESS read-only
187 MAX-ACCESS read-only
195 MAX-ACCESS read-only
[all …]
H A DNTP-MIB.txt83 MAX-ACCESS read-only
92 MAX-ACCESS read-only
104 MAX-ACCESS read-only
114 MAX-ACCESS read-only
124 MAX-ACCESS read-only
135 MAX-ACCESS read-only
148 MAX-ACCESS read-only
158 MAX-ACCESS read-only
168 MAX-ACCESS read-only
179 MAX-ACCESS read-only
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/arm64/
H A Drecommended.json3 "PublicDescription": "Attributable Level 1 data cache access, read",
6 "BriefDescription": "L1D cache access, read"
9 "PublicDescription": "Attributable Level 1 data cache access, write",
12 "BriefDescription": "L1D cache access, write"
69 "PublicDescription": "Attributable Level 1 data or unified TLB access, read",
72 "BriefDescription": "L1D tlb access, read"
75 "PublicDescription": "Attributable Level 1 data or unified TLB access, write",
78 "BriefDescription": "L1D tlb access, write"
81 "PublicDescription": "Attributable Level 2 data cache access, read",
84 "BriefDescription": "L2D cache access, read"
[all …]
H A Darmv8-recommended.json3 "PublicDescription": "Attributable Level 1 data cache access, read",
6 "BriefDescription": "L1D cache access, read"
9 "PublicDescription": "Attributable Level 1 data cache access, write",
12 "BriefDescription": "L1D cache access, write"
69 "PublicDescription": "Attributable Level 1 data or unified TLB access, read",
72 "BriefDescription": "L1D tlb access, read"
75 "PublicDescription": "Attributable Level 1 data or unified TLB access, write",
78 "BriefDescription": "L1D tlb access, write"
81 "PublicDescription": "Attributable Level 2 data cache access, read",
84 "BriefDescription": "L2D cache access, read"
[all …]
/freebsd-src/sys/dev/acpica/
H A Dacpi_smbus.h50 /* access: READ WRITE WORD */
54 * access: READ WRITE WORD
61 * access: READ WRITE WORD
67 /* access: READ WRITE WORD */
80 * access: READ WRITE WORD
87 * access: READ WORD
94 * access: READ WORD
101 * access: READ WORD */
105 * access: READ WORD
112 * access: READ WORD
[all …]
/freebsd-src/sys/dev/qlnx/qlnxe/
H A Dreg_addr.h32 … 0x001d00UL //Access:R DataWidth:0x2…
37 … 0x001d04UL //Access:RW DataWidth:0x2…
42 … 0x001d08UL //Access:WR DataWidth:0x2…
47 … 0x001d0cUL //Access:RC DataWidth:0x2…
52 … 0x001d10UL //Access:RW DataWidth:0x1…
53 … 0x001d14UL //Access:RW DataWidth:0x8…
54 … 0x001d18UL //Access:RW DataWidth:0x4…
55 … 0x001d1cUL //Access:RW DataWidth:0x2…
56 … 0x001d20UL //Access:RW DataWidth:0x4…
57 … 0x001d24UL //Access:RW DataWidth:0x4…
[all …]
/freebsd-src/tests/sys/cddl/zfs/tests/acl/nontrivial/
H A Dzfs_acl_chmod_rwx_004_pos.ksh37 # override existed access rule.
41 # 2. Loop the specified access one by one.
56 function check_access #log user node access rflag
61 typeset access=$4
64 if [[ $rflag == "allow" && $access == execute ]]; then
65 rwx_node $user $node $access
72 log_note "SUCCESS: rwx_node $user $node $access"
74 log_fail "FAIL: rwx_node $user $node $access"
77 $log rwx_node $user $node $access
81 function verify_explicit_ACL_rule #node access flag
[all …]
/freebsd-src/contrib/bsnmp/snmpd/
H A DBEGEMOT-SNMPD.txt104 MAX-ACCESS read-write
114 MAX-ACCESS read-write
124 MAX-ACCESS read-write
127 "Disables all access to the CommunityTable from SNMP. Once
134 MAX-ACCESS read-write
142 MAX-ACCESS read-only
159 MAX-ACCESS not-accessible
168 MAX-ACCESS not-accessible
183 MAX-ACCESS not-accessible
192 MAX-ACCESS not-accessible
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/x86/ivybridge/
H A Duncore-cache.json3 … "BriefDescription": "L3 Lookup any request that access cache and found line in E or S-state.",
8 … "PublicDescription": "L3 Lookup any request that access cache and found line in E or S-state.",
13 "BriefDescription": "L3 Lookup any request that access cache and found line in I-state.",
18 "PublicDescription": "L3 Lookup any request that access cache and found line in I-state.",
23 "BriefDescription": "L3 Lookup any request that access cache and found line in M-state.",
28 "PublicDescription": "L3 Lookup any request that access cache and found line in M-state.",
33 "BriefDescription": "L3 Lookup any request that access cache and found line in MESI-state.",
38 … "PublicDescription": "L3 Lookup any request that access cache and found line in MESI-state.",
43 …"BriefDescription": "L3 Lookup external snoop request that access cache and found line in E or S-s…
48 …"PublicDescription": "L3 Lookup external snoop request that access cache and found line in E or S-…
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/x86/haswell/
H A Duncore-cache.json3 … "BriefDescription": "L3 Lookup any request that access cache and found line in E or S-state.",
8 … "PublicDescription": "L3 Lookup any request that access cache and found line in E or S-state.",
13 "BriefDescription": "L3 Lookup any request that access cache and found line in I-state.",
18 "PublicDescription": "L3 Lookup any request that access cache and found line in I-state.",
23 "BriefDescription": "L3 Lookup any request that access cache and found line in M-state.",
28 "PublicDescription": "L3 Lookup any request that access cache and found line in M-state.",
33 "BriefDescription": "L3 Lookup any request that access cache and found line in MESI-state.",
38 … "PublicDescription": "L3 Lookup any request that access cache and found line in MESI-state.",
43 …"BriefDescription": "L3 Lookup external snoop request that access cache and found line in E or S-s…
48 …"PublicDescription": "L3 Lookup external snoop request that access cache and found line in E or S-…
[all …]
H A Duncore.json115 "BriefDescription": "L3 Lookup read request that access cache and found line in M-state.",
116 "PublicDescription": "L3 Lookup read request that access cache and found line in M-state.",
127 "BriefDescription": "L3 Lookup write request that access cache and found line in M-state.",
128 "PublicDescription": "L3 Lookup write request that access cache and found line in M-state.",
139 …"BriefDescription": "L3 Lookup external snoop request that access cache and found line in M-state.…
140 …"PublicDescription": "L3 Lookup external snoop request that access cache and found line in M-state…
151 "BriefDescription": "L3 Lookup any request that access cache and found line in M-state.",
152 "PublicDescription": "L3 Lookup any request that access cache and found line in M-state.",
163 "BriefDescription": "L3 Lookup read request that access cache and found line in I-state.",
164 "PublicDescription": "L3 Lookup read request that access cache and found line in I-state.",
[all …]
/freebsd-src/lib/libpmc/pmu-events/arch/x86/sandybridge/
H A Duncore-cache.json3 … "BriefDescription": "L3 Lookup any request that access cache and found line in E or S-state.",
8 … "PublicDescription": "L3 Lookup any request that access cache and found line in E or S-state.",
13 "BriefDescription": "L3 Lookup any request that access cache and found line in I-state.",
18 "PublicDescription": "L3 Lookup any request that access cache and found line in I-state.",
23 "BriefDescription": "L3 Lookup any request that access cache and found line in M-state.",
28 "PublicDescription": "L3 Lookup any request that access cache and found line in M-state.",
33 "BriefDescription": "L3 Lookup any request that access cache and found line in MESI-state.",
38 … "PublicDescription": "L3 Lookup any request that access cache and found line in MESI-state.",
43 …"BriefDescription": "L3 Lookup external snoop request that access cache and found line in E or S-s…
48 …"PublicDescription": "L3 Lookup external snoop request that access cache and found line in E or S-…
[all …]
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_hast/
H A DBEGEMOT-HAST-MIB.txt78 MAX-ACCESS read-only
89 MAX-ACCESS not-accessible
97 MAX-ACCESS not-accessible
136 MAX-ACCESS read-only
144 MAX-ACCESS read-only
152 MAX-ACCESS read-write
160 MAX-ACCESS read-only
168 MAX-ACCESS read-only
177 MAX-ACCESS read-only
190 MAX-ACCESS read-only
[all …]
/freebsd-src/share/man/man9/
H A Dg_access.930 .Nd "control access to GEOM consumers and their providers"
38 function allows to open, close, and generally change access to the provider
46 represent relative read, write, and exclusive access count changes.
47 Read and write access counts are self explanatory, and
48 exclusive access counts deny write access to other interested parties.
49 A provider's access count is the sum of the access counts of all
60 The intended change must not result in a negative access count.
71 The provider's geom must have an access method defined (e.g.,
72 .Va gp->access ) .
88 Create a consumer, attach it to a given provider, gain read access and
[all …]
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_bridge/
H A DBEGEMOT-BRIDGE-MIB.txt117 MAX-ACCESS not-accessible
126 MAX-ACCESS not-accessible
144 MAX-ACCESS read-only
153 MAX-ACCESS read-only
161 MAX-ACCESS read-only
174 MAX-ACCESS read-only
183 MAX-ACCESS read-create
196 MAX-ACCESS not-accessible
205 MAX-ACCESS not-accessible
225 MAX-ACCESS read-only
[all …]
/freebsd-src/usr.sbin/bsnmpd/modules/snmp_netgraph/
H A DBEGEMOT-NETGRAPH.txt59 "The MIB for the NetGraph access module for SNMP."
129 MAX-ACCESS read-only
140 MAX-ACCESS read-write
150 MAX-ACCESS read-write
159 MAX-ACCESS read-write
175 MAX-ACCESS read-only
184 MAX-ACCESS read-only
192 MAX-ACCESS read-only
202 MAX-ACCESS read-only
210 MAX-ACCESS read-only
[all …]
/freebsd-src/contrib/ntp/ntpsnmpd/
H A Dntpv4-mib.mib127 MAX-ACCESS read-only
135 MAX-ACCESS read-only
144 MAX-ACCESS read-only
152 MAX-ACCESS read-only
162 MAX-ACCESS read-only
172 MAX-ACCESS read-only
181 MAX-ACCESS read-only
202 MAX-ACCESS read-only
225 MAX-ACCESS read-only
234 MAX-ACCESS read-only
[all …]
/freebsd-src/contrib/tcp_wrappers/
H A Dhosts_access.53 hosts_access \- format of host access control files
5 This manual page describes a simple access control language that is
11 An extended version of the access control language is described in the
19 .SH ACCESS CONTROL FILES
20 The access control software consults two files. The search stops
23 Access will be granted when a (daemon,client) pair matches an entry in
26 Otherwise, access will be denied when a (daemon,client) pair matches an
29 Otherwise, access will be granted.
31 A non-existing access control file is treated as if it were an empty
32 file. Thus, access control can be turned off by providing no access
[all …]
/freebsd-src/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp1 //===---- SemaAccess.cpp - C++ Access Control -------------------*- C++ -*-===//
9 // This file provides Sema routines for C++ access control semantics.
41 // Use the lexical access specifier. in SetMemberAccessSpecifier()
46 // C++ [class.access.spec]p3: When a member is redeclared its access in SetMemberAccessSpecifier()
86 // class template, but for access purposes behaves like the constructor in EffectiveContext()
99 // C++11 [class.access.nest]p1: in EffectiveContext()
100 // A nested class is a member and as such has the same access in EffectiveContext()
102 // C++11 [class.access]p2: in EffectiveContext()
103 // A member of a class can also access al in EffectiveContext()
754 HasAccess(Sema & S,const EffectiveContext & EC,const CXXRecordDecl * NamingClass,AccessSpecifier Access,const AccessTarget & Target) HasAccess() argument
1521 AccessSpecifier Access = DD.getAccess(); HandleDependentAccessCheck() local
1625 AccessSpecifier Access = Dtor->getAccess(); CheckDestructorAccess() local
1824 AccessSpecifier access = target->getAccess(); CheckFriendAccess() local
[all...]
/freebsd-src/lib/libsys/
H A Daccess.229 .Dt ACCESS 2
32 .Nm access ,
41 .Fn access "const char *path" "int mode"
48 .Fn access ,
52 system calls report whether an attempt to access the file designated
89 the effective user ID and the group access list
92 .Fn access
96 and the rest of the group access list.
102 for additional information on file access permissions and real
108 .Fn access
[all...]
/freebsd-src/bin/setfacl/
H A Dsetfacl.146 utility sets discretionary access control information on
79 access ACL entries.
143 from the access or default ACL of the specified files.
150 from the access or default ACL of the specified files.
157 an ACL tag, an ACL qualifier, and discretionary access
166 specifying the access
171 specifying the access granted to the file owning group
176 specifying the access
182 specifying the maximum access
195 ACL entries, an empty field specifies access granted to the
[all …]
/freebsd-src/lib/libc/db/man/
H A Ddbopen.333 .Nd "database access methods"
93 .\"Do the necessary locking in the database to support concurrent access.
94 .\"If concurrent access is not needed or the database is read-only this
100 .\"Necessary for concurrent access.
124 argument is a pointer to an access method specific structure described
125 in the access method's manual page.
130 each access method will use defaults appropriate for the system
131 and the access method.
168 The type of the underlying access method (and file format).
216 underlying files used by the access method.
[all …]

12345678910>>...234