HomeSort by: relevance | last modified time | path
    Searched defs:arglist (Results 1 - 11 of 11) sorted by relevancy

  /src/bin/sh/
expand.h 45 struct arglist { struct
69 void expandarg(union node *, struct arglist *, int);
eval.c 453 struct arglist arglist; local in function:evalfor
462 arglist.lastp = &arglist.list;
464 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
468 *arglist.lastp = NULL;
471 for (sp = arglist.list ; sp ; sp = sp->next) {
511 struct arglist arglist; local in function:evalcase
516 arglist.lastp = &arglist.list
883 struct arglist arglist; local in function:evalcommand
    [all...]
  /src/usr.sbin/mailwrapper/
mailwrapper.c 42 struct arglist { struct
47 static void initarg(struct arglist *);
48 static void addarg(struct arglist *, const char *, int);
51 initarg(struct arglist *al)
68 addarg(struct arglist *al, const char *arg, int copy)
90 struct arglist al;
  /src/usr.sbin/powerd/
powerd.c 368 va_list arglist; local in function:powerd_log
371 va_start(arglist, msg);
373 vsyslog(pri, msg, arglist);
381 vfprintf(stderr, msg, arglist);
383 va_end(arglist);
  /src/sbin/restore/
interactive.c 79 struct arglist { struct
89 static void getcmd(char *, char *, char *, size_t, struct arglist *);
103 struct arglist arglist; local in function:runcmdshell
108 arglist.freeglob = 0;
109 arglist.argcnt = 0;
110 arglist.glob.gl_flags = GLOB_ALTDIRFUNC;
111 arglist.glob.gl_opendir = (void *)rst_opendir;
112 arglist.glob.gl_readdir = (void *)glob_readdir;
113 arglist.glob.gl_closedir = (void *)rst_closedir
    [all...]
  /src/usr.bin/last/
last.c 102 static ARG *arglist; /* head of linked list */ variable in typeref:typename:ARG *
278 cur->next = arglist;
281 arglist = cur;
  /src/usr.bin/mail/
support.c 333 char **arglist = v; local in function:source
337 if ((cp = expand(*arglist)) == NULL)
cmd3.c 204 char **arglist; local in function:schdir
207 arglist = v;
208 if (*arglist == NULL)
211 if ((cp = expand(*arglist)) == NULL)
684 const char **arglist = v; local in function:set
692 if (*arglist == NULL) {
707 for (ap = arglist; *ap != NULL; ap++) {
736 char **arglist = v; local in function:unset
742 for (ap = arglist; *ap != NULL; ap++) {
776 const char **arglist = v local in function:show
    [all...]
lex.c 626 char *arglist[MAXARGC]; local in function:execute
765 if ((c = getrawlist(cp, arglist, (int)__arraycount(arglist))) < 0)
777 e = (*com->c_func)(arglist);
  /src/usr.bin/rpcgen/
rpc_main.c 120 static const char *arglist[ARGLISTLEN]; variable in typeref:typename:const char * []
328 arglist[i] = NULL;
360 retval = spawnvp(P_WAIT, arglist[0], arglist);
388 execvp(arglist[0], __UNCONST(arglist));
873 arglist[argcount++] = cp;
881 errx(EXIT_FAILURE, "Internal error: arglist coding error");
884 arglist[pwhere] = cp;
  /src/sys/dev/acpi/
thinkpad_acpi.c 312 ACPI_OBJECT_LIST arglist = { local in function:thinkpad_attach
320 &arglist, &buf);

Completed in 18 milliseconds