Home
last modified time | relevance | path

Searched refs:_ep (Results 1 – 9 of 9) sorted by relevance

/external/u-boot/drivers/usb/gadget/
Ddwc2_udc_otg.c108 static int dwc2_udc_set_halt(struct usb_ep *_ep, int value);
541 static int dwc2_ep_enable(struct usb_ep *_ep, in dwc2_ep_enable() argument
548 debug("%s: %p\n", __func__, _ep); in dwc2_ep_enable()
550 ep = container_of(_ep, struct dwc2_ep, ep); in dwc2_ep_enable()
551 if (!_ep || !desc || ep->desc || _ep->name == ep0name in dwc2_ep_enable()
566 debug("%s: %s type mismatch\n", __func__, _ep->name); in dwc2_ep_enable()
575 debug("%s: bad %s maxpacket\n", __func__, _ep->name); in dwc2_ep_enable()
593 dwc2_udc_set_halt(_ep, 0); in dwc2_ep_enable()
600 __func__, _ep->name, ep->stopped, ep->ep.maxpacket); in dwc2_ep_enable()
607 static int dwc2_ep_disable(struct usb_ep *_ep) in dwc2_ep_disable() argument
[all …]
Dpxa25x_udc.c294 static int pxa25x_ep_enable(struct usb_ep *_ep, in pxa25x_ep_enable() argument
300 ep = container_of(_ep, struct pxa25x_ep, ep); in pxa25x_ep_enable()
301 if (!_ep || !desc || ep->desc || _ep->name == ep0name in pxa25x_ep_enable()
314 printf("%s, %s type mismatch\n", __func__, _ep->name); in pxa25x_ep_enable()
323 printf("%s, bad %s maxpacket\n", __func__, _ep->name); in pxa25x_ep_enable()
339 pxa25x_ep_fifo_flush(_ep); in pxa25x_ep_enable()
343 debug("enabled %s\n", _ep->name); in pxa25x_ep_enable()
347 static int pxa25x_ep_disable(struct usb_ep *_ep) in pxa25x_ep_disable() argument
352 ep = container_of(_ep, struct pxa25x_ep, ep); in pxa25x_ep_disable()
353 if (!_ep || !ep->desc) { in pxa25x_ep_disable()
[all …]
Dfotg210.c501 struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc) in fotg210_ep_enable() argument
503 struct fotg210_ep *ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_enable()
509 if (!_ep || !desc in fotg210_ep_enable()
545 static int fotg210_ep_disable(struct usb_ep *_ep) in fotg210_ep_disable() argument
547 struct fotg210_ep *ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_disable()
562 struct usb_ep *_ep, gfp_t gfp_flags) in fotg210_ep_alloc_request() argument
574 struct usb_ep *_ep, struct usb_request *_req) in fotg210_ep_free_request() argument
583 struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags) in fotg210_ep_queue() argument
585 struct fotg210_ep *ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_queue()
642 static int fotg210_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) in fotg210_ep_dequeue() argument
[all …]
Datmel_usba_udc.c169 usba_ep_enable(struct usb_ep *_ep, const struct usb_endpoint_descriptor *desc) in usba_ep_enable() argument
171 struct usba_ep *ep = to_usba_ep(_ep); in usba_ep_enable()
271 static int usba_ep_disable(struct usb_ep *_ep) in usba_ep_disable() argument
273 struct usba_ep *ep = to_usba_ep(_ep); in usba_ep_disable()
310 usba_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags) in usba_ep_alloc_request() argument
314 DBG(DBG_GADGET, "ep_alloc_request: %p, 0x%x\n", _ep, gfp_flags); in usba_ep_alloc_request()
326 usba_ep_free_request(struct usb_ep *_ep, struct usb_request *_req) in usba_ep_free_request() argument
330 DBG(DBG_GADGET, "ep_free_request: %p, %p\n", _ep, _req); in usba_ep_free_request()
336 usba_ep_queue(struct usb_ep *_ep, struct usb_request *_req, gfp_t gfp_flags) in usba_ep_queue() argument
339 struct usba_ep *ep = to_usba_ep(_ep); in usba_ep_queue()
[all …]
Dat91_udc.c283 static int at91_ep_enable(struct usb_ep *_ep, in at91_ep_enable() argument
286 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_enable()
292 if (!_ep || !ep in at91_ep_enable()
293 || !desc || _ep->name == ep0name in at91_ep_enable()
361 static int at91_ep_disable (struct usb_ep * _ep) in at91_ep_disable() argument
363 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_disable()
395 at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags) in at91_ep_alloc_request() argument
407 static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req) in at91_ep_free_request() argument
416 static int at91_ep_queue(struct usb_ep *_ep, in at91_ep_queue() argument
426 ep = container_of(_ep, struct at91_ep, ep); in at91_ep_queue()
[all …]
Ddwc2_udc_otg_xfer_dma.c585 static int dwc2_queue(struct usb_ep *_ep, struct usb_request *_req, in dwc2_queue() argument
602 ep = container_of(_ep, struct dwc2_ep, ep); in dwc2_queue()
604 if (unlikely(!_ep || (!ep->desc && ep->ep.name != ep0name))) { in dwc2_queue()
607 ep->ep.name, !ep->desc, _ep); in dwc2_queue()
627 __func__, _ep->name, ep_is_in(ep) ? "in" : "out", in dwc2_queue()
1035 static int dwc2_udc_set_halt(struct usb_ep *_ep, int value) in dwc2_udc_set_halt() argument
1042 ep = container_of(_ep, struct dwc2_ep, ep); in dwc2_udc_set_halt()
1045 if (unlikely(!_ep || !ep->desc || ep_num == EP0_CON || in dwc2_udc_set_halt()
1129 static int dwc2_udc_clear_feature(struct usb_ep *_ep) in dwc2_udc_clear_feature() argument
1135 ep = container_of(_ep, struct dwc2_ep, ep); in dwc2_udc_clear_feature()
[all …]
Dci_udc.c527 static int ci_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) in ci_ep_dequeue() argument
529 struct ci_ep *ci_ep = container_of(_ep, struct ci_ep, ep); in ci_ep_dequeue()
545 ci_req->req.complete(_ep, _req); in ci_ep_dequeue()
/external/webrtc/talk/media/testdata/
Dfaces.1280x720_P420.yuv3 …���������������������������������{uolid`\XSOIDCBCCDDEFHIILNPRUZ_cca]]^^___^_ep|~|��~��������k`\Q…
/external/honggfuzz/examples/apache-httpd/corpus_http1/
Dd67edb1149be76f86c648c58fe1787ef.0006cbc1.honggfuzz.cov2256 �g�`�6�`�,� /��R�(Ei�>h�q���j�%x��_ep|��|k�B��g����=Aqm��U�|oH��@�R/z��"���޲J�7[�%⛪�6%����…