Home | History | Annotate | Download | only in cardbus

Lines Matching defs:ce

273 	struct cardslot_event *ce;
281 if (NULL == (ce = (struct cardslot_event *)malloc(sizeof (struct cardslot_event), M_TEMP, M_NOWAIT))) {
285 ce->ce_type = ev;
288 SIMPLEQ_INSERT_TAIL(&sc->sc_events, ce, ce_q);
308 struct cardslot_event *ce;
317 if ((ce = SIMPLEQ_FIRST(&sc->sc_events)) == NULL) {
329 if (IS_CARDSLOT_INSERT_REMOVE_EV(ce->ce_type)) {
337 if (ce1->ce_type != antonym_ev[ce->ce_type]) {
343 if (ce2->ce_type == ce->ce_type) {
355 switch (ce->ce_type) {
464 panic("cardslot_event_thread: unknown event %d", ce->ce_type);
466 free(ce, M_TEMP);