Home
last modified time | relevance | path

Searched refs:method_idx_ (Results 1 – 8 of 8) sorted by relevance

/art/compiler/linker/
Dlinker_patch.h82 patch.method_idx_ = target_method_idx; in RelativeMethodPatch()
92 patch.method_idx_ = target_method_idx; in MethodBssEntryPatch()
101 patch.method_idx_ = target_method_idx; in RelativeCodePatch()
190 return MethodReference(target_dex_file_, method_idx_); in TargetMethod()
263 uint32_t method_idx_; // Method index for Call/Method patches. member
269 static_assert(sizeof(method_idx_) == sizeof(cmp1_), "needed by relational operators");
/art/libdexfile/dex/
Ddex_file_structs.h228 uint32_t method_idx_; member
236 uint32_t method_idx_; member
Ddex_file_verifier.cc2000 if (!CheckIndex(method_item->method_idx_, header_->method_ids_size_, "method annotation")) { in CheckIntraAnnotationsDirectoryItem()
2003 if (UNLIKELY(last_idx >= method_item->method_idx_ && i != 0)) { in CheckIntraAnnotationsDirectoryItem()
2005 last_idx, method_item->method_idx_); in CheckIntraAnnotationsDirectoryItem()
2008 last_idx = method_item->method_idx_; in CheckIntraAnnotationsDirectoryItem()
2023 if (!CheckIndex(parameter_item->method_idx_, in CheckIntraAnnotationsDirectoryItem()
2028 if (UNLIKELY(last_idx >= parameter_item->method_idx_ && i != 0)) { in CheckIntraAnnotationsDirectoryItem()
2030 last_idx, parameter_item->method_idx_); in CheckIntraAnnotationsDirectoryItem()
2033 last_idx = parameter_item->method_idx_; in CheckIntraAnnotationsDirectoryItem()
2465 DCHECK_LE(method_items[0].method_idx_, dex_file_->NumMethodIds()); in FindFirstAnnotationsDirectoryDefiner()
2466 return dex_file_->GetMethodId(method_items[0].method_idx_).class_idx_.index_; in FindFirstAnnotationsDirectoryDefiner()
[all …]
/art/dexlayout/
Ddex_ir_builder.cc756 MethodId* method_id = header_->MethodIds()[methods[i].method_idx_]; in CreateAnnotationsDirectoryItem()
772 MethodId* method_id = header_->MethodIds()[parameters[i].method_idx_]; in CreateAnnotationsDirectoryItem()
/art/dexdump/
Ddexdump.cc723 const u4 method_idx = methods[i].method_idx_; in dumpClassAnnotations()
734 const u4 method_idx = pars[i].method_idx_; in dumpClassAnnotations()
/art/runtime/dex/
Ddex_file_annotations.cc298 if (method_annotations[i].method_idx_ == method_index) { in FindAnnotationSetForMethod()
331 if (parameter_annotations[i].method_idx_ == method_index) { in FindAnnotationsItemForMethod()
/art/compiler/optimizing/
Dnodes.cc693 const dex::MethodId& method_id = dex_file_.GetMethodId(method_idx_); in GetMethodName()
698 return dex_file_.PrettyMethod(method_idx_, with_signature); in PrettyMethod()
Dnodes.h406 method_idx_(method_idx), in allocator_()
630 return method_idx_; in GetMethodIdx()
811 const uint32_t method_idx_; variable