HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 1 - 25 of 1340) 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
  /external/linux-kselftest/tools/testing/selftests/bpf/
dev_cgroup.c 17 short access = ctx->access_type >> 16; local
32 if (access & BPF_DEVCG_ACC_READ)
35 if (access & BPF_DEVCG_ACC_WRITE)
38 if (access & BPF_DEVCG_ACC_MKNOD)
44 /* Allow access to /dev/zero and /dev/random.
  /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/r16/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);
  /external/testng/src/test/java/test/access/
BasePrivateAccessConfigurationMethods.java 1 package test.access;
PrivateAccessConfigurationMethods.java 1 package test.access;
  /external/turbine/java/com/google/turbine/binder/bound/
BoundClass.java 38 /** Class access bits (see JVMS table 4.1). */
39 int access(); method in interface:BoundClass
PackageSourceBoundClass.java 60 public int access() { method in class:PackageSourceBoundClass
61 return base.access();
SourceBoundClass.java 29 private final int access; field in class:SourceBoundClass
36 int access,
41 this.access = access;
60 public int access() { method in class:SourceBoundClass
61 return access;
  /external/libunwind/doc/
unw_create_addr_space.tex 33 \Prog{Libunwind} uses a set of call-back routines to access the
61 \Type{int} \Func{access\_mem}(\Var{unw\_addr\_space\_t} \Var{as},\\
64 \Type{int} \Func{access\_reg}(\Var{unw\_addr\_space\_t} \Var{as},\\
67 \Type{int} \Func{access\_fpreg}(\Var{unw\_addr\_space\_t} \Var{as},\\
132 \subsection{access\_mem}
134 \Prog{Libunwind} invokes the \Func{access\_mem}() call-back to read
147 On successful completion, the \Func{access\_mem}()
151 \subsection{access\_reg}
153 \Prog{Libunwind} invokes the \Func{access\_reg}() call-back to read
166 On successful completion, the \Func{access\_reg}() call-back mus
    [all...]
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/
AbstractTest$ClassFilter.class 
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
InnerClassNode.java 61 * The access flags of the inner class as originally declared in the
64 public int access; field in class:InnerClassNode
78 * @param access the access flags of the inner class as originally declared
85 final int access)
90 this.access = access;
99 cv.visitInnerClass(name, outerName, innerName, access);
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
Subroutine.java 47 boolean[] access; field in class:Subroutine
60 this.access = new boolean[maxLocals];
68 result.access = new boolean[access.length];
69 System.arraycopy(access, 0, result.access, 0, access.length);
81 for (int i = 0; i < access.length; ++i) {
82 if (subroutine.access[i] && !access[i])
    [all...]
  /external/apache-harmony/support/src/test/resources/tests/resources/
hyts_signed.jar 
  /external/compiler-rt/lib/asan/
asan_debugging.cc 31 AsanThread::StackFrameAccess access; local
32 if (!t->GetStackFrameAccessByAddr(addr, &access))
35 if (!ParseFrameDescription(access.frame_descr, &vars)) {
40 if (access.offset <= vars[i].beg + vars[i].size) {
43 descr->region_address = addr - (access.offset - vars[i].beg);
  /external/parameter-framework/upstream/parameter/
BaseParameter.cpp 51 // Handle access
94 bool CBaseParameter::access(bool & /*bValue*/, bool /*bSet*/, function in class:CBaseParameter
100 bool CBaseParameter::access(std::vector<bool> & /*abValues*/, bool /*bSet*/, function in class:CBaseParameter
107 bool CBaseParameter::access(uint32_t & /*bValue*/, bool /*bSet*/, function in class:CBaseParameter
113 bool CBaseParameter::access(std::vector<uint32_t> & /*abValues*/, bool /*bSet*/, function in class:CBaseParameter
120 bool CBaseParameter::access(int32_t & /*bValue*/, bool /*bSet*/, function in class:CBaseParameter
126 bool CBaseParameter::access(std::vector<int32_t> & /*abValues*/, bool /*bSet*/, function in class:CBaseParameter
133 bool CBaseParameter::access(double & /*bValue*/, bool /*bSet*/, function in class:CBaseParameter
139 bool CBaseParameter::access(std::vector<double> & /*abValues*/, bool /*bSet*/, function in class:CBaseParameter
146 // String Access
147 bool CBaseParameter::access(string &strValue, bool bSet, function in class:CBaseParameter
175 bool CBaseParameter::access(std::vector<string> & \/*astrValues*\/, bool \/*bSet*\/, function in class:CBaseParameter
    [all...]
BitParameter.cpp 66 // Actual parameter access (tuning)
79 /// Value access
80 bool CBitParameter::access(bool &bValue, bool bSet, function in class:CBitParameter
83 // Check boolean access validity here
92 // Rely on integer access
100 if (!access(uiValue, bSet, parameterAccessContext)) {
113 bool CBitParameter::access(uint32_t &uiValue, bool bSet, function in class:CBitParameter
187 // Access from area configuration
  /external/v8/src/compiler/
js-context-specialization.cc 35 const ContextAccess& access = ContextAccessOf(node->op()); local
36 DCHECK_LE(new_depth, access.depth());
38 if (new_depth == access.depth() &&
44 new_depth, access.index(), access.immutable());
54 const ContextAccess& access = ContextAccessOf(node->op()); local
55 DCHECK_LE(new_depth, access.depth());
57 if (new_depth == access.depth() &&
63 jsgraph_->javascript()->StoreContext(new_depth, access.index());
72 const ContextAccess& access = ContextAccessOf(node->op()) local
120 const ContextAccess& access = ContextAccessOf(node->op()); local
    [all...]
  /libcore/support/src/test/java/tests/resources/
hyts_metainf.jar 
hyts_signed.jar 

Completed in 51 milliseconds

1 2 3 4 5 6 7 8 91011>>