Searched refs:ep (Results 251 - 275 of 623) sorted by relevance

<<11121314151617181920>>

/linux-master/drivers/net/ethernet/qualcomm/rmnet/
H A Drmnet_handlers.c60 struct rmnet_endpoint *ep; local
79 ep = rmnet_get_endpoint(port, mux_id);
80 if (!ep)
83 skb->dev = ep->egress_dev;
/linux-master/drivers/media/usb/uvc/
H A Duvc_status.c256 struct usb_host_endpoint *ep = dev->int_ep; local
260 if (ep == NULL)
275 pipe = usb_rcvintpipe(dev->udev, ep->desc.bEndpointAddress);
281 interval = ep->desc.bInterval;
/linux-master/drivers/usb/c67x00/
H A Dc67x00-hcd.h110 struct usb_host_endpoint *ep);
/linux-master/drivers/platform/x86/intel/pmt/
H A Dclass.h40 struct telem_endpoint *ep; member in struct:intel_pmt_entry
/linux-master/include/linux/soc/apple/
H A Drtkit.h153 * @ep: target endpoint
160 int apple_rtkit_send_message(struct apple_rtkit *rtk, u8 ep, u64 message,
/linux-master/drivers/gpu/drm/rockchip/
H A Drockchip_drm_drv.h87 int rockchip_drm_endpoint_is_subdriver(struct device_node *ep);
/linux-master/drivers/w1/masters/
H A Dds2490.c131 int ep[NUM_EP]; member in struct:ds_device
174 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]),
190 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]),
206 err = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, dev->ep[EP_CONTROL]),
224 ds_dev->ep[EP_STATUS], count, count, buf);
280 dev->ep[EP_STATUS]),
286 dev->ep[EP_STATUS], err);
330 err = usb_bulk_msg(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_DATA_IN]),
335 dev_info(&dev->udev->dev, "Clearing ep0x%x.\n", dev->ep[EP_DATA_IN]);
336 usb_clear_halt(dev->udev, usb_rcvbulkpipe(dev->udev, dev->ep[EP_DATA_I
[all...]
/linux-master/drivers/scsi/bnx2i/
H A Dbnx2i.h275 * @ep: endpoint structure pointer
296 struct bnx2i_endpoint *ep; member in struct:bnx2i_conn
364 * @ep_rdwr_lock: read / write lock to synchronize various ep lists
737 * @timestamp: tracks the start time when the ep begins to connect
738 * @num_active_cmds: tracks the number of outstanding commands for this ep
852 struct bnx2i_endpoint *ep);
855 struct bnx2i_endpoint *ep);
858 struct bnx2i_endpoint *ep);
860 struct bnx2i_endpoint *ep);
867 extern int bnx2i_map_ep_dbell_regs(struct bnx2i_endpoint *ep);
[all...]
/linux-master/sound/usb/
H A Dimplicit.c38 #define IMPLICIT_FB_FIXED_DEV(vend, prod, ep, ifnum) \
39 { .id = USB_ID(vend, prod), .type = IMPLICIT_FB_FIXED, .ep_num = (ep),\
41 #define IMPLICIT_FB_BOTH_DEV(vend, prod, ep, ifnum) \
42 { .id = USB_ID(vend, prod), .type = IMPLICIT_FB_BOTH, .ep_num = (ep),\
68 /* ep = 0x84, ifnum = 0 */
84 int ep, int ep_idx, int ifnum,
96 fmt->sync_ep = ep;
104 (ep & USB_DIR_IN) ? "playback" : "capture",
82 add_implicit_fb_sync_ep(struct snd_usb_audio *chip, struct audioformat *fmt, int ep, int ep_idx, int ifnum, const struct usb_host_interface *alts) argument
/linux-master/drivers/usb/gadget/function/
H A Df_obex.c308 struct usb_ep *ep; local
343 ep = usb_ep_autoconfig(cdev->gadget, &obex_fs_ep_in_desc);
344 if (!ep)
346 obex->port.in = ep;
348 ep = usb_ep_autoconfig(cdev->gadget, &obex_fs_ep_out_desc);
349 if (!ep)
351 obex->port.out = ep;
H A Df_rndis.c398 static void rndis_response_complete(struct usb_ep *ep, struct usb_request *req) argument
416 ep->name, status,
420 if (ep != rndis->notify)
437 static void rndis_command_complete(struct usb_ep *ep, struct usb_request *req) argument
662 struct usb_ep *ep; local
734 ep = usb_ep_autoconfig(cdev->gadget, &fs_in_desc);
735 if (!ep)
737 rndis->port.in_ep = ep;
739 ep = usb_ep_autoconfig(cdev->gadget, &fs_out_desc);
740 if (!ep)
[all...]
/linux-master/include/scsi/
H A Dscsi_transport_iscsi.h79 struct iscsi_cls_session *(*create_session) (struct iscsi_endpoint *ep,
94 int (*get_ep_param) (struct iscsi_endpoint *ep, enum iscsi_param param,
125 int (*ep_poll) (struct iscsi_endpoint *ep, int timeout_ms);
126 void (*ep_disconnect) (struct iscsi_endpoint *ep);
208 * This protects the conn startup and binding/unbinding of the ep to
212 struct iscsi_endpoint *ep; member in struct:iscsi_cls_conn
466 extern void iscsi_destroy_endpoint(struct iscsi_endpoint *ep);
468 extern void iscsi_put_endpoint(struct iscsi_endpoint *ep);
/linux-master/drivers/gpu/drm/meson/
H A Dmeson_drv.c113 struct device_node *ep, *remote; local
116 for_each_endpoint_of_node(dev->of_node, ep) {
118 remote = of_graph_get_remote_port(ep);
121 of_node_put(ep);
481 struct device_node *ep, *remote; local
484 for_each_endpoint_of_node(np, ep) {
485 remote = of_graph_get_remote_port_parent(ep);
/linux-master/drivers/scsi/
H A Dscsi_transport_iscsi.c173 struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev); local
176 idr_remove(&iscsi_ep_idr, ep->id);
179 kfree(ep);
190 struct iscsi_endpoint *ep = iscsi_dev_to_endpoint(dev); local
191 return sysfs_emit(buf, "%d\n", ep->id);
193 static ISCSI_ATTR(ep, handle, S_IRUGO, show_ep_handle, NULL);
207 struct iscsi_endpoint *ep; local
210 ep = kzalloc(sizeof(*ep) + dd_size, GFP_KERNEL);
211 if (!ep)
260 iscsi_destroy_endpoint(struct iscsi_endpoint *ep) argument
267 iscsi_put_endpoint(struct iscsi_endpoint *ep) argument
281 struct iscsi_endpoint *ep; local
2251 struct iscsi_endpoint *ep; local
2267 iscsi_if_disconnect_bound_ep(struct iscsi_cls_conn *conn, struct iscsi_endpoint *ep, bool is_active) argument
2948 iscsi_if_create_session(struct iscsi_internal *priv, struct iscsi_endpoint *ep, struct iscsi_uevent *ev, pid_t pid, uint32_t initial_cmdsn, uint16_t cmds_max, uint16_t queue_depth) argument
3059 struct iscsi_endpoint *ep; local
3097 struct iscsi_endpoint *ep; local
3128 struct iscsi_endpoint *ep; local
3800 struct iscsi_endpoint *ep; local
3913 struct iscsi_endpoint *ep = NULL; local
[all...]
/linux-master/drivers/usb/cdns3/
H A Dcdns3-ep0.c642 * @ep: pointer to endpoint zero object
648 static int cdns3_gadget_ep0_enable(struct usb_ep *ep, argument
656 * @ep: pointer to endpoint zero object
661 static int cdns3_gadget_ep0_disable(struct usb_ep *ep) argument
668 * @ep: pointer to endpoint zero object
673 static int cdns3_gadget_ep0_set_halt(struct usb_ep *ep, int value) argument
681 * @ep: pointer to endpoint zero object
687 static int cdns3_gadget_ep0_queue(struct usb_ep *ep, argument
691 struct cdns3_endpoint *priv_ep = ep_to_cdns3_ep(ep);
765 (request->length % ep
781 cdns3_gadget_ep_set_wedge(struct usb_ep *ep) argument
[all...]
/linux-master/drivers/usb/core/
H A Ddevio.c493 int ep; local
499 ep = usb_pipeendpoint(pipe);
505 dev_info(&udev->dev, "userurb %px, ep%d %s-%s, "
507 userurb, ep, t, d, length);
509 dev_info(&udev->dev, "userurb %px, ep%d %s-%s, "
511 userurb, ep, t, d, length,
515 dev_info(&udev->dev, "ep%d %s-%s, length %u, "
517 ep, t, d, length, timeout_or_status);
519 dev_info(&udev->dev, "ep%d %s-%s, actual_length %u, "
521 ep,
853 findintfep(struct usb_device *dev, unsigned int ep) argument
937 ep_to_host_endpoint(struct usb_device *dev, unsigned char ep) argument
956 unsigned char ep; local
1288 struct usb_host_endpoint *ep; local
1383 struct usb_host_endpoint *ep; local
1395 unsigned int ep; local
1413 unsigned int ep; local
1621 struct usb_host_endpoint *ep; local
[all...]
H A Dmessage.c69 "%s timed out on ep%d%s len=%u/%u\n",
71 usb_endpoint_num(&urb->ep->desc),
368 struct usb_host_endpoint *ep; local
370 ep = usb_pipe_endpoint(usb_dev, pipe);
371 if (!ep || len < 0)
378 if ((ep->desc.bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) ==
383 ep->desc.bInterval);
428 "dev %s ep%d%s scatterlist error %d/%d\n",
430 usb_endpoint_num(&urb->ep->desc),
1286 struct usb_host_endpoint *ep; local
1320 struct usb_host_endpoint *ep; local
1453 usb_enable_endpoint(struct usb_device *dev, struct usb_host_endpoint *ep, bool reset_ep) argument
[all...]
H A Dhcd.c818 if (usb_endpoint_xfer_int(&urb->ep->desc))
820 if (usb_endpoint_xfer_control(&urb->ep->desc))
840 if (usb_endpoint_num(&urb->ep->desc) == 0) { /* Control URB */
1142 if (unlikely(!urb->ep->enabled)) {
1158 list_add_tail(&urb->urb_list, &urb->ep->urb_list);
1194 list_for_each(tmp, &urb->ep->urb_list) {
1396 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1444 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1681 bh->completing_ep = urb->ep;
1762 struct usb_host_endpoint *ep)
1761 usb_hcd_flush_endpoint(struct usb_device *udev, struct usb_host_endpoint *ep) argument
1849 struct usb_host_endpoint *ep; local
1962 usb_hcd_disable_endpoint(struct usb_device *udev, struct usb_host_endpoint *ep) argument
1981 usb_hcd_reset_endpoint(struct usb_device *udev, struct usb_host_endpoint *ep) argument
[all...]
/linux-master/drivers/usb/gadget/udc/
H A Dfsl_qe_udc.h152 #define ep_index(EP) ((EP)->ep.desc->bEndpointAddress & 0xF)
153 #define ep_maxpacket(EP) ((EP)->ep.maxpacket)
155 USB_DIR_IN) : ((EP)->ep.desc->bEndpointAddress \
165 /* ep tramsfer mode */
257 struct qe_ep *ep; member in struct:qe_req
262 struct usb_ep ep; member in struct:qe_ep
/linux-master/drivers/gpu/drm/omapdrm/dss/
H A Dsdi.c341 struct device_node *ep; local
349 ep = of_get_next_child(port, NULL);
350 if (!ep) {
355 r = of_property_read_u32(ep, "datapairs", &datapairs);
356 of_node_put(ep);
/linux-master/drivers/media/platform/marvell/
H A Dmmp-driver.c181 struct fwnode_handle *ep; local
236 ep = fwnode_graph_get_next_endpoint(of_fwnode_handle(pdev->dev.of_node),
238 if (!ep)
243 asd = v4l2_async_nf_add_fwnode_remote(&mcam->notifier, ep,
245 fwnode_handle_put(ep);
/linux-master/drivers/usb/typec/mux/
H A Dfsa4480.c200 struct fwnode_handle *ep; local
204 ep = fwnode_graph_get_next_endpoint(dev_fwnode(&fsa->client->dev), NULL);
205 if (!ep)
208 ret = fwnode_property_read_u32_array(ep, "data-lanes", data_lanes, DATA_LANES_COUNT);
243 fwnode_handle_put(ep);
/linux-master/drivers/usb/misc/
H A Dusbtest.c153 unsigned ep; local
167 for (ep = 0; ep < alt->desc.bNumEndpoints; ep++) {
171 e = alt->endpoint + ep;
344 struct usb_host_endpoint *ep; local
346 ep = usb_pipe_endpoint(udev, pipe);
347 return le16_to_cpup(&ep->desc.wMaxPacketSize);
352 struct usb_host_endpoint *ep = usb_pipe_endpoint(udev, pipe); local
354 return USB_SS_MULT(ep
1629 verify_not_halted(struct usbtest_dev *tdev, int ep, struct urb *urb) argument
1651 verify_halted(struct usbtest_dev *tdev, int ep, struct urb *urb) argument
1676 test_halt(struct usbtest_dev *tdev, int ep, struct urb *urb) argument
1722 test_toggle_sync(struct usbtest_dev *tdev, int ep, struct urb *urb) argument
1753 int ep; local
1785 int ep; local
[all...]
/linux-master/net/sctp/
H A Dsm_sideeffect.c43 struct sctp_endpoint *ep,
52 struct sctp_endpoint *ep,
256 asoc->ep, asoc,
297 asoc->state, asoc->ep, asoc,
393 asoc->state, asoc->ep, asoc,
434 asoc->state, asoc->ep, asoc, transport, GFP_ATOMIC);
467 asoc->state, asoc->ep, asoc,
499 asoc->state, asoc->ep, asoc,
838 asoc->state, asoc->ep, asoc, NULL,
1124 pr_debug("%s[pre-fn]: ep
1143 sctp_do_sm(struct net *net, enum sctp_event_type event_type, union sctp_subtype subtype, enum sctp_state state, struct sctp_endpoint *ep, struct sctp_association *asoc, void *event_arg, gfp_t gfp) argument
1180 sctp_side_effects(enum sctp_event_type event_type, union sctp_subtype subtype, enum sctp_state state, struct sctp_endpoint *ep, struct sctp_association **asoc, void *event_arg, enum sctp_disposition status, struct sctp_cmd_seq *commands, gfp_t gfp) argument
1269 sctp_cmd_interpreter(enum sctp_event_type event_type, union sctp_subtype subtype, enum sctp_state state, struct sctp_endpoint *ep, struct sctp_association *asoc, void *event_arg, enum sctp_disposition status, struct sctp_cmd_seq *commands, gfp_t gfp) argument
[all...]
H A Dsm_make_chunk.c58 const struct sctp_endpoint *ep,
215 struct sctp_endpoint *ep = asoc->ep; local
248 if (asoc->ep->ecn_enable)
251 if (asoc->ep->prsctp_enable)
259 if (asoc->ep->asconf_enable) {
265 if (asoc->ep->reconf_enable) {
273 if (asoc->ep->intl_enable) {
281 if (ep->auth_enable) {
340 if (asoc->ep
1628 sctp_make_temp_asoc(const struct sctp_endpoint *ep, struct sctp_chunk *chunk, gfp_t gfp) argument
1653 sctp_pack_cookie( const struct sctp_endpoint *ep, const struct sctp_association *asoc, const struct sctp_chunk *init_chunk, int *cookie_len, const __u8 *raw_addrs, int addrs_len) argument
1740 sctp_unpack_cookie( const struct sctp_endpoint *ep, const struct sctp_association *asoc, struct sctp_chunk *chunk, gfp_t gfp, int *error, struct sctp_chunk **errp) argument
2011 sctp_verify_ext_param(struct net *net, const struct sctp_endpoint *ep, union sctp_params param) argument
2162 sctp_verify_param(struct net *net, const struct sctp_endpoint *ep, const struct sctp_association *asoc, union sctp_params param, enum sctp_cid cid, struct sctp_chunk *chunk, struct sctp_chunk **err_chunk) argument
2290 sctp_verify_init(struct net *net, const struct sctp_endpoint *ep, const struct sctp_association *asoc, enum sctp_cid cid, struct sctp_init_chunk *peer_init, struct sctp_chunk *chunk, struct sctp_chunk **errp) argument
2545 struct sctp_endpoint *ep = asoc->ep; local
2752 sctp_generate_tag(const struct sctp_endpoint *ep) argument
2767 sctp_generate_tsn(const struct sctp_endpoint *ep) argument
[all...]

Completed in 502 milliseconds

<<11121314151617181920>>