Lines Matching refs:arglist
151 char **arglist; /* List of arguments */
238 arglist = argv + optind;
239 criterialist = buildcriterialist(arglist);
240 devicelist = builddevlist(arglist);
262 * char **buildcriterialist(arglist)
263 * char **arglist
268 * arglist The list of arguments on the command-line
276 buildcriterialist(arglist)
277 char **arglist; /* Pointer to the list of argument pointers */
294 pp = arglist;
310 while (*arglist && /* If there's more to do ... */
311 (strchr(*arglist, '=') || /* and it's a = criterion ... */
312 strchr(*arglist, ':'))) /* or it's a : criterion ... */
313 *pp++ = *arglist++; /* Include it in the list */
324 * char **builddevlist(arglist)
325 * char **arglist
331 * arglist The address of the list of arguments to the
340 builddevlist(arglist)
341 char **arglist; /* Pointer to the list of pointers to args */
353 while (*arglist && (strchr(*arglist, '=') || strchr(*arglist, ':'))) arglist++;
356 return(*arglist?arglist:(char **) NULL);