/aosp_15_r20/art/runtime/ |
H A D | parsed_options_test.cc | 39 std::string class_path; in TEST_F() local 45 class_path += ":"; in TEST_F() 49 class_path += dex_file_name; in TEST_F() 51 boot_class_path += class_path; in TEST_F() 53 Split(class_path, ':', &expected_boot_class_path); in TEST_F() 58 options.push_back(std::make_pair(class_path.c_str(), nullptr)); in TEST_F() 60 options.push_back(std::make_pair(class_path.c_str(), nullptr)); in TEST_F() 88 EXPECT_PARSED_EQ(class_path, Opt::ClassPath); in TEST_F()
|
H A D | common_runtime_test.cc | 234 std::vector<const DexFile*> class_path; in LoadMultiDex() local 238 class_path.push_back(dex_file.get()); in LoadMultiDex() 242 class_path.push_back(dex_file.get()); in LoadMultiDex() 248 class_path); in LoadMultiDex() 266 std::vector<const DexFile*> class_path; in LoadDexInWellKnownClassLoader() local 271 class_path.push_back(dex_file.get()); in LoadDexInWellKnownClassLoader() 287 class_path, in LoadDexInWellKnownClassLoader()
|
/aosp_15_r20/external/jazzer-api/launcher/ |
H A D | jvm_tooling.cpp | 213 std::string class_path = absl::StrFormat("-Djava.class.path=%s", FLAGS_cp); in GetClassPath() local 216 class_path += absl::StrCat(ARG_SEPARATOR, class_path_from_env); in GetClassPath() 219 class_path += absl::StrCat(ARG_SEPARATOR, getInstrumentorAgentPath()); in GetClassPath() 220 return class_path; in GetClassPath() 224 std::string class_path = GetClassPath(); in JVM() local 228 JavaVMOption{.optionString = const_cast<char *>(class_path.c_str())}); in JVM()
|
/aosp_15_r20/art/dex2oat/linker/ |
H A D | image_test.h | 169 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); in DoCompile() local 172 for (const DexFile* dex_file : class_path) { in DoCompile() 185 for (size_t i = 0u; i != class_path.size(); ++i) { in DoCompile() 216 for (const DexFile* dex_file : class_path) { in DoCompile() 231 CompileAll(class_loader, class_path, &timings); in DoCompile() 257 const DexFile* dex_file = class_path[i]; in DoCompile() 297 std::vector<const DexFile*> cur_dex_files(1u, class_path[i]); in DoCompile()
|
/aosp_15_r20/external/pandora/avatar/avatar/ |
D | __init__.py | 98 class_path = user_params[f'{KEY_PANDORA_SERVER_CLASS}_{controller}'] 99 … logging.info('Loading Pandora server class %s from config for %s.', class_path, controller) 100 server_cls = _load_pandora_server_class(class_path) 150 def _load_pandora_server_class(class_path: str) -> Type[pandora_server.PandoraServer[Any]]: 162 module_name, class_name = class_path.rsplit('.', 1)
|
/aosp_15_r20/tools/asuite/atest/test_finders/ |
H A D | module_finder_unittest.py | 1084 class_path = '%s.kt' % uc.CLASS_NAME 1090 t_infos = self.mod_finder.find_test_by_path(class_path) 1093 class_with_method = '%s#%s' % (class_path, uc.METHOD_NAME) 1098 class_path = '%s.java' % uc.CLASS_NAME 1100 t_infos = self.mod_finder.find_test_by_path(class_path) 1103 class_with_method = '%s#%s' % (class_path, uc.METHOD_NAME) 1122 class_path = '%s' % uc.CC_PATH 1124 t_infos = self.mod_finder.find_test_by_path(class_path) 1446 class_path = '%s.java' % uc.CLASS_NAME 1448 class_with_method = '%s#%s' % (class_path, uc.METHOD_NAME) [all …]
|
/aosp_15_r20/art/openjdkjvmti/ |
H A D | ti_properties.cc | 156 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument 157 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
|
/aosp_15_r20/libcore/tools/expected_upstream/ |
H A D | ojluni_merge_package.sh | 174 local class_path="ojluni/src/main/java/${package_path}/${class_name}\.java" 175 grep "${class_path}" "${ANDROID_BUILD_TOP}/libcore/EXPECTED_UPSTREAM" 215 local class_path="ojluni/src/main/java/${package_path}/${class_name}\.java"
|
/aosp_15_r20/art/dex2oat/driver/ |
H A D | compiler_driver_test.cc | 73 const std::vector<const DexFile*> class_path = GetDexFiles(class_loader); in MakeAllExecutable() local 74 for (size_t i = 0; i != class_path.size(); ++i) { in MakeAllExecutable() 75 const DexFile* dex_file = class_path[i]; in MakeAllExecutable()
|
/aosp_15_r20/external/crosvm/devices/src/pci/pcie/ |
H A D | pcie_host.rs | 136 let class_path = device.join("class"); in visit_children() localVariable 137 let class_id = read(class_path.as_path()) in visit_children() 138 .with_context(|| format!("failed to read {}", class_path.display()))?; in visit_children()
|
/aosp_15_r20/system/apex/apexd/ |
H A D | apexservice.cpp | 464 auto class_path = ::android::apex::MountAndDeriveClassPath(*files); in getStagedApexInfos() local 465 if (!class_path.ok()) { in getStagedApexInfos() 467 << ": " << class_path.error(); in getStagedApexInfos() 470 String8(class_path.error().message().c_str())); in getStagedApexInfos() 476 apex_info.hasClassPathJars = class_path->HasClassPathJars(package_name); in getStagedApexInfos()
|
/aosp_15_r20/art/tools/fuzzer/ |
H A D | libart_verify_classes_fuzzer.cc | 89 std::string GetClassPathOption(const char* option, const std::vector<std::string>& class_path) { in GetClassPathOption() argument 90 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
|
/aosp_15_r20/art/runtime/native/ |
H A D | dalvik_system_VMRuntime.cc | 204 static const char* DefaultToDot(const std::string& class_path) { in DefaultToDot() argument 205 return class_path.empty() ? "." : class_path.c_str(); in DefaultToDot()
|
/aosp_15_r20/art/oatdump/ |
H A D | oatdump.cc | 2597 std::vector<const DexFile*>* class_path) in InstallOatFile() argument 2612 class_path->push_back(dex_file); in InstallOatFile() 2620 jobject class_loader = class_linker->CreatePathClassLoader(self, *class_path); in InstallOatFile() 2623 for (const DexFile* dex_file : *class_path) { in InstallOatFile() 2640 std::vector<const DexFile*> class_path; in DumpOatWithRuntime() local 2641 jobject class_loader = InstallOatFile(runtime, std::move(oat_file), &class_path); in DumpOatWithRuntime() 2725 std::vector<const DexFile*> class_path; in Dump() local 2739 InstallOatFile(runtime, std::move(oat_file), &class_path))); in Dump() 2742 class_path = runtime->GetClassLinker()->GetBootClassPath(); in Dump() 2750 return DumpImtStats(runtime, class_path, class_loader); in Dump()
|
/aosp_15_r20/art/libartbase/base/ |
H A D | common_art_test.cc | 497 const std::vector<std::string>& class_path) { in GetClassPathOption() argument 498 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
|
H A D | common_art_test.h | 167 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/1/host-exports/include/art/libartbase/base/ |
D | common_art_test.h | 158 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/1/common_os/include/art/libartbase/base/ |
D | common_art_test.h | 158 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/3/common_os/include/art/libartbase/base/ |
D | common_art_test.h | 158 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/7/common_os/include/art/libartbase/base/ |
D | common_art_test.h | 167 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/13/include/art/libartbase/base/ |
D | common_art_test.h | 167 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/include/art/libartbase/base/ |
D | common_art_test.h | 168 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/13/common_os/include/art/libartbase/base/ |
D | common_art_test.h | 167 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/current/host-exports/include/art/libartbase/base/ |
D | common_art_test.h | 167 const std::vector<std::string>& class_path);
|
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/common_os/include/art/libartbase/base/ |
D | common_art_test.h | 167 const std::vector<std::string>& class_path);
|