Home
last modified time | relevance | path

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

/art/compiler/linker/
Dlinker_patch.h91 patch.method_idx_ = target_method_idx; in RelativeMethodPatch()
101 patch.method_idx_ = target_method_idx; in MethodBssEntryPatch()
111 patch.method_idx_ = target_method_idx; in RelativeJniEntrypointPatch()
120 patch.method_idx_ = target_method_idx; in RelativeCodePatch()
250 return MethodReference(target_dex_file_, method_idx_); in TargetMethod()
323 uint32_t method_idx_; // Method index for Call/Method patches. member
330 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.cc2093 if (!CheckIndex(method_item->method_idx_, header_->method_ids_size_, "method annotation")) { in CheckIntraAnnotationsDirectoryItem()
2096 if (UNLIKELY(last_idx >= method_item->method_idx_ && i != 0)) { in CheckIntraAnnotationsDirectoryItem()
2098 last_idx, method_item->method_idx_); in CheckIntraAnnotationsDirectoryItem()
2101 last_idx = method_item->method_idx_; in CheckIntraAnnotationsDirectoryItem()
2116 if (!CheckIndex(parameter_item->method_idx_, in CheckIntraAnnotationsDirectoryItem()
2121 if (UNLIKELY(last_idx >= parameter_item->method_idx_ && i != 0)) { in CheckIntraAnnotationsDirectoryItem()
2123 last_idx, parameter_item->method_idx_); in CheckIntraAnnotationsDirectoryItem()
2126 last_idx = parameter_item->method_idx_; in CheckIntraAnnotationsDirectoryItem()
2550 DCHECK_LE(method_items[0].method_idx_, dex_file_->NumMethodIds()); in FindFirstAnnotationsDirectoryDefiner()
2551 return dex_file_->GetMethodId(method_items[0].method_idx_).class_idx_.index_; in FindFirstAnnotationsDirectoryDefiner()
[all …]
/art/compiler/optimizing/
Doptimizing_unit_test.h450 MethodReference method_reference{/* file= */ &graph_->GetDexFile(), /* index= */ method_idx_++}; in MakeInvoke()
539 uint32_t method_idx_ = 100; variable
Dnodes.cc752 const dex::MethodId& method_id = dex_file_.GetMethodId(method_idx_); in GetMethodName()
757 return dex_file_.PrettyMethod(method_idx_, with_signature); in PrettyMethod()
Dnodes.h417 method_idx_(method_idx), in allocator_()
661 return method_idx_; in GetMethodIdx()
867 const uint32_t method_idx_; variable
/art/dexdump/
Ddexdump.cc784 const u4 method_idx = methods[i].method_idx_; in dumpClassAnnotations()
795 const u4 method_idx = pars[i].method_idx_; in dumpClassAnnotations()
/art/runtime/dex/
Ddex_file_annotations.cc301 if (method_annotations[i].method_idx_ == method_index) { in FindAnnotationSetForMethod()
334 if (parameter_annotations[i].method_idx_ == method_index) { in FindAnnotationsItemForMethod()
/art/runtime/
Dclass_linker.cc3934 while (current_ != end_ && current_->method_idx_ < method_idx) { in AdvanceTo()
3937 return (current_ != end_ && current_->method_idx_ == method_idx) ? current_ : nullptr; in AdvanceTo()