Home
last modified time | relevance | path

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

/art/test/952-invoke-custom/
Dbuild30 local classpath="./transformer.jar:$ASM_JAR"
31 local args=(-cp $classpath)
34 -cp|-classpath|--class-path)
/art/runtime/
Dclass_loader_context.cc199 std::string classpath = class_loader_spec.substr(type_str_size + 1, in ParseClassLoaderSpec() local
206 Split(classpath, kClasspathSeparator, &info->classpath); in ParseClassLoaderSpec()
209 Split(classpath, kClasspathSeparator, &classpath_elements); in ParseClassLoaderSpec()
225 info->classpath.push_back(dex_file_with_checksum[0]); in ParseClassLoaderSpec()
430 for (const std::string& cp_elem : info->classpath) { in OpenDexFiles()
498 info->original_classpath = std::move(info->classpath); in OpenDexFiles()
500 info->classpath = dex_locations; in OpenDexFiles()
535 size_t initial_size = info->classpath.size(); in RemoveLocationsFromClassPaths()
537 info->classpath.begin(), in RemoveLocationsFromClassPaths()
538 info->classpath.end(), 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.h230 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.h124 void SetDex2oatBootclasspath(const std::string& classpath) { in SetDex2oatBootclasspath() argument
125 dex2oat_boot_classpath_ = classpath; in SetDex2oatBootclasspath()
131 void SetSystemServerClasspath(const std::string& classpath) { in SetSystemServerClasspath() argument
132 system_server_classpath_ = classpath; in SetSystemServerClasspath()
/art/runtime/native/
Ddalvik_system_BaseDexClassLoader.cc52 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/831-unverified-bcp/
Dinfo.txt2 an exception was pending after looking up a class in the boot classpath.
/art/libartbase/base/
Dcommon_art_test.cc580 std::string classpath = dex_files[0]->GetLocation(); in CreateClassPath() local
582 classpath += ":" + dex_files[i]->GetLocation(); in CreateClassPath()
584 return classpath; in CreateClassPath()
590 std::string classpath = dex_files[0]->GetLocation() + "*" + in CreateClassPathWithChecksums() local
593 classpath += ":" + dex_files[i]->GetLocation() + "*" + in CreateClassPathWithChecksums()
596 return classpath; in CreateClassPathWithChecksums()
/art/tools/
Dart133 local classpath
134 classpath=("$@")
Drun-jdwp-tests.sh441 --classpath "$test_jar" \
Drun-libcore-tests.py119 def get_jar_filename(classpath): argument
Ddex2oat_wrapper20 # boot classpath and bootclasspath locations.
/art/openjdkjvm/
DAndroid.bp39 "SPDX-license-identifier-GPL-with-classpath-exception",
/art/dt_fd_forward/
DAndroid.bp43 "SPDX-license-identifier-GPL-with-classpath-exception",
/art/tools/common/
Dcommon.py480 def PushClasspath(self, classpath): argument
491 paths = classpath.split(':')
/art/openjdkjvmti/
DAndroid.bp40 "SPDX-license-identifier-GPL-with-classpath-exception",
/art/test/etc/
Ddefault-build414 javac_with_bootclasspath -classpath classes -d classes `find src2 -name '*.java'`
/art/tools/hiddenapi/
Dhiddenapi.cc460 Hierarchy(ClassPath& classpath, bool fragment, bool verbose) : classpath_(classpath) { in Hierarchy() argument
/art/dex2oat/
Ddex2oat_test.cc947 const char* classpath = oat_file.GetOatHeader().GetStoreValueByKey(OatHeader::kClassPathKey); in RunTest() local
948 ASSERT_TRUE(classpath != nullptr); in RunTest()
949 ASSERT_STREQ(expected_classpath_key, classpath); in RunTest()