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

1 2 3 4 5 6 7

  /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/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));
file_win.cc 80 DWORD access = GENERIC_READ | GENERIC_WRITE | DELETE; local
81 platform_file_ = CreateFile(name.value().c_str(), access, sharing, NULL,
91 sync_platform_file_ = CreateFile(name.value().c_str(), access, sharing, NULL,
  /external/skia/src/gpu/gl/
GrGLEffect.cpp 27 const GrTextureAccess& access = (*effect)->textureAccess(index); local
28 EffectKey value = GrGLShaderBuilder::KeyForTextureAccess(access, caps) << index;
29 GrAssert(0 == (value & key)); // keys for each access ought not to overlap
  /external/apache-harmony/security/src/test/resources/PermissionCollection/
signedBKS.jar 
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_signed.jar 
  /external/openfst/src/include/fst/
rmfinalepsilon.h 42 vector<bool> access; local
45 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmfinalepsilon.h 36 vector<bool> access; local
39 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props);
  /external/webkit/Source/WebCore/rendering/style/
DataRef.h 38 T* access() function in class:WebCore::DataRef
  /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_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,
shared_memory_win.cc 161 DWORD access = STANDARD_RIGHTS_REQUIRED | FILE_MAP_READ; local
166 access |= FILE_MAP_WRITE;
180 &result, access, FALSE, options))
  /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
  /external/llvm/lib/Target/PowerPC/
PPCMCInstLower.cpp 103 unsigned access = MO.getTargetFlags() & PPCII::MO_ACCESS_MASK; local
105 switch (access) {
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestRemoteCall.java 98 store.exposeObject("access", new ServerAccessImpl());
113 ServerAccess access = store.getExposedObject("access", ServerAccess.class, true); local
114 boolean result = access.attachChild("Models/Oto/Oto.mesh.xml");
  /external/proguard/src/proguard/ant/
MemberSpecificationElement.java 39 private String access; field in class:MemberSpecificationElement
67 String access = memberSpecificationElement.access; local
116 new MemberSpecification(requiredAccessFlags(true, access),
117 requiredAccessFlags(false, access),
129 public void setAccess(String access)
131 this.access = access;
171 String access)
176 if (access != null
    [all...]
  /external/skia/src/gpu/gl/debug/
GrBufferObj.h 32 void access() { function in class:GrBufferObj
33 // cannot access the buffer if it is currently mapped

Completed in 866 milliseconds

1 2 3 4 5 6 7