Home | History | Annotate | Download | only in ic

Lines Matching defs:pe

457 	struct tcic_event *pe;
462 if ((pe = SIMPLEQ_FIRST(&h->events)) == NULL) {
470 switch (pe->pe_type) {
483 pe->pe_type);
485 free(pe, M_TEMP);
633 struct tcic_event *pe;
636 pe = malloc(sizeof(*pe), M_TEMP, M_NOWAIT);
637 if (pe == NULL)
640 pe->pe_type = event;
642 SIMPLEQ_INSERT_TAIL(&h->events, pe, pe_q);