Home
last modified time | relevance | path

Searched refs:info_ (Results 1 – 19 of 19) sorted by relevance

/aosp12/art/compiler/debug/
H A Delf_debug_info_writer.h167 info_.EndTag(); in Write()
217 info_.EndTag(); in Write()
236 info_.EndTag(); in Write()
263 info_.EndTag(); in Write()
268 info_.EndTag(); in Write()
535 info_.EndTag(); in WriteTypeDeclaration()
543 info_.EndTag(); in WriteTypeDeclaration()
546 info_.EndTag(); in WriteTypeDeclaration()
607 info_.EndTag(); in WriteTypeDeclaration()
624 info_.EndTag(); in EndClassTag()
[all …]
/aosp12/frameworks/native/libs/vr/libpdx/
H A Dservice.cpp25 info_{info},
38 auto base = reinterpret_cast<std::uint8_t*>(&info_); in operator =()
39 std::fill(&base[0], &base[sizeof(info_)], 0); in operator =()
43 std::swap(info_, other.info_); in operator =()
58 svc->name_.c_str(), info_.op, info_.pid, info_.cid); in Destroy()
407 pid_t Message::GetThreadId() const { return info_.tid; } in GetThreadId()
413 int Message::GetChannelId() const { return info_.cid; } in GetChannelId()
415 int Message::GetMessageId() const { return info_.mid; } in GetMessageId()
417 int Message::GetOp() const { return info_.op; } in GetOp()
419 int Message::GetFlags() const { return info_.flags; } in GetFlags()
[all …]
/aosp12/art/tools/jvmti-agents/breakpoint-logger/
H A Dbreakpoint_logger.cc75 memset(&info_, 0, sizeof(info_)); in ScopedThreadInfo()
77 info_.name = const_cast<char*>("<NULLPTR>"); in ScopedThreadInfo()
78 } else if (jvmti_env->GetThreadInfo(thread, &info_) != JVMTI_ERROR_NONE) { in ScopedThreadInfo()
79 info_.name = const_cast<char*>("<UNKNOWN THREAD>"); in ScopedThreadInfo()
87 jvmti_env_->Deallocate(reinterpret_cast<unsigned char*>(info_.name)); in ~ScopedThreadInfo()
89 env_->DeleteLocalRef(info_.thread_group); in ~ScopedThreadInfo()
90 env_->DeleteLocalRef(info_.context_class_loader); in ~ScopedThreadInfo()
94 return info_.name; in GetName()
101 jvmtiThreadInfo info_; member in breakpoint_logger::ScopedThreadInfo
/aosp12/art/tools/jvmti-agents/ti-alloc-sample/
H A Dti_alloc_sample.cc57 info_.name = const_cast<char*>("<NULLPTR>"); in ScopedThreadInfo()
58 } else if (jvmtienv->GetThreadInfo(thread, &info_) != JVMTI_ERROR_NONE) { in ScopedThreadInfo()
59 info_.name = const_cast<char*>("<UNKNOWN THREAD>"); in ScopedThreadInfo()
67 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(info_.name)); in ~ScopedThreadInfo()
69 DeleteLocalRef(env_, info_.thread_group); in ~ScopedThreadInfo()
70 DeleteLocalRef(env_, info_.context_class_loader); in ~ScopedThreadInfo()
74 return info_.name; in GetName()
81 jvmtiThreadInfo info_{}; member in tifast::__anonc8d85c180110::ScopedThreadInfo
/aosp12/system/teeui/libteeui/include/teeui/
H A Dlabel.h61 info_t* info_; member
62 info_t* begin() { return &info_[0]; } in begin()
63 info_t* end() { return &info_[size_]; } in end()
64 const info_t* begin() const { return &info_[0]; } in begin()
65 const info_t* end() const { return &info_[size_]; } in end()
/aosp12/art/libprofile/profile/
H A Dprofile_compilation_info.cc551 info_(allocator_.Adapter(kArenaAllocProfile)), in ProfileCompilationInfo()
934 DCHECK_LE(info_.size(), MaxProfileIndex()); in Save()
1108 DCHECK_EQ(profile_key_map_.size(), info_.size()); in GetOrAddDexFileData()
1132 info_.push_back(std::move(dex_file_data)); in GetOrAddDexFileData()
1783 if (!info_.empty() && merge_classes) { in LoadInternal()
1790 if (!info_.empty()) { in LoadInternal()
1984 if (info_.empty()) { in DumpInfo()
2116 if (info_.size() != other.info_.size()) { in Equals()
2119 for (size_t i = 0; i < info_.size(); i++) { in Equals()
2120 const DexFileData& dex_data = *info_[i]; in Equals()
[all …]
H A Dprofile_compilation_info.h333 DCHECK_LT(profile_index, info_.size()); in AddClass()
334 DexFileData* const data = info_[profile_index].get(); in AddClass()
394 DCHECK_LT(profile_index, info_.size()); in AddMethod()
395 DexFileData* const data = info_[profile_index].get(); in AddMethod()
479 return info_.size(); in GetNumberOfDexFiles()
516 DCHECK_LE(profile_index, info_.size()); in FindDexFileForProfileIndex()
517 const DexFileData* dex_file_data = info_[profile_index].get(); in FindDexFileForProfileIndex()
963 ArenaVector<std::unique_ptr<DexFileData>> info_; variable
1075 return DexReferenceDumper{info_[profile_index].get()}; in DumpDexReference()
/aosp12/art/test/913-heaps/
H A Dheaps.cc304 memcpy(&info_, reference_info, sizeof(jvmtiHeapReferenceInfo)); in Java_art_Test913_followReferences()
310 if (info_.jni_local.method != nullptr) { in Java_art_Test913_followReferences()
322 info_.jni_local.thread_tag, in Java_art_Test913_followReferences()
323 info_.jni_local.depth, in Java_art_Test913_followReferences()
334 jvmtiHeapReferenceInfo info_; in Java_art_Test913_followReferences() member in art::Test913Heaps::Java_art_Test913_followReferences::PrintIterationConfig::JNILocalElement
356 if (info_.stack_local.method != nullptr) { in Java_art_Test913_followReferences()
368 info_.stack_local.thread_tag, in Java_art_Test913_followReferences()
369 info_.stack_local.depth, in Java_art_Test913_followReferences()
371 info_.stack_local.slot, in Java_art_Test913_followReferences()
372 info_.stack_local.location); in Java_art_Test913_followReferences()
[all …]
/aosp12/art/test/ti-stress/
H A Dstress.cc125 memset(&info_, 0, sizeof(info_)); in ScopedThreadInfo()
127 info_.name = const_cast<char*>("<NULLPTR>"); in ScopedThreadInfo()
128 } else if (jvmtienv->GetThreadInfo(thread, &info_) != JVMTI_ERROR_NONE) { in ScopedThreadInfo()
129 info_.name = const_cast<char*>("<UNKNOWN THREAD>"); in ScopedThreadInfo()
137 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(info_.name)); in ~ScopedThreadInfo()
139 DeleteLocalRef(env_, info_.thread_group); in ~ScopedThreadInfo()
140 DeleteLocalRef(env_, info_.context_class_loader); in ~ScopedThreadInfo()
144 return info_.name; in GetName()
151 jvmtiThreadInfo info_; member in art::ScopedThreadInfo
/aosp12/system/bt/main/shim/
H A Dl2c_api.cc557 std::unordered_map<hci::Address, ConnectionInfo> info_; member
561 info_[remote.GetAddress()] = {handle, role, remote}; in OnLinkConnected()
569 info_.erase(remote.GetAddress()); in OnLinkDisconnected()
1006 if (record != le_link_property_listener_shim_.info_.end()) { in L2CA_ConnectFixedChnl()
1053 if (le_link_property_listener_shim_.info_.count(addr) == 0) { in L2CA_GetLeHandle()
1056 return le_link_property_listener_shim_.info_[addr].handle; in L2CA_GetLeHandle()
1190 for (const auto& entry : le_link_property_listener_shim_.info_) { in L2CA_IsLeLink()
1213 if (le_link_property_listener_shim_.info_.count(remote) == 0) { in L2CA_ReadRemoteConnectionAddr()
1225 if (le_link_property_listener_shim_.info_.count(remote) == 0) { in L2CA_GetBleConnRole()
1229 le_link_property_listener_shim_.info_[remote].role); in L2CA_GetBleConnRole()
[all …]
/aosp12/system/extras/simpleperf/
H A DSampleDisplayer.h200 void SetInfo(const InfoT* info) { info_ = info; } in SetInfo()
231 (item.func != nullptr) ? item.func(sample) : item.func_with_info(sample, info_); in AdjustWidth()
255 (item.func != nullptr) ? item.func(sample) : item.func_with_info(sample, info_); in PrintSample()
277 const InfoT* info_;
/aosp12/art/runtime/mirror/
H A Dmethod_handle_impl.h140 return MemberOffset(OFFSETOF_MEMBER(MethodHandleImpl, info_)); in InfoOffset()
143 HeapReference<mirror::Object> info_; // Unused by the runtime. variable
/aosp12/art/tools/jvmti-agents/ti-fast/
H A Dtifast.cc134 info_.name = const_cast<char*>("<NULLPTR>"); in ScopedThreadInfo()
135 } else if (jvmtienv->GetThreadInfo(thread, &info_) != JVMTI_ERROR_NONE) { in ScopedThreadInfo()
136 info_.name = const_cast<char*>("<UNKNOWN THREAD>"); in ScopedThreadInfo()
144 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(info_.name)); in ~ScopedThreadInfo()
146 DeleteLocalRef(env_, info_.thread_group); in ~ScopedThreadInfo()
147 DeleteLocalRef(env_, info_.context_class_loader); in ~ScopedThreadInfo()
151 return info_.name; in GetName()
158 jvmtiThreadInfo info_{}; member in tifast::__anonf32e062f0110::ScopedThreadInfo
/aosp12/art/dexlayout/
H A Ddexlayout.h109 info_(info), in DexLayout()
189 ProfileCompilationInfo* info_; variable
H A Ddexlayout.cc1577 if (info_->ContainsClass(*dex_file, type_idx)) { in LayoutClassDefsAndClassData()
1583 if (!info_->ContainsClass(*dex_file, type_idx)) { in LayoutClassDefsAndClassData()
1627 info_->ContainsClass(*dex_file, dex::TypeIndex(class_def->ClassType()->GetIndex())); in LayoutStringData()
1656 info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())).IsInProfile(); in LayoutStringData()
1744 info_->ContainsClass(*dex_file, dex::TypeIndex(class_def->ClassType()->GetIndex())); in LayoutCodeItems()
1764 Hotness hotness = info_->GetMethodHotness(MethodReference(dex_file, method_id->GetIndex())); in LayoutCodeItems()
1904 VisualizeDexLayout(header_, dex_file, dex_file_index, info_); in ProcessDexFile()
1922 bool do_layout = info_ != nullptr; in ProcessDexFile()
/aosp12/system/core/fastboot/
H A Dfastboot_driver.cpp66 info_(std::move(driver_callbacks.info)), in FastBootDriver()
389 info_ = info; in SetInfoCallback()
487 info_(tmp); in HandleResponse()
H A Dfastboot_driver.h170 std::function<void(const std::string&)> info_; variable
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dservice.h357 MessageInfo info_; variable
/aosp12/art/runtime/
H A Dclass_linker_test.cc774 addOffset(OFFSETOF_MEMBER(mirror::MethodHandleImpl, info_), "info"); in MethodHandleImplOffsets()