Lines Matching full:optarg
6 else if (strncmp (optarg, "call-nop=", 9) == 0)
8 if (strcmp (optarg + 9, "prefix-addr") == 0)
13 else if (strcmp (optarg + 9, "prefix-nop") == 0)
18 else if (strcmp (optarg + 9, "suffix-nop") == 0)
23 else if (strncmp (optarg + 9, "prefix-", 7) == 0)
26 link_info.call_nop_byte = strtoul (optarg + 16 , &end, 0);
29 optarg + 16);
32 else if (strncmp (optarg + 9, "suffix-", 7) == 0)
35 link_info.call_nop_byte = strtoul (optarg + 16, &end, 0);
38 optarg + 16);
42 einfo (_("%P%F: unsupported option: -z %s\n"), optarg);