Home
last modified time | relevance | path

Searched refs:GetString (Results 1 – 11 of 11) sorted by relevance

/art/tools/dexanalyze/
Ddexanalyze_strings.cc92 std::string GetString(uint32_t string_idx) const { in GetString() function in art::dexanalyze::PrefixStrings
162 std::string GetString(uint32_t string_idx) const { in GetString() function in art::dexanalyze::NormalStrings
311 ret.push_back(pair.second->GetString()); in ExtractPrefixes()
316 std::string GetString() const { in GetString() function in art::dexanalyze::MatchTrie
371 CHECK_EQ(node->GetString(), str); in Build()
510 << i << ": " << strings.GetString(i) << " vs " << reference[i]; in Benchmark()
/art/runtime/
Delf_file_impl.h100 const char* GetString(Elf_Shdr&, Elf_Word) const;
194 const char* GetString(Elf_Word section_type, Elf_Word) const;
Delf_file.cc230 const char* header_name = GetString(*shstrtab_section_header, section_header->sh_name); in Setup()
239 const char* header_name = GetString(*shstrtab_section_header, section_header->sh_name); in Setup()
619 const char* ElfFileImpl<ElfTypes>::GetString(Elf_Word section_type, in GetString() function in art::ElfFileImpl
786 const char* name = GetString(SHT_DYNSYM, symbol->st_name); in FindDynamicSymbol()
868 const char* name = GetString(*string_section, symbol->st_name); in FindSymbolByName()
908 const char* name = GetString(*string_section, symbol->st_name); in FindSymbolByName()
930 const char* ElfFileImpl<ElfTypes>::GetString(Elf_Shdr& string_section, in GetString() function in art::ElfFileImpl
1359 const char* sec_name = GetString(*shstrtab_sec, shdr->sh_name); in FindSectionByName()
1464 const char* name = GetString(*string_section, sh->sh_name); in Strip()
/art/libdexfile/dex/
Ddex_file_verifier.cc128 std::string GetString(const uint8_t* const begin, in GetString() function
155 return GetString(begin, header, type_id->descriptor_idx_); in GetClass()
169 std::string field_name = GetString(begin, header, field_id->name_idx_); in GetFieldDescription()
184 std::string method_name = GetString(begin, header, method_id->name_idx_); in GetMethodDescription()
/art/compiler/optimizing/
Dnodes.cc2985 return GetString().Get() == other_load_string->GetString().Get(); in InstructionDataEquals()
Dcode_generator.cc918 ObjPtr<mirror::String> string = load_string->GetString().Get(); in GetBootImageOffset()
Dcode_generator_arm64.cc5309 uint32_t address = reinterpret_cast32<uint32_t>(load->GetString().Get()); in VisitLoadString()
5317 load->GetString())); in VisitLoadString()
Dcode_generator_x86_64.cc6364 uint32_t address = reinterpret_cast32<uint32_t>(load->GetString().Get()); in VisitLoadString()
6373 load->GetDexFile(), load->GetStringIndex(), load->GetString()); in VisitLoadString()
Dcode_generator_x86.cc7072 uint32_t address = reinterpret_cast32<uint32_t>(load->GetString().Get()); in VisitLoadString()
7080 load->GetDexFile(), load->GetStringIndex(), load->GetString()); in VisitLoadString()
Dcode_generator_arm_vixl.cc7635 uint32_t address = reinterpret_cast32<uint32_t>(load->GetString().Get()); in VisitLoadString()
7643 load->GetString())); in VisitLoadString()
Dnodes.h6653 Handle<mirror::String> GetString() const { in GetString() function