Home
last modified time | relevance | path

Searched refs:dex_name (Results 1 – 6 of 6) sorted by relevance

/art/dex2oat/dex/
Ddex_to_dex_decompiler_test.cc52 void RunTest(const char* dex_name) { in RunTest() argument
58 original_class_loader = LoadDex(dex_name); in RunTest()
67 class_loader = LoadDex(dex_name); in RunTest()
/art/tools/runtime_memusage/
Dsanitizer_logcat_analysis.sh352 dex_name=""
358 dex_name="Dex File name: $(basename "$dex_file_path") "
365 set title "'"$package_string""$dex_name"'PID: '"$pid"'";
/art/runtime/
Dcommon_runtime_test.cc244 jobject CommonRuntimeTestImpl::LoadDex(const char* dex_name) { in LoadDex() argument
245 jobject class_loader = LoadDexInPathClassLoader(dex_name, nullptr); in LoadDex()
256 for (const std::string& dex_name : dex_names) { in LoadDexInWellKnownClassLoader() local
257 std::vector<std::unique_ptr<const DexFile>> dex_files = OpenTestDexFiles(dex_name.c_str()); in LoadDexInWellKnownClassLoader()
298 jobject CommonRuntimeTestImpl::LoadDexInPathClassLoader(const std::string& dex_name, in LoadDexInPathClassLoader() argument
301 return LoadDexInPathClassLoader(std::vector<std::string>{ dex_name }, in LoadDexInPathClassLoader()
315 jobject CommonRuntimeTestImpl::LoadDexInDelegateLastClassLoader(const std::string& dex_name, in LoadDexInDelegateLastClassLoader() argument
317 return LoadDexInWellKnownClassLoader({ dex_name }, in LoadDexInDelegateLastClassLoader()
322 jobject CommonRuntimeTestImpl::LoadDexInInMemoryDexClassLoader(const std::string& dex_name, in LoadDexInInMemoryDexClassLoader() argument
324 return LoadDexInWellKnownClassLoader({ dex_name }, in LoadDexInInMemoryDexClassLoader()
Dcommon_runtime_test.h149 jobject LoadDex(const char* dex_name) REQUIRES_SHARED(Locks::mutator_lock_);
155 jobject LoadDexInPathClassLoader(const std::string& dex_name,
161 jobject LoadDexInDelegateLastClassLoader(const std::string& dex_name, jobject parent_loader);
162 jobject LoadDexInInMemoryDexClassLoader(const std::string& dex_name, jobject parent_loader);
Dclass_loader_context_test.cc410 std::string dex_name = GetTestDexFileName("Main"); in TEST_F() local
416 "DLC[" + dex_name + "]"); in TEST_F()
453 std::string dex_name; in TEST_F() local
456 !CreateRelativeString(GetTestDexFileName("Main"), cwd_buf, &dex_name)) { in TEST_F()
466 "DLC[" + dex_name + "]"); in TEST_F()
488 std::string dex_name; in TEST_F() local
491 !CreateRelativeString(GetTestDexFileName("Main"), cwd_buf, &dex_name)) { in TEST_F()
500 "DLC[" + dex_name + "]"); in TEST_F()
517 std::string dex_name = GetTestDexFileName("Main"); in TEST_F() local
519 ClassLoaderContext::Create("PCL[does_not_exist.dex];DLC[" + dex_name + "]"); in TEST_F()
[all …]
/art/compiler/debug/
Delf_symtab_writer.h109 typename ElfTypes::Word dex_name = strtab->Write(kDexFileSymbolName); in WriteDebugSymbols() local
110 symtab->Add(dex_name, dex, dex_address, dex_file->Size(), STB_GLOBAL, STT_FUNC); in WriteDebugSymbols()