Searched defs:class_path (Results 1 - 11 of 11) sorted by path

/art/compiler/driver/
H A Dcompiler_driver_test.cc70 const std::vector<const DexFile*> class_path = GetDexFiles(class_loader); local
71 for (size_t i = 0; i != class_path.size(); ++i) {
72 const DexFile* dex_file = class_path[i];
/art/compiler/
H A Dimage_test.cc109 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); local
117 class_path.push_back(dex_file.get());
121 for (const DexFile* dex_file : class_path) {
131 for (int i = 0; i < static_cast<int>(class_path.size()); ++i) {
167 for (const DexFile* dex_file : class_path) {
184 driver->SetDexFilesForOatFile(class_path);
185 driver->CompileAll(class_loader, class_path, &timings);
190 for (size_t i = 0; i < class_path.size(); ++i) {
215 const DexFile* dex_file = class_path[i];
256 std::vector<const DexFile*> cur_dex_files(1u, class_path[
[all...]
/art/dex2oat/
H A Ddex2oat.cc1966 std::vector<std::string> GetClassPathLocations(const std::string& class_path) { argument
1976 Split(class_path, ':', &parsed);
H A Ddex2oat_test.cc119 std::string class_path = runtime->GetClassPathString(); local
120 if (class_path == "") {
121 class_path = OatFile::kSpecialSharedLibrary;
123 argv.push_back(class_path);
/art/oatdump/
H A Doatdump.cc2280 std::vector<const DexFile*> class_path; local
2286 class_path.push_back(dex_file);
2291 jobject class_loader = class_linker->CreatePathClassLoader(self, class_path);
/art/runtime/
H A Dclass_linker.cc509 // Setup boot_class_path_ and register class_path now that we can use AllocObjectArray to create
2229 size_t hash, const std::vector<const DexFile*>& class_path) {
2230 for (const DexFile* dex_file : class_path) {
2228 FindInClassPath(const char* descriptor, size_t hash, const std::vector<const DexFile*>& class_path) argument
H A Dcommon_runtime_test.cc583 std::vector<const DexFile*> class_path; local
586 class_path.push_back(dex_file.get());
592 class_path);
H A Doat_file_assistant.cc752 std::string class_path = runtime->GetClassPathString(); local
753 if (class_path == "") {
754 class_path = OatFile::kSpecialSharedLibrary;
756 argv.push_back(class_path);
H A Dparsed_options_test.cc40 std::string class_path; local
47 class_path += ":";
51 class_path += dex_file_name;
53 boot_class_path += class_path;
58 options.push_back(std::make_pair(class_path.c_str(), nullptr));
60 options.push_back(std::make_pair(class_path.c_str(), nullptr));
84 EXPECT_PARSED_EQ(class_path, Opt::BootClassPath);
85 EXPECT_PARSED_EQ(class_path, Opt::ClassPath);
/art/runtime/jdwp/
H A Djdwp_handler.cc285 std::vector<std::string> class_path; local
286 Split(Runtime::Current()->GetClassPathString(), ':', &class_path);
287 expandBufAdd4BE(pReply, class_path.size());
288 for (const std::string& str : class_path) {
/art/runtime/native/
H A Ddalvik_system_VMRuntime.cc161 static const char* DefaultToDot(const std::string& class_path) { argument
162 return class_path.empty() ? "." : class_path.c_str();

Completed in 183 milliseconds