HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 1 - 25 of 1340) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
access.cpp 32 int access(const char* path, int mode) { function
  /external/linux-kselftest/tools/testing/selftests/bpf/
dev_cgroup.c 17 short access = ctx->access_type >> 16; local
32 if (access & BPF_DEVCG_ACC_READ)
35 if (access & BPF_DEVCG_ACC_WRITE)
38 if (access & BPF_DEVCG_ACC_MKNOD)
44 /* Allow access to /dev/zero and /dev/random.
  /prebuilts/go/darwin-x86/src/runtime/
stubs_android.go 5 // Return values of access/connect/socket are the return values of the syscall
8 // int access(const char *, int)
10 func access(name *byte, mode int32) int32 func
  /prebuilts/go/linux-x86/src/runtime/
stubs_android.go 5 // Return values of access/connect/socket are the return values of the syscall
8 // int access(const char *, int)
10 func access(name *byte, mode int32) int32 func
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
universal_unistd.h 24 #define access _access macro
  /device/linaro/bootloader/edk2/StdLib/PosixLib/Gen/
access.c 2 Implementation of the Posix access() function.
27 The access() function checks the file, named by the pathname pointed to by
31 The value of Mode is either the bitwise-inclusive OR of the access
38 @param[in] Mode Access permissions to check for.
42 is indicated by errno. Values of errno specific to the access
46 access( function
  /external/javassist/src/main/javassist/bytecode/analysis/
Subroutine.java 31 private Set access = new HashSet(); field in class:Subroutine
47 public void access(int index) { method in class:Subroutine
48 access.add(new Integer(index));
52 return access.contains(new Integer(index));
56 return access;
  /external/compiler-rt/test/tsan/
unaligned_norace.cc 18 static void access(char *p, int sz, int rw) { function
55 access(p, sz1, true);
60 access(p, sz2, rw);
unaligned_race.cc 21 static NOINLINE void access(volatile char *p, int sz, int rw) { function
52 access(p, sz1, true);
  /external/testng/src/test/java/test/access/
BasePrivateAccessConfigurationMethods.java 1 package test.access;
PrivateAccessConfigurationMethods.java 1 package test.access;
  /external/turbine/java/com/google/turbine/binder/bound/
BoundClass.java 38 /** Class access bits (see JVMS table 4.1). */
39 int access(); method in interface:BoundClass
PackageSourceBoundClass.java 60 public int access() { method in class:PackageSourceBoundClass
61 return base.access();
SourceBoundClass.java 29 private final int access; field in class:SourceBoundClass
36 int access,
41 this.access = access;
60 public int access() { method in class:SourceBoundClass
61 return access;
  /external/libunwind/doc/
unw_create_addr_space.tex 33 \Prog{Libunwind} uses a set of call-back routines to access the
61 \Type{int} \Func{access\_mem}(\Var{unw\_addr\_space\_t} \Var{as},\\
64 \Type{int} \Func{access\_reg}(\Var{unw\_addr\_space\_t} \Var{as},\\
67 \Type{int} \Func{access\_fpreg}(\Var{unw\_addr\_space\_t} \Var{as},\\
132 \subsection{access\_mem}
134 \Prog{Libunwind} invokes the \Func{access\_mem}() call-back to read
147 On successful completion, the \Func{access\_mem}()
151 \subsection{access\_reg}
153 \Prog{Libunwind} invokes the \Func{access\_reg}() call-back to read
166 On successful completion, the \Func{access\_reg}() call-back mus
    [all...]