Searched refs:called (Results 1 - 8 of 8) sorted by relevance

/art/test/952-invoke-custom/src/
H A DTestInvokeCustomWithConcurrentThreads.java43 // Array of counters for how many times each instantiated call site is called
44 private static final AtomicInteger[] called = new AtomicInteger[NUMBER_OF_THREADS]; field in class:TestInvokeCustomWithConcurrentThreads
79 called[index].getAndIncrement();
108 called[i] = new AtomicInteger(0);
129 if (called[i].get() != 0) {
131 votes += called[i].get();
153 " Call site instance #%02d was invoked % 2d times\n", i, called[i].get());
/art/runtime/entrypoints/quick/
H A Dquick_jni_entrypoints.cc196 ArtMethod* called,
200 bool critical_native = called->IsCriticalNative();
201 bool fast_native = called->IsFastNative();
210 jobject locked = called->IsSynchronized() ? handle_scope->GetHandle(0).ToJObject() : nullptr;
211 char return_shorty_char = called->GetShorty()[0];
H A Dquick_trampoline_entrypoints.cc714 // of the call-stack) corresponds to the called method.
1289 ArtMethod* called, mirror::Object* receiver, Thread* self, ArtMethod** sp)
1301 // Compute details about the called method (avoid GCs)
1305 const bool called_method_known_on_entry = !called->IsRuntimeMethod();
1392 called_method.dex_file = called->GetDexFile();
1393 called_method.index = called->GetDexMethodIndex();
1409 called = linker->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
1413 if (called != nullptr && called_method.dex_file->GetOatDexFile() != nullptr) {
1427 *method_entry = called;
1434 CHECK(!called
2356 ArtMethod* called = *sp; local
2506 ArtMethod* called = *sp; local
[all...]
/art/runtime/
H A Dcommon_throws.h96 ArtMethod* called,
H A Dcommon_throws.cc202 ArtMethod* called,
208 << " method " << ArtMethod::PrettyMethod(called).c_str();
200 ThrowIllegalAccessErrorClassForMethodDispatch(ObjPtr<mirror::Class> referrer, ObjPtr<mirror::Class> accessed, ArtMethod* called, InvokeType type) argument
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S278 // This macro must be called at the end of functions implementing
1702 blx artQuickResolutionTrampoline @ (Method* called, receiver, Thread*, SP)
2525 * The entrypoint is called through a thunk that differs across load kinds.
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S2207 jalr $t9 # (Method* called, receiver, Thread*, SP)
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S2091 jal artQuickResolutionTrampoline # (Method* called, receiver, Thread*, SP)

Completed in 377 milliseconds