Searched defs:called (Results 1 - 3 of 3) sorted by relevance

/art/test/952-invoke-custom/generator/
H A DTestInvokeCustomWithConcurrentThreads.java49 // Array of counters for how many times each instantiated call site is called
50 private static final AtomicInteger[] called = new AtomicInteger[NUMBER_OF_THREADS]; field in class:TestInvokeCustomWithConcurrentThreads
83 called[index].getAndIncrement();
114 called[i] = new AtomicInteger(0);
135 if (called[i].get() != 0) {
137 votes += called[i].get();
159 i, called[i].get());
/art/runtime/
H A Dcommon_throws.cc193 ArtMethod* called,
199 << " method " << ArtMethod::PrettyMethod(called).c_str();
191 ThrowIllegalAccessErrorClassForMethodDispatch(ObjPtr<mirror::Class> referrer, ObjPtr<mirror::Class> accessed, ArtMethod* called, InvokeType type) argument
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc720 // of the call-stack) corresponds to the called method.
984 ArtMethod* called, mirror::Object* receiver, Thread* self, ArtMethod** sp)
996 // Compute details about the called method (avoid GCs)
1000 const bool called_method_known_on_entry = !called->IsRuntimeMethod();
1087 called_method.dex_file = called->GetDexFile();
1088 called_method.dex_method_index = called->GetDexMethodIndex();
1105 called = linker->ResolveMethod<ClassLinker::kForceICCECheck>(
1111 CHECK(!called->CheckIncompatibleClassChange(invoke_type))
1112 << called->PrettyMethod() << " " << invoke_type;
1114 // Refine called metho
2076 ArtMethod* called = *sp; local
2248 ArtMethod* called = *sp; local
[all...]

Completed in 93 milliseconds