Lines Matching full:info
53 for (const MethodDebugInfo& info : method_infos) {
54 if (info.deduped) {
55 deduped_addresses.insert(info.code_address);
63 for (const MethodDebugInfo& info : method_infos) {
64 if (info.deduped) {
68 if (info.trampoline_name != nullptr) {
69 name_offset = strtab->Write(info.trampoline_name);
71 DCHECK(info.dex_file != nullptr);
72 std::string name = PrettyMethod(info.dex_method_index, *info.dex_file, with_signature);
73 if (deduped_addresses.find(info.code_address) != deduped_addresses.end()) {
82 const auto* text = info.is_code_address_text_relative ? builder->GetText() : nullptr;
83 uint64_t address = info.code_address + (text != nullptr ? text->GetAddress() : 0);
85 address += CompiledMethod::CodeDelta(info.isa);
86 symtab->Add(name_offset, text, address, info.code_size, STB_GLOBAL, STT_FUNC);
92 if (info.isa == kThumb2) {