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

  /src/usr.bin/rdist/
gram.y 46 struct namelist *last_n;
50 void append(char *, struct namelist *, char *, struct subcmd *);
74 struct namelist *namel;
80 %type <namel> namelist, names, opt_namelist
88 command: NAME EQUAL namelist = {
91 | namelist ARROW namelist cmdlist = {
94 | NAME COLON namelist ARROW namelist cmdlist = {
97 | namelist DCOLON NAME cmdlist =
106 namelist: NAME = { label
    [all...]
defs.h 103 struct namelist { /* for making lists of strings */ struct
105 struct namelist *n_next;
112 struct namelist *sc_args;
120 struct namelist *c_files;
159 struct namelist *
160 expand(struct namelist *, int);
163 int inlist(struct namelist *, char *);
165 struct namelist *, struct namelist *, struct subcmd *);
168 struct namelist *
    [all...]
  /src/usr.bin/mail/
send.c 598 mail2(FILE *mtf, const char **namelist)
607 for (t = namelist; *t != NULL; t++)
640 (void)execv(cp, (char *const *)__UNCONST(namelist));
682 const char **namelist; local in function:mail1
763 namelist = unpack(hp->h_smopts, to);
764 mail2(mtf, namelist);
cmd3.c 1104 char **namelist = v; local in function:alternates
1108 c = argcount(namelist) + 1;
1120 for (ap = namelist, ap2 = altnames; *ap; ap++, ap2++) {
  /src/usr.bin/systat/
netstat.c 157 static struct nlist namelist[] = { variable in typeref:struct:nlist[]
170 n = kvm_nlist(kd, namelist);
172 nlisterr(namelist);
174 } else if (n == sizeof(namelist) / sizeof(namelist[0]) - 1) {
175 error("No symbols in namelist");
191 if (namelist[X_TCBTABLE].n_value == 0)
200 if ((protos & TCP) && namelist[X_TCBTABLE].n_type)
202 if ((protos & UDP) && namelist[X_UDBTABLE].n_type)
205 if ((protos & TCP) && namelist[X_TCBTABLE].n_type
    [all...]
vmstat.c 107 static struct nlist namelist[] = { variable in typeref:struct:nlist[]
205 if (namelist[0].n_type == 0) {
206 if (kvm_nlist(kd, namelist) &&
207 namelist[X_ALLEVENTS].n_type == 0) {
208 nlisterr(namelist);
217 nintr = (namelist[X_EINTRCNT].n_value -
218 namelist[X_INTRCNT].n_value) / sizeof (long);
222 intrnamebuf = malloc(namelist[X_EINTRNAMES].n_value -
223 namelist[X_INTRNAMES].n_value);
  /src/usr.bin/vmstat/
vmstat.c 152 * General namelist
154 struct nlist namelist[] = variable in typeref:struct:nlist[]
175 * Namelist for time data.
190 * Namelist for pre-evcnt interrupt counters.
208 * Namelist for hash statistics
233 * Namelist for kernel histories
322 /* Namelist and memory file names. */
536 if ((c = kvm_nlist(kd, namelist)) != 0) {
540 "namelist", kvm_geterr(kd));
541 for (i = 0; i < __arraycount(namelist)-1; i++
    [all...]

Completed in 16 milliseconds