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

1 2 3 4 5 6 7 8 91011

  /bionic/libc/arch-arm/syscalls/
access.S 6 ENTRY(access) function
15 END(access)
  /bionic/libc/arch-mips/syscalls/
access.S 4 .globl access
6 .ent access
8 access: label
22 .end access
  /bionic/libc/arch-x86/syscalls/
access.S 6 ENTRY(access) function
24 END(access)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
access.c 8 int access(const char* path, int amode) { function
  /external/chromium_org/net/disk_cache/
cache_util_win.cc 30 // There is an error, but we share delete access so let's see if there is a
35 DWORD access = SYNCHRONIZE; local
37 name.value().c_str(), access, sharing, NULL, OPEN_EXISTING, 0, NULL));
  /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/chromium/net/disk_cache/
cache_util_win.cc 64 // There is an error, but we share delete access so let's see if there is a
69 DWORD access = SYNCHRONIZE; local
71 name.value().c_str(), access, sharing, NULL, OPEN_EXISTING, 0, NULL));
  /external/compiler-rt/lib/tsan/lit_tests/
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 22 static void access(char *p, int sz, int rw) { function
53 access(p, sz1, true);
  /external/apache-harmony/security/src/test/resources/PermissionCollection/
signedBKS.jar 
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_signed.jar 
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DataRef.h 38 T* access() function in class:WebCore::DataRef
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLEffect.cpp 29 const GrTextureAccess& access = (*drawEffect.effect())->textureAccess(index); local
30 EffectKey value = GrGLShaderBuilder::KeyForTextureAccess(access, caps) << index;
31 GrAssert(0 == (value & key)); // keys for each access ought not to overlap