HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 1 - 25 of 1251) 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
  /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/r13/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);