Home | History | Annotate | Download | only in dex2oat

Lines Matching full:option

614     const StringPiece option(argv[i]);
617 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
619 if (option.starts_with("--dex-file=")) {
620 dex_filenames.push_back(option.substr(strlen("--dex-file=")).data());
621 } else if (option.starts_with("--dex-location=")) {
622 dex_locations.push_back(option.substr(strlen("--dex-location=")).data());
623 } else if (option.starts_with("--zip-fd=")) {
624 const char* zip_fd_str = option.substr(strlen("--zip-fd=")).data();
628 } else if (option.starts_with("--zip-location=")) {
629 zip_location = option.substr(strlen("--zip-location=")).data();
630 } else if (option.starts_with("--oat-file=")) {
631 oat_filename = option.substr(strlen("--oat-file=")).data();
632 } else if (option.starts_with("--oat-symbols=")) {
633 oat_symbols = option.substr(strlen("--oat-symbols=")).data();
634 } else if (option.starts_with("--oat-fd=")) {
635 const char* oat_fd_str = option.substr(strlen("--oat-fd=")).data();
639 } else if (option == "--watch-dog") {
641 } else if (option == "--no-watch-dog") {
643 } else if (option.starts_with("-j")) {
644 const char* thread_count_str = option.substr(strlen("-j")).data();
648 } else if (option.starts_with("--oat-location=")) {
649 oat_location = option.substr(strlen("--oat-location=")).data();
650 } else if (option.starts_with("--bitcode=")) {
651 bitcode_filename = option.substr(strlen("--bitcode=")).data();
652 } else if (option.starts_with("--image=")) {
653 image_filename = option.substr(strlen("--image=")).data();
654 } else if (option.starts_with("--image-classes=")) {
655 image_classes_filename = option.substr(strlen("--image-classes=")).data();
656 } else if (option.starts_with("--image-classes-zip=")) {
657 image_classes_zip_filename = option.substr(strlen("--image-classes-zip=")).data();
658 } else if (option.starts_with("--base=")) {
659 const char* image_base_str = option.substr(strlen("--base=")).data();
663 Usage("Failed to parse hexadecimal value for option %s", option.data());
665 } else if (option.starts_with("--boot-image=")) {
666 boot_image_filename = option.substr(strlen("--boot-image=")).data();
667 } else if (option.starts_with("--host-prefix=")) {
668 host_prefix.reset(new std::string(option.substr(strlen("--host-prefix=")).data()));
669 } else if (option.starts_with("--android-root=")) {
670 android_root = option.substr(strlen("--android-root=")).data();
671 } else if (option.starts_with("--instruction-set=")) {
672 StringPiece instruction_set_str = option.substr(strlen("--instruction-set=")).data();
680 } else if (option.starts_with("--compiler-backend=")) {
681 StringPiece backend_str = option.substr(strlen("--compiler-backend=")).data();
687 } else if (option == "--host") {
689 } else if (option == "--runtime-arg") {
694 LOG(INFO) << "dex2oat: option[" << i << "]=" << argv[i];
697 } else if (option == "--dump-timing") {
700 Usage("Unknown argument %s", option.data());