/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/ |
nlm_prot.h | 128 fsh_access access; member in struct:nlm_share
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/ |
Xw32defs.h | 24 #define access _access macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/ |
Xw32defs.h | 15 #define access _access macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/ |
nlm_prot.h | 128 fsh_access access; member in struct:nlm_share
|
/prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-gradle/4.9/ |
proguard-gradle-4.9.jar | |
/external/chromium/net/disk_cache/ |
backend_unittest.cc | 2093 DWORD access = GENERIC_READ | GENERIC_WRITE; local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_proxy.cc | 564 int KernelProxy::access(const char* path, int amode) { function in class:nacl_io::KernelProxy 574 error = mnt->Access(rel, amode);
|
/external/chromium_org/third_party/skia/src/gpu/gl/ |
GrGLProgram.cpp | 799 const GrTextureAccess& access = (*stage.getEffect())->textureAccess(s); local 800 GrGLTexture* texture = static_cast<GrGLTexture*>(access.getTexture()); 802 gpu->bindTexture(unit, access.getParams(), texture); [all...] |
/external/chromium_org/v8/src/ |
code-stubs-hydrogen.cc | 352 HObjectAccess access = HObjectAccess::ForAllocationSiteTransitionInfo(); local 353 HInstruction* boilerplate = Add<HLoadNamedField>(allocation_site, access); 431 HObjectAccess access = HObjectAccess::ForJSObjectOffset(i); local 432 Add<HStoreNamedField>(object, access, 433 Add<HLoadNamedField>(boilerplate, access)); 483 HObjectAccess access = HObjectAccess::ForCellValue(); local 484 store = Add<HStoreNamedField>(cell, access, object); 513 HObjectAccess access = casted_stub()->is_inobject() ? local 516 return AddInstruction(BuildLoadNamedField(GetParameter(0), access, NULL)); 528 HObjectAccess access = casted_stub()->is_inobject() local [all...] |
/external/skia/src/gpu/gl/ |
GrGLProgram.cpp | 799 const GrTextureAccess& access = (*stage.getEffect())->textureAccess(s); local 800 GrGLTexture* texture = static_cast<GrGLTexture*>(access.getTexture()); 802 gpu->bindTexture(unit, access.getParams(), texture); [all...] |
/external/valgrind/main/coregrind/ |
m_libcfile.c | 495 /* Check accessibility of a file. Returns zero for access granted, 497 Int VG_(access) ( const HChar* path, Bool irusr, Bool iwusr, Bool ixusr ) function [all...] |
/external/zlib/src/contrib/untgz/ |
untgz.c | 31 # define access(path,mode) _access(path,mode) macro 143 if (access(buffer,F_OK) == 0)
|
/libcore/luni/src/main/java/libcore/io/ |
Os.java | 30 public boolean access(String path, int mode) throws ErrnoException; method in interface:Os
|
Posix.java | 33 public native boolean access(String path, int mode) throws ErrnoException; method in class:Posix
|
/prebuilts/tools/common/asm-tools/ |
asm-debug-all-4.0.jar | |
asm-tree-4.0.jar | |
/prebuilts/tools/common/cglib/ |
cglib-2.2.3.jar | |
/external/chromium_org/gpu/command_buffer/client/ |
gles2_implementation.h | 245 : access(_access), 251 // access mode. Currently only GL_WRITE_ONLY is valid 252 GLenum access; member in struct:gpu::gles2::GLES2Implementation::MappedResource 267 GLenum access, 279 : MappedResource(access, shm_id, shm_mem, shm_offset), 304 GLenum access, 311 : MappedResource(access, shm_id, shm_mem, shm_offset), 337 // Checks for single threaded access. 502 void* MapImageCHROMIUMHelper(GLuint image_id, GLenum access); 638 // Used to check for single threaded access [all...] |
/external/chromium_org/net/disk_cache/ |
backend_unittest.cc | 2947 DWORD access = GENERIC_READ | GENERIC_WRITE; local [all...] |
/external/clang/lib/Sema/ |
SemaAccess.cpp | 1 //===---- SemaAccess.cpp - C++ Access Control -------------------*- C++ -*-===// 10 // This file provides Sema routines for C++ access control semantics. 36 /// SetMemberAccessSpecifier - Set the access specifier of a member. 37 /// Returns true on error (when the previous member decl access specifier 38 /// is different from the new member decl access specifier). 43 // Use the lexical access specifier. 48 // C++ [class.access.spec]p3: When a member is redeclared its access 87 // C++11 [class.access.nest]p1: 88 // A nested class is a member and as such has the same access 1759 AccessSpecifier access = target->getAccess(); local [all...] |
/frameworks/base/core/java/android/view/ |
ViewTreeObserver.java | 811 CopyOnWriteArray.Access<OnGlobalLayoutListener> access = listeners.start(); local 813 int count = access.size(); 815 access.get(i).onGlobalLayout(); 843 CopyOnWriteArray.Access<OnPreDrawListener> access = listeners.start(); local 845 int count = access.size(); 847 cancelDraw |= !(access.get(i).onPreDraw()); 894 CopyOnWriteArray.Access<OnScrollChangedListener> access = listeners.start(); local 926 CopyOnWriteArray.Access<OnComputeInternalInsetsListener> access = listeners.start(); local [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
BackingStore.java | 33 /** Access mode None: Frame data will not be accessed at all. */ 35 /** Access mode Bytes: Frame data will be accessed as a ByteBuffer. */ 37 /** Access mode Texture: Frame data will be accessed as a TextureSource. */ 39 /** Access mode RenderTarget: Frame data will be accessed as a RenderTarget. */ 41 /** Access mode Object: Frame data will be accessed as a generic Object. */ 43 /** Access mode Bitmap: Frame data will be accessed as a Bitmap. */ 45 /** Access mode Allocation: Frame data will be accessed as a RenderScript Allocation. */ 88 public Backing lockBacking(int mode, int access) { 89 Backing backing = fetchBacking(mode, access); 186 private Backing fetchBacking(int mode, int access) { 276 int access = backing.requiresGpu() ? ACCESS_BYTES : backing.readAccess(); local 508 int access = backing.readAccess(); local 603 int access = backing.readAccess(); local 724 int access = backing.readAccess(); local 843 int access = backing.readAccess(); local [all...] |
/prebuilts/devtools/tools/lib/ |
asm-tree-4.0.jar | |
/prebuilts/sdk/tools/lib/ |
asm-tree-4.0.jar | |
/prebuilts/tools/common/m2/internal/asm/asm-tree/3.3/ |
asm-tree-3.3.jar | |