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

  /src/bin/ps/
keyword.c 275 struct varent *vent; local in function:parsevarlist
309 vent = emalloc(sizeof(*vent));
310 vent->var = v;
312 SIMPLEQ_INSERT_AFTER(listptr, *pos, vent, next);
314 SIMPLEQ_INSERT_TAIL(listptr, vent, next);
317 *pos = vent;
349 struct varent *vent; local in function:varlist_find
351 SIMPLEQ_FOREACH(vent, list, next) {
352 if (strcmp(vent->var->name, name) == 0
    [all...]
ps.c 206 struct varent *vent; local in function:main
420 SIMPLEQ_FOREACH(vent, &sortlist, next) {
421 if (vent->var->flag & LWP || vent->var->type == UNSPECIFIED)
423 vent->var->name);
424 if (vent->var->type == PCPU)
428 SIMPLEQ_FOREACH(vent, &displaylist, next)
429 if (vent->var->type == PCPU) {
481 SIMPLEQ_FOREACH(vent, &displaylist, next)
482 OUTPUT(vent, l, pi, ki, WIDTHMODE)
645 struct varent *vent; local in function:scanvars
    [all...]
print.c 153 struct varent *vent; local in function:printheader
162 SIMPLEQ_FOREACH(vent, &displaylist, next) {
163 if (vent->var->header[0])
166 if (vent == NULL) {
175 SIMPLEQ_FOREACH(vent, &displaylist, next) {
176 v = vent->var;
184 if (SIMPLEQ_NEXT(vent, next) == NULL) /* last one */
191 if (SIMPLEQ_NEXT(vent, next) != NULL)

Completed in 153 milliseconds