Home
last modified time | relevance | path

Searched refs:StringDataByIdx (Results 1 – 18 of 18) sorted by relevance

/art/runtime/
Ddex_file-inl.h56 inline const char* DexFile::StringDataByIdx(dex::StringIndex idx) const { in StringDataByIdx() function
74 return StringDataByIdx(type_id.descriptor_idx_); in StringByTypeIdx()
78 return StringDataByIdx(type_id.descriptor_idx_); in GetTypeDescriptor()
87 return StringDataByIdx(field_id.name_idx_); in GetFieldName()
104 return StringDataByIdx(method_id.name_idx_); in GetMethodName()
108 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); in GetMethodShorty()
112 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty()
130 return StringDataByIdx(proto_id.shorty_idx_); in GetShorty()
Ddex_file_test.cc418 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F()
430 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F()
441 const char* name = raw->StringDataByIdx(method_id.name_idx_); in TEST_F()
Ddex_instruction.cc200 PrintableString(file->StringDataByIdx(dex::StringIndex(string_idx))).c_str(), in DumpString()
344 PrintableString(file->StringDataByIdx(dex::StringIndex(string_idx))).c_str(), in DumpString()
Ddex_file.cc996 local_in_reg[arg_reg].name_ = StringDataByIdx(dex::StringIndex(name_idx)); in DecodeDebugLocalInfo()
1059 local_in_reg[reg].name_ = StringDataByIdx(dex::StringIndex(name_idx)); in DecodeDebugLocalInfo()
1062 local_in_reg[reg].signature_ = StringDataByIdx(dex::StringIndex(signature_idx)); in DecodeDebugLocalInfo()
1164 entry.source_file_ = StringDataByIdx(dex::StringIndex(name_idx)); in DecodeDebugPositionInfo()
Ddex_file.h569 const char* StringDataByIdx(dex::StringIndex idx) const;
1037 return StringDataByIdx(class_def.source_file_idx_); in GetSourceFile()
Ddex_file_annotations.cc688 const char* name = dex_file.StringDataByIdx(dex::StringIndex(element_name_index)); in CreateAnnotationMember()
1488 return data.GetDexFile().StringDataByIdx(index); in GetSourceDebugExtension()
Dclass_linker.cc3311 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_); in LoadMethod()
8033 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in ResolveMethod()
8069 const char* name = dex_file.StringDataByIdx(method_id.name_idx_); in ResolveMethod()
8326 const size_t num_method_args = strlen(dex_file.StringDataByIdx(proto_id.shorty_idx_)) - 1; in ResolveMethodType()
Ddex_file_verifier.cc106 return dex_file_->StringDataByIdx(idx); in CheckLoadStringByIdx()
/art/dexdump/
Ddexdump.cc479 dumpEscapedString(pDexFile->StringDataByIdx(dex::StringIndex(idx))); in dumpEncodedValue()
481 dumpXmlAttribute(pDexFile->StringDataByIdx(dex::StringIndex(idx))); in dumpEncodedValue()
494 fputs(pDexFile->StringDataByIdx(pFieldId.name_idx_), gOutFile); in dumpEncodedValue()
500 fputs(pDexFile->StringDataByIdx(pMethodId.name_idx_), gOutFile); in dumpEncodedValue()
522 fputs(pDexFile->StringDataByIdx(dex::StringIndex(name_idx)), gOutFile); in dumpEncodedValue()
681 const char* field_name = pDexFile->StringDataByIdx(pFieldId.name_idx_); in dumpClassAnnotations()
692 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpClassAnnotations()
703 const char* method_name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpClassAnnotations()
846 const char* st = pDexFile->StringDataByIdx(dex::StringIndex(index)); in indexString()
855 const char* name = pDexFile->StringDataByIdx(pMethodId.name_idx_); in indexString()
[all …]
/art/dexlist/
Ddexlist.cc103 const char* methodName = pDexFile->StringDataByIdx(pMethodId.name_idx_); in dumpMethod()
146 fileName = pDexFile->StringDataByIdx(pClassDef.source_file_idx_); in dumpClass()
/art/compiler/optimizing/
Dsharpening.cc171 dex_file.StringDataByIdx(dex_file.GetTypeId(type_index).descriptor_idx_))) { in ComputeLoadClassKind()
/art/runtime/verifier/
Dverifier_deps.cc244 return std::string(dex_file.StringDataByIdx(string_id)); in GetStringFromId()
978 StringPiece name(dex_file.StringDataByIdx(field_id.name_idx_)); in VerifyFields()
979 …StringPiece type(dex_file.StringDataByIdx(dex_file.GetTypeId(field_id.type_idx_).descriptor_idx_)); in VerifyFields()
Dmethod_verifier.cc738 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_); in Verify()
2939 is_constructor = strcmp("<init>", dex_file_->StringDataByIdx(method_id.name_idx_)) == 0; in CodeFlowVerifyInstruction()
/art/compiler/
Dverifier_deps_test.cc341 std::string actual_name = dex_dep.first->StringDataByIdx(field_id.name_idx_); in HasField()
397 std::string actual_name = dex_dep.first->StringDataByIdx(method_id.name_idx_); in HasMethod()
Dimage_writer.cc989 const char* name = dex_file.StringDataByIdx(field_id.name_idx_); in PruneAndPreloadDexCache()
/art/compiler/debug/
Delf_debug_info_writer.h57 names.push_back(mi->dex_file->StringDataByIdx(dex::StringIndex(id))); in GetParamNames()
/art/runtime/native/
Ddalvik_system_VMRuntime.cc306 const char* utf8 = dex_file->StringDataByIdx(string_idx); in PreloadDexCachesResolveString()
/art/compiler/driver/
Dcompiler_driver.cc2254 const char* descriptor = dex_file.StringDataByIdx(class_type_id.descriptor_idx_); in Visit()