Lines Matching full:optarg
58 if (*optarg == ':') {
59 if (strcmp(optarg, ":kernel") == 0)
61 else if (strcmp(optarg, ":libs") == 0)
65 excluded_procedures.Update(optarg, 1);
67 } else if (isdigit(*optarg)) {
68 int bitnum = atoi(optarg);
72 excluded_procedures.Update(optarg, 1);
77 if (*optarg == ':') {
78 if (strcmp(optarg, ":kernel") == 0)
80 else if (strcmp(optarg, ":libs") == 0)
84 included_procedures.Update(optarg, 1);
86 } else if (isdigit(*optarg)) {
87 int bitnum = atoi(optarg);
91 included_procedures.Update(optarg, 1);
96 if (strcmp(optarg, ":kernel") == 0)
98 else if (strcmp(optarg, ":libs") == 0)
107 root = optarg;