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

1234567891011>>

/openbsd-current/regress/sys/kern/access/
H A DMakefile3 PROG= access
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/other/
H A Derror1.C12 inline int access(int i) { function in class:foo
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20020122-2.c8 extern int access( char* );
25 if (access (filename))
28 if (auth_file = access (filename))
/openbsd-current/etc/
H A Dunbound.conf14 access-control: 0.0.0.0/0 refuse
15 access-control: 127.0.0.0/8 allow
16 access-control: ::0/0 refuse
17 access-control: ::1 allow
H A Dnewsyslog.conf16 /var/www/logs/access.log 644 4 * $W0 Z "pkill -USR1 -u root -U root -x httpd"
/openbsd-current/gnu/usr.bin/binutils/gdb/rdi-share/
H A Ddbg_cp.h32 unsigned char access; /* see above (Access_xxx) */ member in struct:__anon4600
/openbsd-current/regress/sys/mfs_noperm/
H A Dnopermtest.c85 EXPECT_OK(access(mnt, F_OK));
86 EXPECT_ERRNO(access(mnt, R_OK), EACCES);
87 EXPECT_ERRNO(access(mnt, W_OK), EACCES);
88 EXPECT_ERRNO(access(mnt, X_OK), EACCES);
114 EXPECT_OK(access(".", R_OK | W_OK | X_OK));
130 EXPECT_OK(access("sub", R_OK | W_OK | X_OK));
/openbsd-current/gnu/llvm/libcxx/include/__ranges/
H A Ddangling.h14 #include <__ranges/access.h>
/openbsd-current/regress/lib/libc/sys/
H A Dt_access.c46 static const char path[] = "access";
52 atf_tc_set_md_var(tc, "descr", "Test access(2) for EACCES");
73 ATF_REQUIRE(access(path, mode[i]) != 0);
88 atf_tc_set_md_var(tc, "descr", "Test access(2) for EFAULT");
99 ATF_REQUIRE(access(NULL, mode[i]) != 0);
104 ATF_REQUIRE(access((char *)-1, mode[i]) != 0);
112 atf_tc_set_md_var(tc, "descr", "Test access(2) for EINVAL");
120 ATF_REQUIRE(access("/usr", -1) != 0);
127 atf_tc_set_md_var(tc, "descr", "Test access(2) for ENOTDIR");
148 ATF_REQUIRE(access("/et
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DUdtRecordCompleter.h88 lldb::AccessType access; member in struct:lldb_private::npdb::UdtRecordCompleter::Member
97 access(lldb::eAccessPublic), bitfield_width(0), base_offset(0) {}
99 clang::QualType qt, lldb::AccessType access, uint32_t bitfield_width)
101 qt(qt), access(access), bitfield_width(bitfield_width),
107 access, bitfield_width));
110 access = lldb::eAccessPublic;
122 lldb::AccessType access, uint64_t bitfield_width);
130 llvm::codeview::TypeIndex ti, llvm::codeview::MemberAccess access,
133 llvm::codeview::MemberAccess access,
98 Member(llvm::StringRef name, uint64_t bit_offset, uint64_t bit_size, clang::QualType qt, lldb::AccessType access, uint32_t bitfield_width) argument
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/Tooling/Transformer/
H A DStencil.h99 /// object bound to \p BaseId. The access is constructed idiomatically: if \p
103 Stencil access(llvm::StringRef BaseId, Stencil Member);
104 inline Stencil access(llvm::StringRef BaseId, llvm::StringRef Member) { function in namespace:clang::transformer
105 return access(BaseId, detail::makeStencil(Member));
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/
H A Dtemplate26.C59 find_parameter_in_stack(Stack<T1>& stack, Parameter<T2>& (T1::*access)())
64 if ((stack[i].*access)().is_set()) {
65 if (!have_result || (stack[i].*access)().overrides()) {
66 result = (stack[i].*access)().value();
/openbsd-current/gnu/usr.bin/perl/lib/File/
H A Dstat.t33 [atime => 'last access time'],
67 for my $access ('', 'use filetest "access";') {
69 my $desc = $access
70 ? "for -$op under use filetest 'access' $desc_tail"
77 } elsif ($w =~ /^File::stat ignores use filetest 'access'/) {
83 $rv = eval "$access; -$op \$stat";
98 unless $access;
104 if ($access && $op =~ /[rwxRXW]/) {
105 # these should all warn with filetest access
[all...]
/openbsd-current/gnu/usr.bin/perl/t/uni/
H A Dmethod.t106 like( F����::B��r::new("F����::B��r"), qr/F����::B��r=HASH/u, 'Can access new directly through a UTF-8 package.' );
107 like( F����::B��r->new, qr/F����::B��r=HASH/u, 'Can access new as a method through a UTF-8 package.' );
108 like( F����::B��r::n��w("F����::B��r"), qr/F����::B��r=HASH/u, 'Can access n��w directly through a UTF-8 package.' );
109 like( F����::B��r->n��w, qr/F����::B��r=HASH/u, 'Can access n��w as a method through a UTF-8 package.' );
121 like( F����::B��r->$new_ascii, qr/F����::B��r=HASH/u, "Can access \$new_ascii, [$new_ascii], stored in a scalar, as a method, through a UTF-8 package." );
122 like( F����::B��r->$new_latin, qr/F����::B��r=HASH/u, "Can access \$new_latin, [$new_latin], stored in a scalar, as a method, through a UTF-8 package." );
123 like( F����::B��r->$new_utf8, qr/F����::B��r=HASH/u, "Can access \$new_utf8, [$new_utf8], stored in a scalar, as a method, through a UTF-8 package." );
128 "Can't access [$newoct], stored in a scalar, as a method through a UTF-8 package." );
132 like( n��w F����::B��r, qr/F����::B��r=HASH/u, "Can access [n��w] as a method through a UTF-8 indirect object package.");
136 like( $pkg_latin_1->new, qr/F����::B��r=HASH/u, 'Can access ne
[all...]
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dfiletest.pm13 use filetest 'access'; # intuit harder
27 access rights, for example ACLs (Access Control Lists).
35 Currently, only the C<access> sub-pragma is implemented. It enables (or
36 disables) the use of access() when available, that is, on most UNIX systems and
43 additional features offered by access(). But you may encounter surprises
59 =head2 The "access" sub-pragma
61 UNIX and POSIX systems provide an abstract access() operating system call,
71 Because access() does not invoke stat() (at least not in a way visible
82 { use filetest 'access';
88 Of course, unless your OS does not implement access(), i
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_access.cpp11 // Definitions of memory access and function entry/exit entry points.
206 if (LIKELY(!(cur.access() & old.access())))
210 LIKELY(cur.access() == old.access() && old.IsRWWeakerOrEqual(typ))) {
224 // the current access info, so we are done.
234 # define LOAD_CURRENT_SHADOW(cur, shadow_mem) UNUSED int access = 0, shadow = 0
240 m128 access, AccessType typ) {
241 // Note: we could check if there is a larger access of the same type,
244 // access"
239 ContainsSameAccess(RawShadow* unused0, Shadow unused1, m128 shadow, m128 access, AccessType typ) argument
305 CheckRaces(ThreadState* thr, RawShadow* shadow_mem, Shadow cur, m128 shadow, m128 access, AccessType typ) argument
611 const m128 access = _mm_set1_epi32(static_cast<u32>(cur.raw())); local
[all...]
/openbsd-current/gnu/gcc/gcc/config/i386/
H A Dxm-djgpp.h63 else if (access (djgpp, R_OK) == 0) \
/openbsd-current/gnu/usr.bin/gcc/gcc/config/i386/
H A Dxm-djgpp.h72 else if (access (djgpp, R_OK) == 0) \
/openbsd-current/usr.sbin/ypserv/common/
H A Dyplog.c87 if (access(logfn, W_OK) == -1)
/openbsd-current/gnu/llvm/lldb/source/Host/windows/
H A DProcessLauncherWindows.cpp158 DWORD access = 0; local
163 access = GENERIC_READ;
168 access = GENERIC_WRITE;
176 HANDLE result = ::CreateFileW(wpath.c_str(), access, share, &secattr, create,
/openbsd-current/gnu/llvm/libcxx/include/__algorithm/
H A Dranges_generate_n.h20 #include <__ranges/access.h>
/openbsd-current/gnu/usr.bin/perl/os2/OS2/OS2-PrfDB/
H A DPrfDB.pm199 OS2::PrfDB - Perl extension for access to OS/2 setting database.
216 The extension provides both high-level and low-level access to .ini
219 =head2 High level access
221 High-level access is the tie-hash access via two packages:
231 file name (obtained via low-level access functions). In particular, 3
236 =head2 Low-level access
238 Low-level access functions reside in the package C<OS2::Prf>. They are
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/lib/
H A Dcp-support.exp54 # "class" or "struct" in the output, as long as the access specifiers all
75 # { field "access" "declaration" }
77 # the class has a data field with the given access type and the
80 # { method "access" "declaration" }
82 # the class has a member function with the given access type
119 # or might not emit a redundant initial access specifier, depending
239 # $actual_key as long as the access property of each field/method
243 "class" { set access "private" }
244 "struct" { set access "public" }
309 set access "
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/resize_policy/
H A Dcc_hash_max_collision_check_resize_trigger_imp.hpp200 PB_DS_STATIC_ASSERT(access, external_load_access);
215 PB_DS_STATIC_ASSERT(access, external_load_access);
/openbsd-current/usr.bin/which/
H A Dwhich.c78 /* To make access(2) do what we want */
105 access(prog, X_OK) == 0) {
133 access(filename, X_OK) == 0) {

Completed in 429 milliseconds

1234567891011>>