/art/runtime/ |
D | class_loader_context.cc | 198 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 …]
|
D | class_loader_context_test.cc | 76 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 …]
|
D | class_loader_context.h | 235 std::vector<std::string> classpath; member
|
/art/tools/bisection_search/ |
D | bisection_search.py | 353 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)
|
D | README.md | 52 -cp CLASSPATH, --classpath CLASSPATH classpath
|
/art/odrefresh/ |
D | odr_config.h | 240 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/ |
D | dalvik_system_BaseDexClassLoader.cc | 63 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/ |
D | PrimaryDexUtils.java | 189 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()
|
D | ArtManagerLocal.java | 857 .filter(classpath -> !TextUtils.isEmpty(classpath)) in snapshotBootImageProfile() 858 .flatMap(classpath -> Arrays.stream(classpath.split(":"))) in snapshotBootImageProfile()
|
/art/test/831-unverified-bcp/ |
D | info.txt | 2 an exception was pending after looking up a class in the boot classpath.
|
/art/test/845-fast-verify/ |
D | info.txt | 4 boot classpath change)
|
/art/tools/ |
D | art | 133 local classpath 134 classpath=("$@")
|
D | run-jdwp-tests.sh | 441 --classpath "$test_jar" \
|
D | run-libcore-tests.py | 369 def get_jar_filename(classpath): argument
|
/art/openjdkjvm/ |
D | Android.bp | 39 "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
|
/art/dt_fd_forward/ |
D | Android.bp | 43 "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
|
/art/libartbase/base/ |
D | common_art_test.cc | 589 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/ |
D | common.py | 480 def PushClasspath(self, classpath): argument 491 paths = classpath.split(':')
|
/art/openjdkjvmti/ |
D | Android.bp | 40 "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 441 Hierarchy(ClassPath& classpath, bool fragment, bool verbose) : classpath_(classpath) { in Hierarchy() argument
|
/art/test/ |
D | README.atest.md | 147 You first need to build the boot classpath and boot image on host:
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1052 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()
|