Lines Matching defs:result
119 int result = RET_END_OPT_LIST;
129 result = getopt_1char(argc, argv, opstring, arg[1]);
132 return result;
147 int result = 0;
149 while ((result == 0) && (*optname != 0) && (*argval != 0))
150 result = (*argval++) - (*optname++);
151 return result;
162 int result = RET_UNKNOWN_OPT;
198 result = longopts[loptn].val;
206 optopt = result;
221 *longopts[loptn].flag = result;
222 result = 0;
227 return result;
249 int result = RET_END_OPT_LIST;
259 result = getopt_1long(argc,
265 result = getopt_1char(argc,
272 return result;
287 int result = RET_END_OPT_LIST;
297 result = getopt_1long(argc,
303 result = getopt_1long(argc,
308 if (result == RET_UNKNOWN_OPT) {
309 result = getopt_1char(argc,
317 return result;