HomeSort by relevance Sort by last modified time
    Searched refs:boot_class_path (Results 1 - 9 of 9) sorted by null

  /art/runtime/
parsed_options_test.cc 35 std::string boot_class_path; local
36 boot_class_path += "-Xbootclasspath:";
37 boot_class_path += lib_core;
40 options.push_back(std::make_pair(boot_class_path.c_str(), null));
runtime.cc 824 std::vector<const DexFile*> boot_class_path; local
825 OpenDexFiles(dex_filenames, options->image_, boot_class_path);
826 class_linker_->InitWithoutImage(boot_class_path);
    [all...]
class_linker.h 67 void InitWithoutImage(const std::vector<const DexFile*>& boot_class_path)
    [all...]
class_linker.cc 199 void ClassLinker::InitWithoutImage(const std::vector<const DexFile*>& boot_class_path) {
350 CHECK_NE(0U, boot_class_path.size());
351 for (const DexFile* dex_file : boot_class_path) {
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 364 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
365 for (size_t i = 0; i< boot_class_path.size(); i++) {
366 const DexFile* dex_file = boot_class_path[i];
381 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
382 for (size_t i = 0; i< boot_class_path.size(); i++) {
383 const DexFile* dex_file = boot_class_path[i];
443 const std::vector<const DexFile*>& boot_class_path = linker->GetBootClassPath(); local
444 for (size_t i = 0; i< boot_class_path.size(); i++) {
445 const DexFile* dex_file = boot_class_path[i];
dalvik_system_DexFile.cc 400 const std::vector<const DexFile*>& boot_class_path = class_linker->GetBootClassPath(); local
401 for (size_t i = 0; i < boot_class_path.size(); i++) {
402 if (boot_class_path[i]->GetLocation() == filename) {
  /art/runtime/gc/space/
image_space.cc 145 std::vector<std::string> boot_class_path; local
146 Split(boot_class_path_string, ':', boot_class_path);
147 if (boot_class_path.empty()) {
166 for (size_t i = 0; i < boot_class_path.size(); i++) {
167 arg_vector.push_back(std::string("--dex-file=") + boot_class_path[i]);
    [all...]
  /art/runtime/jdwp/
jdwp_handler.cc 338 std::vector<std::string> boot_class_path; local
339 Split(Runtime::Current()->GetBootClassPathString(), ':', boot_class_path);
340 expandBufAdd4BE(pReply, boot_class_path.size());
341 for (size_t i = 0; i < boot_class_path.size(); ++i) {
342 expandBufAddUtf8String(pReply, boot_class_path[i]);
    [all...]
  /art/dex2oat/
dex2oat.cc 1332 std::vector<const DexFile*> boot_class_path; local
    [all...]

Completed in 481 milliseconds