HomeSort by relevance Sort by last modified time
    Searched defs:ep2 (Results 1 - 6 of 6) sorted by null

  /cts/apps/cts-usb-accessory/
cts-usb-accessory.c 99 struct usb_endpoint_descriptor *ep2 = NULL; local
106 while ((desc = usb_descriptor_iter_next(&iter)) != NULL && (!intf || !ep1 || !ep2)) {
111 ep2 = (struct usb_endpoint_descriptor *)desc;
121 if (!ep1 || !ep2) {
134 endpoints[1] = ep2->bEndpointAddress;
136 endpoints[0] = ep2->bEndpointAddress;
  /frameworks/base/libs/usb/tests/AccessoryChat/accessorychat/
accessorychat.c 107 struct usb_endpoint_descriptor *ep2 = NULL; local
113 while ((desc = usb_descriptor_iter_next(&iter)) != NULL && (!intf || !ep1 || !ep2)) {
118 ep2 = (struct usb_endpoint_descriptor *)desc;
128 if (!ep1 || !ep2) {
140 pthread_create(&th, NULL, write_thread, (void *)(uintptr_t)ep2->bEndpointAddress);
142 pthread_create(&th, NULL, read_thread, (void *)(uintptr_t)ep2->bEndpointAddress);
  /frameworks/base/libs/usb/tests/accessorytest/
usb.c 113 struct usb_endpoint_descriptor *ep2 = NULL; local
117 while ((desc = usb_descriptor_iter_next(&iter)) != NULL && (!intf || !ep1 || !ep2)) {
122 ep2 = (struct usb_endpoint_descriptor *)desc;
132 if (!ep1 || !ep2) {
144 write_ep = ep2->bEndpointAddress;
146 read_ep = ep2->bEndpointAddress;
  /external/chromium_org/mojo/system/
remote_message_pipe_unittest.cc 311 scoped_refptr<ChannelEndpoint> ep2; local
312 scoped_refptr<MessagePipe> mp2(MessagePipe::CreateLocalProxy(&ep2));
315 ConnectChannelEndpoints(ep2, ep3);
    [all...]
  /system/core/adb/
usb_linux.c 159 struct usb_endpoint_descriptor *ep1, *ep2; local
240 ep2 = (struct usb_endpoint_descriptor *)bufptr;
246 ep2->bLength != USB_DT_ENDPOINT_SIZE ||
247 ep2->bDescriptorType != USB_DT_ENDPOINT) {
254 ep2->bmAttributes != USB_ENDPOINT_XFER_BULK) {
266 local_ep_out = ep2->bEndpointAddress;
268 local_ep_in = ep2->bEndpointAddress;
  /external/tcpdump/
print-isakmp.c 776 const u_char *ep2; local
817 ep2 = (u_char *)p + item_len;
818 while (cp < ep && cp < ep2) {
820 cp = ikev1_attrmap_print(ndo, cp, (ep < ep2) ? ep : ep2,
823 cp = ikev1_attr_print(ndo, cp, (ep < ep2) ? ep : ep2);
825 if (ep < ep2)
1190 u_char *ep2; local
1439 const u_char *ep2; local
    [all...]

Completed in 269 milliseconds