Searched refs:option (Results 1 - 4 of 4) sorted by relevance

/art/runtime/
H A Druntime.cc390 const std::string option(options[i].first);
392 LOG(INFO) << "option[" << i << "]=" << option; local
394 if (StartsWith(option, "-Xbootclasspath:")) {
395 parsed->boot_class_path_string_ = option.substr(strlen("-Xbootclasspath:")).data();
396 } else if (option == "-classpath" || option == "-cp") {
401 LOG(FATAL) << "Missing required class path value for " << option;
406 } else if (option == "bootclasspath") {
409 } else if (StartsWith(option, "
[all...]
H A Djni_internal.cc2896 JavaVMOption* option = &args->options[i]; local
2897 options.push_back(std::make_pair(std::string(option->optionString), option->extraInfo));
/art/dex2oat/
H A Ddex2oat.cc619 const StringPiece option(argv[i]);
622 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
624 if (option.starts_with("--dex-file=")) {
625 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
626 } else if (option.starts_with("--dex-location=")) {
627 dex_locations.push_back(option.substr(strlen("--dex-location=")).data());
628 } else if (option.starts_with("--zip-fd=")) {
629 const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data();
633 } else if (option.starts_with("--zip-location=")) {
634 zip_location = option
[all...]
/art/oatdump/
H A Doatdump.cc1372 const StringPiece option(argv[i]);
1373 if (option.starts_with("--oat-file=")) {
1374 oat_filename = option.substr(strlen("--oat-file=")).data();
1375 } else if (option.starts_with("--image=")) {
1376 image_filename = option.substr(strlen("--image=")).data();
1377 } else if (option.starts_with("--boot-image=")) {
1378 boot_image_filename = option.substr(strlen("--boot-image=")).data();
1379 } else if (option.starts_with("--host-prefix=")) {
1380 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
1381 } else if (option
[all...]

Completed in 3253 milliseconds