Lines Matching defs:vent
275 struct varent *vent;
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;
351 SIMPLEQ_FOREACH(vent, list, next) {
352 if (strcmp(vent->var->name, name) == 0)
355 return vent;