Lines Matching refs:args
783 def _VerifyLocalArgs(args): argument
795 if args.local_image and not os.path.exists(args.local_image):
797 "Specified path doesn't exist: %s" % args.local_image)
799 if args.local_instance_dir and not os.path.exists(args.local_instance_dir):
801 "Specified path doesn't exist: %s" % args.local_instance_dir)
803 if not (args.local_system_image is None or
804 args.avd_type in (constants.TYPE_CF, constants.TYPE_GF)):
807 args.avd_type)
809 if args.local_instance is None and args.local_image is not None and (
810 args.kernel_branch or args.kernel_build_id):
815 args.local_image if args.local_image else
818 if (args.local_system_image and
819 not os.path.exists(args.local_system_image)):
821 "Specified path doesn't exist: %s" % args.local_system_image)
823 for tool_dir in args.local_tool:
829 def _VerifyHostArgs(args): argument
839 if args.remote_host and args.local_instance is not None:
843 if args.remote_host and args.num > 1:
847 if args.host_user != constants.GCE_USER and args.remote_host is None:
851 if args.host_ssh_private_key_path and args.remote_host is None:
856 def _VerifyGoldfishArgs(args): argument
867 args.emulator_build_id,
868 args.emulator_build_target,
869 args.emulator_zip
871 if args.avd_type != constants.TYPE_GF and any(goldfish_only_flags):
877 args.kernel_build_id,
878 args.kernel_branch,
880 if args.avd_type == constants.TYPE_GF and any(remote_kernel_flags):
885 args.boot_build_id,
886 args.boot_build_target,
887 args.boot_branch,
888 args.boot_artifact,
890 if (args.avd_type == constants.TYPE_GF and any(remote_boot_flags) and
898 args.system_build_target,
899 args.system_build_id,
900 args.system_branch,
902 if (args.avd_type == constants.TYPE_GF and any(remote_system_flags) and
909 if args.avd_type == constants.TYPE_GF and args.remote_host is None and any(
916 def VerifyArgs(args): argument
931 if args.flavor and args.flavor not in constants.ALL_FLAVORS:
933 args.flavor, constants.ALL_FLAVORS)
935 if args.avd_type not in (constants.TYPE_CF, constants.TYPE_GF):
936 if args.system_branch or args.system_build_id or args.system_build_target:
939 % args.avd_type)
941 if args.num > 1:
942 if args.adb_port is not None:
946 if args.fastboot_port is not None:
950 if args.local_instance is not None:
954 if args.local_instance is None and args.gpu == _DEFAULT_GPU:
959 if args.adb_port is not None:
960 utils.CheckPortFree(args.adb_port)
962 if args.fastboot_port is not None:
963 utils.CheckPortFree(args.fastboot_port)
965 hw_properties = create_common.ParseKeyValuePairArgs(args.hw_property)
972 cheeps_only_flags = [args.stable_cheeps_host_image_name,
973 args.stable_cheeps_host_image_project,
974 args.username,
975 args.password,
976 args.cheeps_betty_image,
977 args.cheeps_features]
978 if args.avd_type != constants.TYPE_CHEEPS and any(cheeps_only_flags):
983 if (args.username or args.password) and not (args.username and args.password):
985 if not args.autoconnect and args.unlock_screen:
989 _VerifyGoldfishArgs(args)
990 _VerifyLocalArgs(args)
991 _VerifyHostArgs(args)