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
  /external/openfst/src/include/fst/
rmfinalepsilon.h 42 vector<bool> access; local
45 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props);
  /external/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
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmfinalepsilon.h 36 vector<bool> access; local
39 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props);
  /frameworks/av/libvideoeditor/osal/src/
M4OSA_FileWriter.c 40 * @param fileModeAccess: (IN) File mode access
49 * @return M4ERR_FILE_BAD_MODE_ACCESS: the file mode access is not correct
194 * access (more than 2GBytes), the position is provided on a 64
200 * @param seekMode: (IN) Seek access mode
479 M4OSA_FileModeAccess access = pFileContext->access_mode; local
481 M4OSA_DEBUG_IF1(!(access & M4OSA_kFileRead), M4ERR_BAD_CONTEXT,
484 M4OSA_DEBUG_IF1(!(access & M4OSA_kFileWrite), M4ERR_BAD_CONTEXT,
  /libcore/support/src/test/java/tests/resources/
hyts_signed.jar 
hyts_signed_authAttrs.jar 
hyts_signed_inc.jar 
hyts_signed_sha256digest_sha256withrsa.jar 
hyts_signed_sha256withrsa.jar 
hyts_signed_sha512digest_sha512withecdsa.jar 
  /external/chromium/base/
platform_file_win.cc 50 DWORD access = (flags & PLATFORM_FILE_READ) ? GENERIC_READ : 0; local
52 access |= GENERIC_WRITE;
54 access |= FILE_WRITE_ATTRIBUTES;
70 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL,
  /external/chromium/chrome/browser/renderer_host/
web_cache_manager.h 80 // The access time for this renderer.
81 base::Time access; member in struct:WebCacheManager::RendererInfo

Completed in 536 milliseconds

1 2 3 4 5 6 7 8 91011