HomeSort by relevance Sort by last modified time
    Searched refs:target_method (Results 1 - 22 of 22) sorted by null

  /art/dex2oat/linker/arm/
relative_patcher_arm_base.h 124 UnprocessedMethodCallPatch(uint32_t patch_offset, MethodReference target_method)
125 : patch_offset_(patch_offset), target_method_(target_method) { }
relative_patcher_arm_base.cc 474 MethodReference target_method = unprocessed_method_call_patches_.front().GetTargetMethod(); local
481 if (target_method == method_ref) {
487 auto result = target_provider_->FindMethodOffset(target_method);
  /art/compiler/dex/
inline_method_analyser.cc 150 ArtMethod* target_method = Runtime::Current()->GetClassLinker()->LookupResolvedMethod( local
152 if (kIsDebugBuild && target_method != nullptr) {
153 CHECK(!target_method->IsStatic());
154 CHECK(target_method->IsConstructor());
155 CHECK(target_method->GetDeclaringClass() == method->GetDeclaringClass() ||
156 target_method->GetDeclaringClass() == method->GetDeclaringClass()->GetSuperClass());
158 return target_method;
312 ArtMethod* target_method = GetTargetConstructor(method, &instruction); local
313 if (target_method == nullptr) {
318 if (target_method->GetDeclaringClass() == method->GetDeclaringClass() &
    [all...]
  /art/runtime/
method_handles.cc 646 ArtMethod* target_method)
650 // For virtual and interface methods ensure target_method points to
660 ObjPtr<mirror::Class> declaring_class(target_method->GetDeclaringClass());
669 target_method, kRuntimePointerSize);
674 if (target_method->IsConstructor() && target_method->GetDeclaringClass()->IsStringClass()) {
676 return WellKnownClasses::StringInitToStringFactory(target_method);
684 ObjPtr<mirror::Class> declaring_class = target_method->GetDeclaringClass();
686 return target_method;
690 uint16_t vtable_index = target_method->GetMethodIndex()
718 ArtMethod* target_method = method_handle->GetTargetMethod(); local
1044 ArtMethod* target_method = method_handle->GetTargetMethod(); local
1167 ArtMethod* target_method = method_handle->GetTargetMethod(); local
    [all...]
class_linker.cc 9038 ArtMethod* target_method = nullptr; local
    [all...]
class_linker.h     [all...]
  /art/test/1953-pop-frame/
pop_frame.cc 44 jmethodID target_method; member in struct:art::Test1953PopFrame::TestData
63 target_method(meth != nullptr ? env->FromReflectedMethod(meth) : nullptr),
98 if (meth != data->target_method || loc != data->target_loc) {
117 if (method != data->target_method) {
138 if (method != data->target_method) {
155 if (method != data->target_method) {
174 if (method != data->target_method) {
247 if (method != data->target_method || loc != data->target_loc) {
617 JvmtiErrorToException(env, jvmti_env, jvmti_env->SetBreakpoint(data->target_method,
642 jvmti_env->ClearBreakpoint(data->target_method,
    [all...]
  /external/autotest/server/site_tests/cheets_GTS/
cheets_GTS.py 100 target_method=None,
121 @param target_method: the name of the method to be tested.
  /external/autotest/server/site_tests/cheets_CTS_N/
cheets_CTS_N.py 175 target_method=None,
196 @param target_method: the name of the method to be tested.
  /art/compiler/optimizing/
code_generator_mips.h 625 PcRelativePatchInfo* NewBootImageMethodPatch(MethodReference target_method,
627 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method,
code_generator_mips64.h 595 PcRelativePatchInfo* NewBootImageMethodPatch(MethodReference target_method,
597 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method,
code_generator_arm64.h 590 vixl::aarch64::Label* NewBootImageMethodPatch(MethodReference target_method,
597 vixl::aarch64::Label* NewMethodBssEntryPatch(MethodReference target_method,
    [all...]
code_generator_arm_vixl.h 583 PcRelativePatchInfo* NewBootImageMethodPatch(MethodReference target_method);
584 PcRelativePatchInfo* NewMethodBssEntryPatch(MethodReference target_method);
    [all...]
code_generator_arm64.cc 4382 MethodReference target_method = invoke->GetTargetMethod(); local
    [all...]
instruction_builder.cc 433 MethodReference target_method(dex_file_, method_idx);
449 target_method,
    [all...]
code_generator_mips64.cc 1707 MethodReference target_method = invoke->GetTargetMethod(); local
    [all...]
code_generator_mips.cc 1791 MethodReference target_method = invoke->GetTargetMethod(); local
    [all...]
code_generator_arm_vixl.cc 8942 MethodReference target_method = invoke->GetTargetMethod(); local
    [all...]
code_generator_x86.cc 5046 MethodReference target_method = invoke->GetTargetMethod(); local
    [all...]
code_generator_x86_64.cc 1149 MethodReference target_method = invoke->GetTargetMethod(); local
    [all...]
nodes.h     [all...]
  /art/dex2oat/linker/
oat_writer.cc 882 MethodReference target_method = patch.TargetMethod();
883 AddBssReference(target_method,
884 target_method.dex_file->NumMethodIds(),
886 writer_->bss_method_entries_.Overwrite(target_method, /* placeholder */ 0u);
    [all...]

Completed in 870 milliseconds