Home | History | Annotate | Download | only in manual_tests

Lines Matching full:optarg

967             option.app_id = (uint8_t)strtoul(optarg, &e, 16);
968 if (!*optarg || (e && *e))
969 Error("Invalid argument: \"%s\"", optarg);
972 option.param = (uint16_t)strtoul(optarg, &e, 16);
973 if (!*optarg || (e && *e))
974 Error("Invalid argument: \"%s\"", optarg);
977 option.more = (uint32_t)strtoul(optarg, &e, 0);
978 if (!*optarg || (e && *e) || option.more < 0)
979 Error("Invalid argument: \"%s\"", optarg);
998 option.device = optarg;