Home
last modified time | relevance | path

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

/art/runtime/
Dclass_loader_context.cc198 std::string classpath = class_loader_spec.substr(type_str_size + 1, 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()
431 for (const std::string& cp_elem : info->classpath) { in OpenDexFiles()
503 info->original_classpath = std::move(info->classpath); in OpenDexFiles()
504 info->classpath.clear(); in OpenDexFiles()
508 info->classpath.push_back(dex->GetLocation()); in OpenDexFiles()
544 size_t initial_size = info->classpath.size(); in RemoveLocationsFromClassPaths()
546 info->classpath.begin(), in RemoveLocationsFromClassPaths()
[all …]
Dclass_loader_context_test.cc52 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 …]
Dclass_loader_context.h178 std::vector<std::string> classpath; member
/art/test/952-invoke-custom/
Dbuild31 local classpath="./transformer.jar:$ASM_JAR"
34 -cp|-classpath|--class-path)
37 args+=(-cp $classpath)
/art/tools/bisection_search/
Dbisection_search.py355 def PrepareBaseCommand(args, classpath): argument
371 base_cmd += ['-cp', classpath, args.classname] + args.test_args
379 if not args.raw_cmd and (not args.classpath or not args.classname):
389 classpath = args.classpath
394 if classpath:
395 classpath = test_env.PushClasspath(classpath)
399 base_cmd = PrepareBaseCommand(args, classpath)
DREADME.md52 -cp CLASSPATH, --classpath CLASSPATH classpath
/art/test/719-dm-verify-redefinition/
Dexpected.txt1 Fast verification failed: Class LRedefined; redefines a class in the classpath
/art/test/etc/
Ddefault-build375 …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/
Dcommon_art_test.cc491 std::string classpath = dex_files[0]->GetLocation(); in CreateClassPath() local
493 classpath += ":" + dex_files[i]->GetLocation(); in CreateClassPath()
495 return classpath; in CreateClassPath()
501 std::string classpath = dex_files[0]->GetLocation() + "*" + in CreateClassPathWithChecksums() local
504 classpath += ":" + dex_files[i]->GetLocation() + "*" + in CreateClassPathWithChecksums()
507 return classpath; in CreateClassPathWithChecksums()
/art/tools/
Dart114 -cp|-classpath)
125 # Delete the 'oat' directories relative to the classpath's dex files.
128 local classpath
129 classpath=("$@")
133 for path in "${classpath[@]}"; do
139 # Parse -cp <CP>, -classpath <CP>, and $CLASSPATH to find the dex files.
147 # Second try: Look for latest -cp or -classpath arg which will take precedence.
252 # Reset any previously parsed classpath, just like dalvikvm
255 # TODO: support -classpath and CLASSPATH
561 # classpath) and other special characters when evaluated.
[all …]
Drun-jdwp-tests.sh413 --classpath "$test_jar" \
/art/build/apex/
Dart_apex_boot_integrity.rc16 # Check that boot classpath files in /data/dalvik-cache have fsverity
/art/runtime/verifier/
Dverifier_deps.h131 const std::vector<const DexFile*>& classpath,
332 const std::vector<const DexFile*>& classpath,
352 const std::vector<const DexFile*>& classpath,
Dverifier_deps.cc918 const std::vector<const DexFile*>& classpath, in ValidateDependencies() argument
921 if (!VerifyDexFile(class_loader, *entry.first, *entry.second, classpath, self, error_msg)) { in ValidateDependencies()
1159 const std::vector<const DexFile*>& classpath, in VerifyInternalClasses() argument
1186 IsInDexFiles(descriptor, hash, classpath, &cp_dex_file)) { in VerifyInternalClasses()
1201 const std::vector<const DexFile*>& classpath, in VerifyDexFile() argument
1205 classpath, in VerifyDexFile()
/art/tools/common/
Dcommon.py478 def PushClasspath(self, classpath): argument
489 paths = classpath.split(':')
/art/tools/hiddenapi/
Dhiddenapi.cc442 explicit Hierarchy(ClassPath& classpath) : classpath_(classpath) { in Hierarchy() argument
/art/dex2oat/
Ddex2oat_test.cc1078 const char* classpath = oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in RunTest() local
1079 ASSERT_TRUE(classpath != nullptr); in RunTest()
1080 ASSERT_STREQ(expected_classpath_key, classpath); in RunTest()