sc_endpoints      107 dev/usb/ugen.c 	struct ugen_endpoint sc_endpoints[USB_MAX_ENDPOINTS][2];
sc_endpoints      252 dev/usb/ugen.c 	memset(sc->sc_endpoints, 0, sizeof sc->sc_endpoints);
sc_endpoints      265 dev/usb/ugen.c 			sce = &sc->sc_endpoints[UE_GET_ADDR(endpt)][dir];
sc_endpoints      315 dev/usb/ugen.c 			sce = &sc->sc_endpoints[endpt][dir];
sc_endpoints      326 dev/usb/ugen.c 		sce = &sc->sc_endpoints[endpt][dir];
sc_endpoints      452 dev/usb/ugen.c 		sce = &sc->sc_endpoints[endpt][dir];
sc_endpoints      489 dev/usb/ugen.c 	struct ugen_endpoint *sce = &sc->sc_endpoints[endpt][IN];
sc_endpoints      652 dev/usb/ugen.c 	struct ugen_endpoint *sce = &sc->sc_endpoints[endpt][OUT];
sc_endpoints      779 dev/usb/ugen.c 			sce = &sc->sc_endpoints[i][dir];
sc_endpoints      789 dev/usb/ugen.c 			wakeup(&sc->sc_endpoints[i][IN]);
sc_endpoints      934 dev/usb/ugen.c 		sce = &sc->sc_endpoints[UE_GET_ADDR(endpt)][dir];
sc_endpoints      952 dev/usb/ugen.c 		sce = &sc->sc_endpoints[UE_GET_ADDR(endpt)][dir];
sc_endpoints     1036 dev/usb/ugen.c 		sce = &sc->sc_endpoints[endpt][IN];
sc_endpoints     1045 dev/usb/ugen.c 		sce = &sc->sc_endpoints[endpt][IN];
sc_endpoints     1249 dev/usb/ugen.c 		sce = &sc->sc_endpoints[endpt][IN];
sc_endpoints     1308 dev/usb/ugen.c 	sce = &sc->sc_endpoints[UGENENDPOINT(dev)][IN];
sc_endpoints     1420 dev/usb/ugen.c 	sce = &sc->sc_endpoints[UGENENDPOINT(dev)][IN];
sc_endpoints      432 dev/usb/umidi.c 	ep = sc->sc_endpoints;
sc_endpoints      436 dev/usb/umidi.c 			while(ep != sc->sc_endpoints) {
sc_endpoints      440 dev/usb/umidi.c 			free(sc->sc_endpoints, M_USBDEV);
sc_endpoints      441 dev/usb/umidi.c 			sc->sc_endpoints = sc->sc_out_ep = sc->sc_in_ep = NULL;
sc_endpoints      454 dev/usb/umidi.c 	    free_pipe(&sc->sc_endpoints[i]);
sc_endpoints      455 dev/usb/umidi.c 	if (sc->sc_endpoints != NULL)
sc_endpoints      456 dev/usb/umidi.c 		free(sc->sc_endpoints, M_USBDEV);
sc_endpoints      457 dev/usb/umidi.c 	sc->sc_endpoints = sc->sc_out_ep = sc->sc_in_ep = NULL;
sc_endpoints      475 dev/usb/umidi.c 	sc->sc_endpoints = malloc(sizeof(*sc->sc_out_ep)*
sc_endpoints      479 dev/usb/umidi.c 	if (!sc->sc_endpoints) {
sc_endpoints      482 dev/usb/umidi.c 	sc->sc_out_ep = sc->sc_out_num_endpoints ? sc->sc_endpoints : NULL;
sc_endpoints      485 dev/usb/umidi.c 		sc->sc_endpoints+sc->sc_out_num_endpoints : NULL;
sc_endpoints      544 dev/usb/umidi.c 	free(sc->sc_endpoints, M_USBDEV);
sc_endpoints      545 dev/usb/umidi.c 	sc->sc_endpoints = NULL;
sc_endpoints      618 dev/usb/umidi.c 	sc->sc_endpoints = malloc(sizeof(struct umidi_endpoint)*
sc_endpoints      622 dev/usb/umidi.c 	if (!sc->sc_endpoints)
sc_endpoints      625 dev/usb/umidi.c 		sc->sc_out_ep = sc->sc_endpoints;
sc_endpoints      636 dev/usb/umidi.c 		sc->sc_in_ep = sc->sc_endpoints+sc->sc_out_num_endpoints;
sc_endpoints      662 dev/usb/umidi.c 	sc->sc_endpoints = p = malloc(sizeof(struct umidi_endpoint) * num_ep,
sc_endpoints      710 dev/usb/umidi.c 	p = sc->sc_endpoints;
sc_endpoints      732 dev/usb/umidi.c 	sc->sc_out_ep = sc->sc_out_num_endpoints ? sc->sc_endpoints : NULL;
sc_endpoints      735 dev/usb/umidi.c 		sc->sc_endpoints+sc->sc_out_num_endpoints : NULL;
sc_endpoints      132 dev/usb/umidivar.h 	struct umidi_endpoint	*sc_endpoints;