Home
last modified time | relevance | path

Searched refs:methods_ (Results 1 – 12 of 12) sorted by relevance

/art/libprofile/profile/
Dprofile_boot_info.h55 return methods_; in GetMethods()
58 bool IsEmpty() const { return dex_files_.empty() && methods_.empty(); } in IsEmpty()
66 std::vector<std::pair<uint32_t, uint32_t>> methods_; variable
Dprofile_boot_info.cc38 methods_.push_back(std::make_pair(index, method_index)); in Add()
52 for (const std::pair<uint32_t, uint32_t>& pair : methods_) { in Save()
120 methods_.push_back(std::make_pair(dex_file_index, method_id)); in Load()
/art/runtime/
Dreflective_handle_scope-inl.h48 std::for_each(methods_.begin(), methods_.begin() + method_pos_, visit_one); in VisitTargets()
Dreflective_handle_scope.h185 return &methods_[i]; in GetMethodReference()
196 std::array<ReflectiveReference<ArtMethod>, kNumMethods> methods_; variable
Dclass_linker_test.cc596 addOffset(OFFSETOF_MEMBER(mirror::Class, methods_), "methods"); in ClassOffsets()
/art/libdexfile/dex/
Dtest_dex_file_builder.h80 methods_.emplace(method_key, 0u); in AddMethod()
149 for (auto& entry : methods_) {
153 header->method_ids_size_ = methods_.size();
154 header->method_ids_off_ = methods_.empty() ? 0u : method_ids_offset;
160 uint32_t data_section_offset = method_ids_offset + methods_.size() * sizeof(dex::MethodId);
210 for (const auto& entry : methods_) {
276 auto it = methods_.find(method_key); in GetMethodIdx()
277 CHECK(it != methods_.end()); in GetMethodIdx()
396 std::map<MethodKey, uint32_t, MethodKeyComparator> methods_; variable
/art/runtime/jit/
Djit_code_cache.cc117 JniStubData() : code_(nullptr), methods_() {} in JniStubData()
168 if (!ContainsElement(methods_, method)) { in AddMethod()
169 methods_.push_back(method); in AddMethod()
174 return methods_; in GetMethods()
179 methods_.begin(), in RemoveMethodsIn()
180 methods_.end(), in RemoveMethodsIn()
182 for (auto it = kept_end; it != methods_.end(); it++) { in RemoveMethodsIn()
185 methods_.erase(kept_end, methods_.end()); in RemoveMethodsIn()
189 auto it = std::find(methods_.begin(), methods_.end(), method); in RemoveMethod()
190 if (it != methods_.end()) { in RemoveMethod()
[all …]
/art/runtime/jni/
Djni_id_manager.cc567 : BaseReflectiveHandleScope(), methods_(), fields_() { in REQUIRES_SHARED()
573 methods_ = methods; in Initialize()
583 for (auto it = methods_.begin(); it != methods_.end(); ++it) { in VisitTargets()
602 return &methods_[idx]; in GetMethodPtr()
609 return methods_.size(); in NumMethods()
613 std::vector<ArtMethod*> methods_; member in art::jni::JniIdDeferStackReflectiveScope
/art/tools/dexanalyze/
Ddexanalyze_bytecode.h51 SafeMap<size_t, size_t> methods_; member
Ddexanalyze_bytecode.cc129 pair.second.methods_ = SortByOrder(pair.second.methods_, Order::kMostUsed); in ProcessDexFiles()
368 ++types[receiver_type.index_].methods_.FindOrAdd(method_idx)->second; in ProcessCodeItem()
389 uint32_t local_idx = types[receiver_type.index_].methods_.Get(method_idx); in ProcessCodeItem()
/art/runtime/mirror/
Dclass-inl.h202 static_cast<uintptr_t>(GetField64(OFFSET_OF_OBJECT_MEMBER(Class, methods_)))); in GetMethodsPtr()
263 SetField64<false>(OFFSET_OF_OBJECT_MEMBER(Class, methods_), in SetMethodsPtrUnchecked()
1152 dest, pointer_size, visitor, OFFSET_OF_OBJECT_MEMBER(Class, methods_)); in FixupNativePointers()
Dclass.h712 return MemberOffset(OFFSETOF_MEMBER(Class, methods_)); in MethodsOffset()
1499 uint64_t methods_; variable