HomeSort by relevance Sort by last modified time
    Searched defs:ep (Results 101 - 125 of 269) sorted by null

1 2 3 45 6 7 8 91011

  /external/vulkan-validation-layers/libs/cjson/
cJSON.c 38 static const char *ep; variable
40 const char *cJSON_GetErrorPtr(void) { return ep; }
254 ep = str;
449 ep = 0;
456 } /* parse failure. ep is set. */
464 ep = end;
515 ep = value;
585 ep = value;
609 ep = value;
717 ep = value
    [all...]
  /frameworks/av/media/mtp/
MtpDevice.cpp 159 struct usb_endpoint_descriptor *ep; local
166 ep = (struct usb_endpoint_descriptor *)usb_descriptor_iter_next(&iter);
167 if (ep && ep->bDescriptorType == USB_DT_SS_ENDPOINT_COMP) {
169 ep_ss_ep_comp_desc = (usb_ss_ep_comp_descriptor*)ep;
170 ep = (struct usb_endpoint_descriptor *)usb_descriptor_iter_next(&iter);
173 if (!ep || ep->bDescriptorType != USB_DT_ENDPOINT) {
179 if (ep->bmAttributes == USB_ENDPOINT_XFER_BULK) {
180 if (ep->bEndpointAddress & USB_ENDPOINT_DIR_MASK
    [all...]
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
SinkActivity.java 203 UsbEndpoint ep = iface.getEndpoint(i); local
204 if (ep.getDirection() == UsbConstants.USB_DIR_IN) {
207 bulkIn = ep;
212 bulkOut = ep;
  /packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
SpeedMeasurementController.java 173 UsbEndpoint ep = iface.getEndpoint(i); local
174 if (ep.getDirection() == UsbConstants.USB_DIR_IN) {
176 bulkIn = ep;
180 bulkOut = ep;
229 UsbEndpoint ep = iface.getEndpoint(i); local
230 if (ep.getDirection() == UsbConstants.USB_DIR_IN) {
232 bulkIn = ep;
236 bulkOut = ep;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
usbdevice_fs.h 50 unsigned int ep; member in struct:usbdevfs_bulktransfer
  /system/core/logd/
LogKlog.cpp 246 char* ep = buffer + len; local
247 *ep = '\0';
252 if (((tok + sublen) >= ep) && (retval != 0) && full) {
272 const char* ep = real.strptime(real_string, real_format); local
273 if (!ep || (ep > &real_string[len]) || (real > log_time(CLOCK_REALTIME))) {
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
grep.c 317 char *ep; local
419 l = strtoull(optarg, &ep, 10);
423 else if (ep[0] != '\0') {
508 mcount = strtoull(optarg, &ep, 10);
512 else if (ep[0] != '\0') {
  /toolchain/binutils/binutils-2.27/opcodes/
opc2c.c 461 pv_dup (char * p, char * ep)
463 int n = ep - p;
472 str2mask (char * str, char * ep)
476 while (str < ep)
490 char * ep; local
503 for (ep = cp; *ep && !isspace (*ep); ep++);
505 v->name = pv_dup (cp, ep);
    [all...]
  /bionic/libc/dns/net/
gethnamaddr.c 225 char *bp, **ap, **hap, *ep; local
263 ep = buf + buflen;
269 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
294 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
334 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
338 strlcpy(bp, tbuf, (size_t)(ep - bp));
355 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
359 strlcpy(bp, tbuf, (size_t)(ep - bp));
381 n = dn_expand(answer->buf, eom, cp, bp, (int)(ep - bp));
412 map_v4v6_hostent(hent, &bp, ep);
1232 char qbuf[MAXDNAME + 1], *qp, *ep; local
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Usb/DwUsb3Dxe/
DwUsb3Dxe.c 59 // Maxpacket size for any EP, defined by USB3 spec
406 IN usb3_pcd_ep_t *ep
412 /* If the EP is already enabled, skip to set it again. */
452 IN OUT usb3_pcd_ep_t *ep
456 if (ep->is_in) {
457 EpIdx = EP_IN_IDX (ep->num);
459 EpIdx = EP_OUT_IDX (ep->num);
462 /* Start a new configurate when enable the first EP. */
490 /* issue DEPCFG command to EP */
491 DepCfg0 = EPCFG0_EPTYPE (ep->type)
635 usb3_pcd_ep_t *ep; local
715 usb3_pcd_ep_t *ep; local
969 usb3_pcd_ep_t *ep = &pcd->ep0; local
1394 usb3_pcd_ep_t *ep; local
1479 usb3_pcd_ep_t *ep; local
1544 usb3_pcd_ep_t *ep; local
1723 usb3_pcd_ep_t *ep; local
1751 usb3_pcd_ep_t *ep = &pcd->out_ep; local
2122 usb3_pcd_ep_t *ep = &pcd->out_ep; local
2155 usb3_pcd_ep_t *ep; local
2317 usb3_pcd_ep_t *ep = &pcd->in_ep; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lstrlib.c 310 const char *ep) {
318 case '[': return matchbracketclass(c, p, ep-1);
347 const char *p, const char *ep) {
349 while (singlematch(ms, s + i, p, ep))
353 const char *res = match(ms, (s+i), ep+1);
362 const char *p, const char *ep) {
364 const char *res = match(ms, s, ep+1);
367 else if (singlematch(ms, s, p, ep))
443 const char *ep; char previous; local
448 ep = classend(ms, p); /* points to what is next */
471 const char *ep = classend(ms, p); \/* points to optional suffix *\/ local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
getaddrinfo.c 337 char *ep; local
344 ep = NULL;
346 v = strtoul(p, &ep, 10);
347 if (errno == 0 && ep && *ep == '\0' && v <= UINT_MAX)
1016 char *ep; local
1054 lscopeid = strtoul(scope, &ep, 10);
1056 if (errno == 0 && ep && *ep == '\0' && *scopeid == lscopeid)
1080 char *bp, *ep; local
    [all...]
  /external/freetype/src/bdf/
bdflib.c 419 char *sp, *ep, *end; local
463 for ( final_empty = 0, sp = ep = line, end = sp + linelen;
467 for ( ; *ep && !sbitset( seps, *ep ); ep++ )
479 list->field[list->used++] = ( ep > sp ) ? sp : (char*)empty;
481 sp = ep;
487 for ( ; *ep && sbitset( seps, *ep ); ep++
1045 char *sp, *ep; local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp.c 1427 struct isakmp_parse_t *p, *ep; local
    [all...]
oakley.c 2880 u_char *p, *ep; local
    [all...]
  /external/iputils/
arping.c 663 char *ep; local
670 *p = strtoul(ptr, &ep, base);
671 if ((*ptr && isspace(*ptr & 0xff)) || errno || (*ep != '\0' && *ep != '\n'))
ping_common.c 278 char *ep; local
281 dbl = strtod(optarg, &ep);
283 if (errno || *ep != '\0' ||
  /external/libedit/src/
terminal.c 1382 char *ep; local
1465 Char *ep; local
    [all...]
  /external/libmtp/src/
libopenusb1-glue.c 108 static int usb_get_endpoint_status(PTP_USB* ptp_usb, int ep, uint16_t* status);
2008 struct usb_endpoint_desc ep; local
    [all...]
libusb-glue.c 115 static int usb_clear_stall_feature(PTP_USB* ptp_usb, int ep);
116 static int usb_get_endpoint_status(PTP_USB* ptp_usb, int ep, uint16_t* status);
1899 struct usb_endpoint_descriptor *ep; local
    [all...]
libusb1-glue.c 113 int ep, uint16_t* status);
2030 const struct libusb_endpoint_descriptor *ep; local
    [all...]
  /external/libpcap/
optimize.c 311 propedom(opt_state_t *opt_state, struct edge *ep)
313 SET_INSERT(ep->edom, ep->id);
314 if (ep->succ) {
315 SET_INTERSECT(ep->succ->et.edom, ep->edom, opt_state->edgewords);
316 SET_INTERSECT(ep->succ->ef.edom, ep->edom, opt_state->edgewords);
1301 fold_edge(struct block *child, struct edge *ep)
1305 int code = ep->code
1413 struct edge *ep; local
1505 struct edge *ep; local
    [all...]
pcap-bpf.c 920 register u_char *bp, *ep; local
1047 ep = bp + cc;
1051 while (bp < ep) {
1066 p->cc = ep - bp;
1068 * ep is set based on the return value of read(),
1074 * could increment bp past ep after processing the
1077 * We treat ep < bp as an indication that this
1156 p->cc = ep - bp;
    [all...]
pcap-dos.c 861 struct ether_header *ep = (struct ether_header*) buf; local
864 etype = ep->ether_type;
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 750 const char **ep = png_get_error_ptr(png_ptr); local
753 if (ep != NULL && *ep != NULL)
754 name = *ep;
1646 char *ep = arg; local
    [all...]

Completed in 882 milliseconds

1 2 3 45 6 7 8 91011