Home
last modified time | relevance | path

Searched refs:classpath (Results 1 – 22 of 22) sorted by relevance

/art/runtime/
Dclass_loader_context.cc198 std::string classpath = in ParseClassLoaderSpec() local
205 Split(classpath, kClasspathSeparator, &info->classpath); in ParseClassLoaderSpec()
208 Split(classpath, kClasspathSeparator, &classpath_elements); in ParseClassLoaderSpec()
224 info->classpath.push_back(dex_file_with_checksum[0]); in ParseClassLoaderSpec()
454 for (const std::string& cp_elem : info->classpath) { in OpenDexFiles()
523 info->original_classpath = std::move(info->classpath); in OpenDexFiles()
525 info->classpath = std::move(dex_locations); in OpenDexFiles()
560 size_t initial_size = info->classpath.size(); in RemoveLocationsFromClassPaths()
561 auto kept_it = std::remove_if(info->classpath.begin(), in RemoveLocationsFromClassPaths()
562 info->classpath.end(), in RemoveLocationsFromClassPaths()
[all …]
Dclass_loader_context_test.cc76 const std::string& classpath) { in VerifyClassLoaderPCL() argument
78 context, index, ClassLoaderContext::kPathClassLoader, classpath); in VerifyClassLoaderPCL()
83 const std::string& classpath) { in VerifyClassLoaderDLC() argument
85 context, index, ClassLoaderContext::kDelegateLastClassLoader, classpath); in VerifyClassLoaderDLC()
90 const std::string& classpath) { in VerifyClassLoaderIMC() argument
92 context, index, ClassLoaderContext::kInMemoryDexClassLoader, classpath); in VerifyClassLoaderIMC()
98 const std::string& classpath) { in VerifyClassLoaderSharedLibraryPCL() argument
101 classpath); in VerifyClassLoaderSharedLibraryPCL()
107 const std::string& classpath) { in VerifyClassLoaderSharedLibraryPCLAfter() argument
110 classpath); in VerifyClassLoaderSharedLibraryPCLAfter()
[all …]
Dclass_loader_context.h235 std::vector<std::string> classpath; member
/art/tools/bisection_search/
Dbisection_search.py353 def PrepareBaseCommand(args, classpath): argument
369 base_cmd += ['-cp', classpath, args.classname] + args.test_args
377 if not args.raw_cmd and (not args.classpath or not args.classname):
387 classpath = args.classpath
392 if classpath:
393 classpath = test_env.PushClasspath(classpath)
397 base_cmd = PrepareBaseCommand(args, classpath)
DREADME.md52 -cp CLASSPATH, --classpath CLASSPATH classpath
/art/odrefresh/
Dodr_config.h240 void SetDex2oatBootclasspath(const std::string& classpath) { in SetDex2oatBootclasspath() argument
241 dex2oat_boot_classpath_ = classpath; in SetDex2oatBootclasspath()
257 void SetSystemServerClasspath(const std::string& classpath) { in SetSystemServerClasspath() argument
258 system_server_classpath_ = classpath; in SetSystemServerClasspath()
272 void SetBootClasspath(const std::string& classpath) { boot_classpath_ = classpath; } in SetBootClasspath() argument
/art/runtime/native/
Ddalvik_system_BaseDexClassLoader.cc63 const std::string& classpath = classpath_to_context.first; in BaseDexClassLoader_computeClassLoaderContextsNative() local
65 if (!append_string(self, array, i, classpath) || !append_string(self, array, i, context)) { in BaseDexClassLoader_computeClassLoaderContextsNative()
/art/libartservice/service/java/com/android/server/art/
DPrimaryDexUtils.java189 List<String> classpath = new ArrayList<>(); in computeClassLoaderContexts() local
192 dexInfo.mClassLoaderContext = encodeClassLoader(baseClassLoaderName, classpath, in computeClassLoaderContexts()
201 classpath.add(dexInfo.mRelativeDexPath); in computeClassLoaderContexts()
256 @Nullable List<String> classpath, @Nullable String parentContext, in encodeClassLoader() argument
263 "[" + (classpath != null ? String.join(":", classpath) : "") + "]"); in encodeClassLoader()
DArtManagerLocal.java857 .filter(classpath -> !TextUtils.isEmpty(classpath)) in snapshotBootImageProfile()
858 .flatMap(classpath -> Arrays.stream(classpath.split(":"))) in snapshotBootImageProfile()
/art/test/831-unverified-bcp/
Dinfo.txt2 an exception was pending after looking up a class in the boot classpath.
/art/test/845-fast-verify/
Dinfo.txt4 boot classpath change)
/art/tools/
Dart133 local classpath
134 classpath=("$@")
Drun-jdwp-tests.sh441 --classpath "$test_jar" \
Drun-libcore-tests.py369 def get_jar_filename(classpath): argument
/art/openjdkjvm/
DAndroid.bp39 "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
/art/dt_fd_forward/
DAndroid.bp43 "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
/art/libartbase/base/
Dcommon_art_test.cc589 std::string classpath = dex_files[0]->GetLocation(); in CreateClassPath() local
591 classpath += ":" + dex_files[i]->GetLocation(); in CreateClassPath()
593 return classpath; in CreateClassPath()
/art/tools/common/
Dcommon.py480 def PushClasspath(self, classpath): argument
491 paths = classpath.split(':')
/art/openjdkjvmti/
DAndroid.bp40 "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
/art/tools/hiddenapi/
Dhiddenapi.cc441 Hierarchy(ClassPath& classpath, bool fragment, bool verbose) : classpath_(classpath) { in Hierarchy() argument
/art/test/
DREADME.atest.md147 You first need to build the boot classpath and boot image on host:
/art/dex2oat/
Ddex2oat_test.cc1052 const char* classpath = oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in RunTest() local
1053 ASSERT_TRUE(classpath != nullptr); in RunTest()
1054 ASSERT_STREQ(expected_classpath_key, classpath); in RunTest()