Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddescriptors_names.h51 std::string DescriptorToDot(const char* descriptor);
Ddescriptors_names.cc209 std::string DescriptorToDot(const char* descriptor) { in DescriptorToDot() function
/art/test/ti-agent/
Djni_binder.cc126 static std::string DescriptorToDot(const char* descriptor) { in DescriptorToDot() function
158 std::string dot_name = DescriptorToDot(descriptor.c_str()); in FindClassWithClassLoader()
/art/profman/
Dboot_image_profile.cc68 return DescriptorToDot(descriptor.c_str()); in PreloadedClassesRepresentation()
Dprofile_assistant_test.cc828 expected_contents += DescriptorToDot(class_name.c_str()) + in TEST_F()
926 std::string denylist_content = DescriptorToDot(kPreloadedDenylistedClass.c_str()); in TEST_F()
943 DescriptorToDot(kDirtyClass.c_str()) in TEST_F()
/art/runtime/
Dtransaction.cc109 CHECK(IsAborted()) << "Rethrow " << DescriptorToDot(kTransactionAbortErrorDescriptor) in ThrowAbortError()
Dart_method.cc347 << DescriptorToDot(GetTypeDescriptorFromTypeIdx(iter_type_idx)); in FindCatchBlock()
Dclass_linker.cc3366 LOG(WARNING) << "Initiating class loader of type " << DescriptorToDot(loader_class_name) in FindClass()
3368 << DescriptorToDot(descriptor) << "\")."; in FindClass()
3378 DescriptorToDot(loader_class_name).c_str(), in FindClass()
3379 DescriptorToDot(result_name).c_str(), in FindClass()
3380 DescriptorToDot(descriptor).c_str()); in FindClass()
/art/runtime/native/
Ddalvik_system_DexFile.cc558 auto descriptor_to_dot = [](const char* descriptor) { return DescriptorToDot(descriptor); }; in DexFile_getClassNameList()
/art/oatdump/
Doatdump.cc695 if (DescriptorToDot(descriptor).find(options_.class_filter_) == std::string::npos) { in DumpMethodAndOffsetAsJson()
928 if (DescriptorToDot(descriptor).find(options_.class_filter_) == std::string::npos) { in DumpOatDexFile()
/art/runtime/mirror/
Dclass.cc365 name = String::AllocFromModifiedUtf8(self, DescriptorToDot(descriptor).c_str()); in ComputeName()