HelenOS sources

ed                118 kernel/arch/ia64/include/arch/mm/page.h 	unsigned int ed : 1;
ed                 63 kernel/arch/ia64/include/arch/mm/tlb.h 		unsigned int ed : 1;
ed                208 kernel/arch/ia64/include/arch/register.h 		unsigned int ed : 1;   /**< Exception Deferral. */
ed                279 kernel/arch/ia64/include/arch/register.h 		unsigned int ed : 1;  /**< Exception Deferral. */
ed                250 kernel/arch/ia64/src/mm/page.c 	v->present.ed = false;  /* exception not deffered */
ed                585 kernel/arch/ia64/src/mm/tlb.c 		istate->cr_ipsr.ed = true;
ed                112 uspace/drv/bus/usb/ohci/endpoint_list.c 		last_ed = last->ed;
ed                115 uspace/drv/bus/usb/ohci/endpoint_list.c 	ep->ed->next = last_ed->next;
ed                120 uspace/drv/bus/usb/ohci/endpoint_list.c 	ed_append_ed(last_ed, ep->ed);
ed                130 uspace/drv/bus/usb/ohci/endpoint_list.c 	    ep, instance->name, first, first->ed);
ed                150 uspace/drv/bus/usb/ohci/endpoint_list.c 	assert(ep->ed);
ed                166 uspace/drv/bus/usb/ohci/endpoint_list.c 		prev_ed = prev->ed;
ed                169 uspace/drv/bus/usb/ohci/endpoint_list.c 	assert(ed_next(prev_ed) == addr_to_phys(ep->ed));
ed                170 uspace/drv/bus/usb/ohci/endpoint_list.c 	prev_ed->next = ep->ed->next;
ed                175 uspace/drv/bus/usb/ohci/endpoint_list.c 	    ep, qpos, instance->name, ep->ed->next);
ed                159 uspace/drv/bus/usb/ohci/ohci_batch.c 	    ohci_ep->ed->status, ohci_ep->ed->td_head,
ed                160 uspace/drv/bus/usb/ohci/ohci_batch.c 	    ohci_ep->ed->td_tail, ohci_ep->ed->next);
ed                162 uspace/drv/bus/usb/ohci/ohci_batch.c 	if (!ed_inactive(ohci_ep->ed) && ed_transfer_pending(ohci_ep->ed))
ed                202 uspace/drv/bus/usb/ohci/ohci_batch.c 			assert((ohci_ep->ed->td_head & ED_TDHEAD_HALTED_FLAG) != 0);
ed                212 uspace/drv/bus/usb/ohci/ohci_batch.c 			ed_set_head_td(ohci_ep->ed, ohci_ep->tds[0]);
ed                215 uspace/drv/bus/usb/ohci/ohci_batch.c 			ed_clear_halt(ohci_ep->ed);
ed                222 uspace/drv/bus/usb/ohci/ohci_batch.c 	assert(addr_to_phys(ohci_ep->tds[0]) == ed_tail_td(ohci_ep->ed));
ed                223 uspace/drv/bus/usb/ohci/ohci_batch.c 	assert(ed_tail_td(ohci_ep->ed) == ed_head_td(ohci_ep->ed));
ed                238 uspace/drv/bus/usb/ohci/ohci_batch.c 	usb_log_debug("Using ED(%p): %08x:%08x:%08x:%08x.", ohci_ep->ed,
ed                239 uspace/drv/bus/usb/ohci/ohci_batch.c 	    ohci_ep->ed->status, ohci_ep->ed->td_tail,
ed                240 uspace/drv/bus/usb/ohci/ohci_batch.c 	    ohci_ep->ed->td_head, ohci_ep->ed->next);
ed                252 uspace/drv/bus/usb/ohci/ohci_batch.c 	ed_set_tail_td(ohci_ep->ed, ohci_ep->tds[1]);
ed                 56 uspace/drv/bus/usb/ohci/ohci_bus.c 	assert(instance->ed);
ed                 57 uspace/drv/bus/usb/ohci/ohci_bus.c 	ed_toggle_set(instance->ed, 0);
ed                 92 uspace/drv/bus/usb/ohci/ohci_bus.c 	ohci_ep->ed = ohci_ep->dma_buffer.virt;
ed                 94 uspace/drv/bus/usb/ohci/ohci_bus.c 	ohci_ep->tds[0] = (td_t *) ohci_ep->ed + 1;
ed                126 uspace/drv/bus/usb/ohci/ohci_bus.c 	ed_init(ohci_ep->ed, ep, ohci_ep->tds[0]);
ed                 58 uspace/drv/bus/usb/ohci/ohci_bus.h 	ed_t *ed;
ed                273 uspace/drv/bus/usb/xhci/transfers.c 		xhci_trb_t *ed = &trbs[trbs_used++];
ed                274 uspace/drv/bus/usb/xhci/transfers.c 		xhci_trb_clean(ed);
ed                275 uspace/drv/bus/usb/xhci/transfers.c 		ed->parameter = host2xhci(64, (uintptr_t) transfer);
ed                276 uspace/drv/bus/usb/xhci/transfers.c 		TRB_CTRL_SET_TRB_TYPE(*ed, XHCI_TRB_TYPE_EVENT_DATA);
ed                277 uspace/drv/bus/usb/xhci/transfers.c 		TRB_CTRL_SET_IOC(*ed, 1);
ed                208 uspace/lib/c/arch/ia64/include/libarch/register.h 		unsigned int ed : 1;   /**< Exception Deferral. */
ed                279 uspace/lib/c/arch/ia64/include/libarch/register.h 		unsigned int ed : 1;  /**< Exception Deferral. */
ed                204 uspace/lib/usb/include/usb/descriptor.h #define USB_ED_GET_EP(ed)	((ed).endpoint_address & 0xf)
ed                205 uspace/lib/usb/include/usb/descriptor.h #define USB_ED_GET_DIR(ed)	(!(((ed).endpoint_address >> 7) & 0x1))
ed                211 uspace/lib/usb/include/usb/descriptor.h #define USB_ED_GET_TRANSFER_TYPE(ed)	((ed).attributes & 0x3)
ed                218 uspace/lib/usb/include/usb/descriptor.h #define USB_ED_GET_MPS(ed) \
ed                219 uspace/lib/usb/include/usb/descriptor.h 	(uint16_usb2host((ed).max_packet_size) & 0x7ff)
ed                220 uspace/lib/usb/include/usb/descriptor.h #define USB_ED_GET_ADD_OPPS(ed) \
ed                221 uspace/lib/usb/include/usb/descriptor.h 	((uint16_usb2host((ed).max_packet_size) >> 11) & 0x3)
HelenOS homepage, sources at GitHub