Home
last modified time | relevance | path

Searched refs:class_path (Results 1 – 25 of 32) sorted by relevance

12

/aosp_15_r20/art/runtime/
H A Dparsed_options_test.cc39 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 Dcommon_runtime_test.cc234 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 Djvm_tooling.cpp213 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 Dimage_test.h169 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__.py98 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 Dmodule_finder_unittest.py1084 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 Dti_properties.cc156 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 Dojluni_merge_package.sh174 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 Dcompiler_driver_test.cc73 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 Dpcie_host.rs136 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 Dapexservice.cpp464 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 Dlibart_verify_classes_fuzzer.cc89 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 Ddalvik_system_VMRuntime.cc204 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 Doatdump.cc2597 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 Dcommon_art_test.cc497 const std::vector<std::string>& class_path) { in GetClassPathOption() argument
498 return option + android::base::Join(class_path, ':'); in GetClassPathOption()
H A Dcommon_art_test.h167 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/1/host-exports/include/art/libartbase/base/
Dcommon_art_test.h158 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/1/common_os/include/art/libartbase/base/
Dcommon_art_test.h158 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/3/common_os/include/art/libartbase/base/
Dcommon_art_test.h158 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/7/common_os/include/art/libartbase/base/
Dcommon_art_test.h167 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/13/include/art/libartbase/base/
Dcommon_art_test.h167 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/include/art/libartbase/base/
Dcommon_art_test.h168 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/13/common_os/include/art/libartbase/base/
Dcommon_art_test.h167 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/current/host-exports/include/art/libartbase/base/
Dcommon_art_test.h167 const std::vector<std::string>& class_path);
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/common_os/include/art/libartbase/base/
Dcommon_art_test.h167 const std::vector<std::string>& class_path);

12