HomeSort by relevance Sort by last modified time
    Searched defs:access (Results 1 - 25 of 732) 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/v8/test/mjsunit/compiler/
escape-analysis-representation.js 42 function access(value_track, value_break, deopt) { function
53 access(value_track, value_track(), deopt);
54 access(value_track, value_track(), deopt);
55 %OptimizeFunctionOnNextCall(access);
56 access(value_track, value_track(), deopt);
60 access(value_track, value_break(), deopt);
62 // Clear type feedback of the access function for next run.
63 %ClearFunctionTypeFeedback(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/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/lldb/test/lang/cpp/static_members/
main.cpp 19 long access() { function in struct:A
33 my_a.access(); // breakpoint 1
  /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/apache-harmony/security/src/test/resources/PermissionCollection/
signedBKS.jar 
  /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/mockito/cglib-and-asm/src/org/mockito/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/mockito/cglib-and-asm/src/org/mockito/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);
76 for (int i = 0; i < access.length; ++i) {
77 if (subroutine.access[i] && !access[i]) {
    [all...]
  /external/openfst/src/include/fst/
rmfinalepsilon.h 42 vector<bool> access; local
45 SccVisitor<A> scc_visitor(0, &access, &coaccess, &props);
  /external/selinux/sepolgen/tests/
test_interfaces.py 21 import sepolgen.access as access namespace
38 av = access.AccessVector(['foo', 'bar', 'file', 'read'])
179 avs_a = access.AccessVectorSet()
209 self.assertEquals(len(interface.access), 2)
211 # Check the access vectors
214 ret = compare_avsets(comp_avs, interface.access)
236 self.assertTrue(compare_avsets(comp_avs, interface.access))
242 self.assertTrue(compare_avsets(comp_avs, interface.access))
257 self.assertTrue(compare_avsets(comp_avs, interface.access))
    [all...]
test_matching.py 24 import sepolgen.access as access namespace
137 a = access.AccessVector(["foo_t", "usr_t", "dir", "create"])
  /external/v8/src/compiler/
js-context-specialization.cc 70 ContextAccess access = OpParameter<ContextAccess>(node); local
74 for (int i = access.depth(); i > 0; --i) {
78 // If the access itself is mutable, only fold-in the parent.
79 if (!access.immutable()) {
80 // The access does not have to look up a parent, nothing to fold.
81 if (access.depth() == 0) {
85 0, access.index(), access.immutable());
92 Handle<Object>(context->get(access.index()), info_->isolate());
118 ContextAccess access = OpParameter<ContextAccess>(node) local
    [all...]
  /libcore/support/src/test/java/tests/resources/
hyts_signed.jar 
hyts_signed_ambiguousSignerArray.jar 
hyts_signed_authAttrs.jar 
hyts_signed_inc.jar 
hyts_signed_invalidChain.jar 
hyts_signed_sha256digest_sha256withecdsa.jar 
hyts_signed_sha256digest_sha256withrsa.jar 
hyts_signed_sha256withrsa.jar 
hyts_signed_sha512digest_sha512withecdsa.jar 

Completed in 510 milliseconds

1 2 3 4 5 6 7 8 91011>>