/art/test/952-invoke-custom/ |
D | build | 31 local classpath="./transformer.jar:$ASM_JAR" 34 -cp|-classpath|--class-path) 37 args+=(-cp $classpath)
|
/art/runtime/ |
D | class_loader_context.cc | 202 std::string classpath = class_loader_spec.substr(type_str_size + 1, in ParseClassLoaderSpec() local 209 Split(classpath, kClasspathSeparator, &info->classpath); in ParseClassLoaderSpec() 212 Split(classpath, kClasspathSeparator, &classpath_elements); in ParseClassLoaderSpec() 228 info->classpath.push_back(dex_file_with_checksum[0]); in ParseClassLoaderSpec() 436 for (const std::string& cp_elem : info->classpath) { in OpenDexFiles() 510 info->original_classpath = std::move(info->classpath); in OpenDexFiles() 511 info->classpath.clear(); in OpenDexFiles() 515 info->classpath.push_back(dex->GetLocation()); in OpenDexFiles() 551 size_t initial_size = info->classpath.size(); in RemoveLocationsFromClassPaths() 553 info->classpath.begin(), in RemoveLocationsFromClassPaths() [all …]
|
D | class_loader_context_test.cc | 52 const std::string& classpath) { in VerifyClassLoaderPCL() argument 54 context, index, ClassLoaderContext::kPathClassLoader, classpath); in VerifyClassLoaderPCL() 59 const std::string& classpath) { in VerifyClassLoaderDLC() argument 61 context, index, ClassLoaderContext::kDelegateLastClassLoader, classpath); in VerifyClassLoaderDLC() 66 const std::string& classpath) { in VerifyClassLoaderIMC() argument 68 context, index, ClassLoaderContext::kInMemoryDexClassLoader, classpath); in VerifyClassLoaderIMC() 74 const std::string& classpath) { in VerifyClassLoaderSharedLibraryPCL() argument 77 classpath); in VerifyClassLoaderSharedLibraryPCL() 83 const std::string& classpath) { in VerifyClassLoaderSharedLibraryIMC() argument 86 classpath); in VerifyClassLoaderSharedLibraryIMC() [all …]
|
D | class_loader_context.h | 223 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/runtime/native/ |
D | dalvik_system_BaseDexClassLoader.cc | 52 const std::string& classpath = classpath_to_context.first; in BaseDexClassLoader_computeClassLoaderContextsNative() local 54 if (!append_string(env, result, i, classpath) || !append_string(env, result, i, context)) { in BaseDexClassLoader_computeClassLoaderContextsNative()
|
/art/test/719-dm-verify-redefinition/ |
D | expected.txt | 1 Fast verification failed: Class LRedefined; redefines a class in the classpath
|
/art/test/etc/ |
D | default-build | 375 …javac_with_bootclasspath -implicit:none -classpath src-multidex -d classes `find src -name '*.java… 380 …javac_with_bootclasspath -implicit:none -classpath src-multidex -d classes `find src-art -name '*.… 385 …javac_with_bootclasspath -implicit:none -classpath src -d classes2 `find src-multidex -name '*.jav… 393 javac_with_bootclasspath -classpath classes -d classes `find src2 -name '*.java'`
|
/art/libartbase/base/ |
D | common_art_test.cc | 548 std::string classpath = dex_files[0]->GetLocation(); in CreateClassPath() local 550 classpath += ":" + dex_files[i]->GetLocation(); in CreateClassPath() 552 return classpath; in CreateClassPath() 558 std::string classpath = dex_files[0]->GetLocation() + "*" + in CreateClassPathWithChecksums() local 561 classpath += ":" + dex_files[i]->GetLocation() + "*" + in CreateClassPathWithChecksums() 564 return classpath; in CreateClassPathWithChecksums()
|
/art/runtime/verifier/ |
D | verifier_deps.h | 132 const std::vector<const DexFile*>& classpath, 335 const std::vector<const DexFile*>& classpath, 355 const std::vector<const DexFile*>& classpath,
|
D | verifier_deps.cc | 984 const std::vector<const DexFile*>& classpath, in ValidateDependencies() argument 987 if (!VerifyDexFile(class_loader, *entry.first, *entry.second, classpath, self, error_msg)) { in ValidateDependencies() 1225 const std::vector<const DexFile*>& classpath, in VerifyInternalClasses() argument 1252 IsInDexFiles(descriptor, hash, classpath, &cp_dex_file)) { in VerifyInternalClasses() 1267 const std::vector<const DexFile*>& classpath, in VerifyDexFile() argument 1271 classpath, in VerifyDexFile()
|
/art/tools/ |
D | art | 133 local classpath 134 classpath=("$@")
|
D | run-jdwp-tests.sh | 441 --classpath "$test_jar" \
|
D | dex2oat_wrapper | 20 # boot classpath and bootclasspath locations.
|
/art/tools/common/ |
D | common.py | 480 def PushClasspath(self, classpath): argument 491 paths = classpath.split(':')
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 442 explicit Hierarchy(ClassPath& classpath) : classpath_(classpath) { in Hierarchy() argument
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1109 const char* classpath = oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in RunTest() local 1110 ASSERT_TRUE(classpath != nullptr); in RunTest() 1111 ASSERT_STREQ(expected_classpath_key, classpath); in RunTest()
|