Home | History | Annotate | Download | only in raidframe

Lines Matching defs:ent

53 rf_FreeShutdownEnt(RF_ShutdownList_t *ent)
55 free(ent, M_RAIDFRAME);
68 RF_ShutdownList_t *ent;
74 ent = (RF_ShutdownList_t *) malloc(sizeof(RF_ShutdownList_t),
76 ent->cleanup = cleanup;
77 ent->arg = arg;
79 ent->file = file;
80 ent->line = line;
82 ent->next = *listp;
83 *listp = ent;