Searched refs:ep (Results 1 - 25 of 40) sorted by last modified time

12

/haiku/src/add-ons/kernel/busses/usb/
H A Dxhci.h140 status_t ConfigureEndpoint(xhci_endpoint* ep, uint8 slot,
145 uint8 _GetEndpointState(xhci_endpoint* ep);
H A Dxhci.cpp2150 XHCI::ConfigureEndpoint(xhci_endpoint* ep, uint8 slot, uint8 number, uint8 type, argument
2227 qwendpoint2 |= ENDPOINT_2_DCS_BIT | ep->trb_addr;
2231 ep->max_burst_payload = (maxBurst + 1) * maxPacketSize;
2232 if (ep->max_burst_payload == 0) {
2249 dwendpoint4 |= ENDPOINT_4_AVGTRBLENGTH(ep->max_burst_payload);
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c2034 char *ep; local
2038 val = (int)strtol(cp, &ep, 16);
2040 val = (int)strtol(str, &ep, 10);
2041 if (*ep != '\0') {
/haiku/src/bin/network/ping/
H A Dping6.c1486 * ep - Pointer to the end of the message (one step past the last octet).
1496 dnsdecode(const u_char *sp, const u_char *ep, const u_char *base, char *buf, argument
1508 if (cp >= ep)
1510 while (cp < ep) {
1533 if (i > ep - cp)
1535 while (i-- > 0 && cp < ep) {
H A Dping.c223 char *ep, *source, *target, *payload; local
390 t = strtod(optarg, &ep) * 1000.0;
391 if (*ep || ep == optarg || t > (double)INT_MAX)
498 alarmtimeout = strtoul(optarg, &ep, 0);
519 t = strtod(optarg, &ep);
520 if (*ep || ep == optarg || t > (double)INT_MAX)
528 ltmp = strtol(optarg, &ep, 0);
529 if (*ep || e
[all...]
/haiku/src/libs/bsd/
H A Dstrtonum.c34 char *ep; local
50 ll = strtoll(numstr, &ep, 10);
51 if (errno == EINVAL || numstr == ep || *ep != '\0')
/haiku/src/system/libnetwork/netresolv/net/
H A Dgetnetnamadr.c137 char *ep; local
146 octet[octidx] = strtoul(sp, &ep, 10);
148 if (*ep != '.')
153 sp = ep + 1;
178 char *in, *bp, **ap, *ep; local
202 ep = netbuf + sizeof(netbuf);
225 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
235 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
H A Dgetaddrinfo.c434 char *ep; local
441 ep = NULL;
443 v = strtoul(p, &ep, 10);
444 if (errno == 0 && ep && *ep == '\0' && v <= INT_MAX)
777 struct in6_addrpolicy *pol, *ep; local
790 ep = (void *)(buf + l);
791 for (pol = (void *)buf; pol + 1 <= ep; pol++) {
828 u_char *mp, *ep, *k, *p; local
854 ep
1674 char *ep; local
1737 char *bp, *ep; local
[all...]
H A Dgethnamaddr.c223 char *bp, **ap, **hap, *ep; local
261 ep = buf + buflen;
267 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
292 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
332 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
336 strlcpy(bp, tbuf, (size_t)(ep - bp));
353 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
357 strlcpy(bp, tbuf, (size_t)(ep - bp));
379 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
410 map_v4v6_hostent(hent, &bp, ep);
866 map_v4v6_hostent(struct hostent *hp, char **bpp, char *ep) argument
1005 char qbuf[MAXDNAME + 1], *qp, *ep; local
[all...]
/haiku/src/add-ons/kernel/drivers/bluetooth/h2/h2generic/
H A Dh2generic.cpp241 const usb_endpoint_info* ep; local
322 ep = &uif->endpoint[e];
323 switch (ep->descr->attributes & USB_ENDPOINT_ATTR_MASK) {
325 if (ep->descr->endpoint_address & USB_ENDPOINT_ADDR_DIR_IN)
327 new_bt_dev->intr_in_ep = ep;
329 = ep->descr->max_packet_size;
337 if (ep->descr->endpoint_address & USB_ENDPOINT_ADDR_DIR_IN) {
338 new_bt_dev->bulk_in_ep = ep;
340 = ep->descr->max_packet_size;
343 new_bt_dev->bulk_out_ep = ep;
[all...]
/haiku/src/libs/compat/freebsd_network/
H A Dfbsd_if_media.c266 struct ifmedia_entry *ep; local
287 LIST_FOREACH(ep, &ifm->ifm_list, ifm_list)
308 ep = LIST_FIRST(&ifm->ifm_list);
309 for (; ep != NULL && count < ifmr->ifm_count;
310 ep = LIST_NEXT(ep, ifm_list), count++)
311 kptr[count] = ep->ifm_media;
313 if (ep != NULL)
/haiku/src/add-ons/kernel/drivers/network/ether/usb_asix/
H A DASIXDevice.cpp481 for (size_t ep = 0; ep < interface->endpoint_count; ep++) {
482 usb_endpoint_descriptor *epd = interface->endpoint[ep].descr;
485 notifyEndpoint = ep;
498 readEndpoint = ep;
504 writeEndpoint = ep;
/haiku/src/add-ons/kernel/drivers/network/ether/pegasus/
H A Ddriver.c272 size_t ep = 0; local
273 for(; ep < uii->endpoint_count; ep++){
274 usb_endpoint_descriptor *ed = uii->endpoint[ep].descr;
275 DPRINTF_INFO("try endpoint:%ld %x %x %lx\n", ep, ed->attributes,
276 ed->endpoint_address, uii->endpoint[ep].handle);
280 epts[0] = ep;
282 epts[1] = ep;
285 epts[2] = ep;
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/usb/
H A Drtwn_usb_ep.c166 struct usb_endpoint *ep, *ep_end; local
172 ep = uc->uc_udev->endpoints;
174 for (; ep != ep_end; ep++) {
177 if ((ep->edesc == NULL) || (ep->iface_index != iface_index))
180 eaddr = ep->edesc->bEndpointAddress;
/haiku/src/libs/compat/freebsd_network/compat/dev/usb/
H A Dusb_debug.h58 void usb_dump_queue(struct usb_endpoint *ep);
59 void usb_dump_endpoint(struct usb_endpoint *ep);
/haiku/src/add-ons/kernel/drivers/network/ether/usb_davicom/
H A DDavicomDevice.cpp563 for (size_t ep = 0; ep < interface->endpoint_count; ep++) {
564 usb_endpoint_descriptor *epd = interface->endpoint[ep].descr;
568 notifyEndpoint = ep;
583 readEndpoint = ep;
590 writeEndpoint = ep;
/haiku/src/add-ons/kernel/drivers/network/ether/dec21xxx/dev/de/
H A Dif_de.c2476 const u_int8_t *ep; local
2484 ep = dp + length;
2718 dp = ep;
/haiku/src/apps/cortex/MediaRoutingView/
H A DMediaWire.cpp138 BPoint ep = m_endPoint; local
147 endFrame.Set(ep.x, ep.y, eo.x, eo.y);
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5413.c294 const uint16_t *ep = lp+listSize; local
304 if (target >= ep[-1]) {
310 for (tp = lp; tp < ep; tp++) {
H A Dar5212_reset.c2631 uint16_t *ep = lp+listSize; local
2640 if (target > (uint32_t)(ep[-1] * EEP_SCALE + EEP_DELTA)) {
2641 *vlo = *vhi = ep[-1];
2646 for (; lp < ep; lp++) {
H A Dar5112.c571 uint16_t *ep = lp+listSize; local
581 if (target >= ep[-1]) {
587 for (tp = lp; tp < ep; tp++) {
H A Dar2413.c252 const uint16_t *ep = lp+listSize; local
262 if (target >= ep[-1]) {
268 for (tp = lp; tp < ep; tp++) {
H A Dar2425.c253 const uint16_t *ep = lp+listSize; local
263 if (target >= ep[-1]) {
269 for (tp = lp; tp < ep; tp++) {
H A Dar2317.c235 const int16_t *ep = lp+listSize; local
245 if (target >= ep[-1]) {
251 for (tp = lp; tp < ep; tp++) {
H A Dar2316.c258 const int16_t *ep = lp+listSize; local
268 if (target >= ep[-1]) {
274 for (tp = lp; tp < ep; tp++) {

Completed in 181 milliseconds

12