/include/linux/usb/ |
D | gadget.h | 116 void (*complete)(struct usb_ep *ep, 139 int (*enable) (struct usb_ep *ep, 141 int (*disable) (struct usb_ep *ep); 142 void (*dispose) (struct usb_ep *ep); 144 struct usb_request *(*alloc_request) (struct usb_ep *ep, 146 void (*free_request) (struct usb_ep *ep, struct usb_request *req); 148 int (*queue) (struct usb_ep *ep, struct usb_request *req, 150 int (*dequeue) (struct usb_ep *ep, struct usb_request *req); 152 int (*set_halt) (struct usb_ep *ep, int value); 153 int (*set_wedge) (struct usb_ep *ep); [all …]
|
D | musb.h | 44 #define MUSB_EP_FIFO(ep, st, m, pkt) \ argument 46 .hw_ep_num = ep, \ 52 #define MUSB_EP_FIFO_SINGLE(ep, st, pkt) \ argument 53 MUSB_EP_FIFO(ep, st, BUF_SINGLE, pkt) 55 #define MUSB_EP_FIFO_DOUBLE(ep, st, pkt) \ argument 56 MUSB_EP_FIFO(ep, st, BUF_DOUBLE, pkt)
|
D | hcd.h | 321 struct usb_host_endpoint *ep); 326 struct usb_host_endpoint *ep); 437 struct usb_host_endpoint *ep) in hcd_periodic_completion_in_progress() argument 439 return hcd->high_prio_bh.completing_ep == ep; in hcd_periodic_completion_in_progress() 461 struct usb_host_endpoint *ep); 463 struct usb_host_endpoint *ep); 465 struct usb_host_endpoint *ep); 545 #define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> (ep)) & 1) argument 546 #define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << (ep))) argument 547 #define usb_settoggle(dev, ep, out, bit) \ argument [all …]
|
D | ehci-dbgp.h | 43 #define DBGP_EPADDR(dev, ep) (((dev)<<8)|(ep)) argument
|
D | cdc-wdm.h | 19 struct usb_endpoint_descriptor *ep,
|
/include/net/sctp/ |
D | auth.h | 77 int sctp_auth_asoc_copy_shkeys(const struct sctp_endpoint *ep, 80 int sctp_auth_init_hmacs(struct sctp_endpoint *ep, gfp_t gfp); 99 int sctp_auth_ep_add_chunkid(struct sctp_endpoint *ep, __u8 chunk_id); 100 int sctp_auth_ep_set_hmacs(struct sctp_endpoint *ep, 102 int sctp_auth_set_key(struct sctp_endpoint *ep, struct sctp_association *asoc, 104 int sctp_auth_set_active_key(struct sctp_endpoint *ep, 106 int sctp_auth_del_key_id(struct sctp_endpoint *ep, 108 int sctp_auth_deact_key_id(struct sctp_endpoint *ep, 110 int sctp_auth_init(struct sctp_endpoint *ep, gfp_t gfp); 111 void sctp_auth_free(struct sctp_endpoint *ep);
|
D | sm.h | 55 const struct sctp_endpoint *ep, 309 struct sctp_endpoint *ep, struct sctp_association *asoc, 322 const struct sctp_endpoint *ep, 329 __u32 sctp_generate_tag(const struct sctp_endpoint *ep); 330 __u32 sctp_generate_tsn(const struct sctp_endpoint *ep);
|
D | structs.h | 163 struct sctp_endpoint *ep; member 1374 struct sctp_endpoint *ep; in sctp_ep() local 1376 ep = container_of(base, struct sctp_endpoint, base); in sctp_ep() 1377 return ep; in sctp_ep() 1384 int sctp_endpoint_hold(struct sctp_endpoint *ep); 1387 const struct sctp_endpoint *ep, 1390 bool sctp_endpoint_is_peeled_off(struct sctp_endpoint *ep, 1397 int sctp_verify_init(struct net *net, const struct sctp_endpoint *ep, 1593 struct sctp_endpoint *ep; member 2133 sctp_association_new(const struct sctp_endpoint *ep, const struct sock *sk,
|
D | sctp.h | 141 int sctp_hash_endpoint(struct sctp_endpoint *ep); 167 const struct sctp_endpoint *ep,
|
/include/trace/events/ |
D | sctp.h | 52 TP_PROTO(const struct sctp_endpoint *ep, 56 TP_ARGS(ep, asoc, chunk), 73 __entry->bind_port = ep->base.bind_addr.port;
|
D | rpcrdma.h | 486 const struct rpcrdma_ep *ep 489 TP_ARGS(ep), 501 const struct rdma_cm_id *id = ep->re_id; 503 __entry->inline_send = ep->re_inline_send; 504 __entry->inline_recv = ep->re_inline_recv; 505 __entry->max_send = ep->re_max_inline_send; 506 __entry->max_recv = ep->re_max_inline_recv; 814 const struct rpcrdma_ep *ep = r_xprt->rx_ep; 816 __entry->cq_id = ep ? ep->re_attr.recv_cq->res.id : 0; 868 const struct rpcrdma_ep *ep = r_xprt->rx_ep; [all …]
|
/include/media/ |
D | v4l2-async.h | 206 #define v4l2_async_notifier_add_fwnode_remote_subdev(notifier, ep, type) \ argument 208 __v4l2_async_notifier_add_fwnode_remote_subdev(notifier, ep, \
|
/include/scsi/ |
D | scsi_transport_iscsi.h | 79 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); 212 struct iscsi_endpoint *ep; member 465 extern void iscsi_destroy_endpoint(struct iscsi_endpoint *ep); 467 extern void iscsi_put_endpoint(struct iscsi_endpoint *ep);
|
/include/linux/ |
D | usbdevice_fs.h | 48 compat_uint_t ep; member
|
D | usb.h | 1611 struct usb_host_endpoint *ep; /* (internal) pointer to endpoint */ member 2024 struct usb_host_endpoint *ep; in usb_maxpacket() local 2029 ep = udev->ep_out[epnum]; in usb_maxpacket() 2032 ep = udev->ep_in[epnum]; in usb_maxpacket() 2034 if (!ep) in usb_maxpacket() 2038 return usb_endpoint_maxp(&ep->desc); in usb_maxpacket()
|
D | security.h | 1439 int security_sctp_assoc_request(struct sctp_endpoint *ep, struct sk_buff *skb); 1442 void security_sctp_sk_clone(struct sctp_endpoint *ep, struct sock *sk, 1645 static inline int security_sctp_assoc_request(struct sctp_endpoint *ep, in security_sctp_assoc_request() argument 1658 static inline void security_sctp_sk_clone(struct sctp_endpoint *ep, in security_sctp_sk_clone() argument
|
D | lsm_hook_defs.h | 334 LSM_HOOK(int, 0, sctp_assoc_request, struct sctp_endpoint *ep, 338 LSM_HOOK(void, LSM_RET_VOID, sctp_sk_clone, struct sctp_endpoint *ep,
|
/include/linux/sunrpc/ |
D | cache.h | 252 char *ep; in get_int() local 261 rv = simple_strtol(buf, &ep, 0); in get_int() 262 if (*ep) in get_int()
|
/include/uapi/linux/usb/ |
D | raw_gadget.h | 90 __u16 ep; member
|
/include/uapi/linux/ |
D | ethtool.h | 125 static inline void ethtool_cmd_speed_set(struct ethtool_cmd *ep, in ethtool_cmd_speed_set() argument 128 ep->speed = (__u16)(speed & 0xFFFF); in ethtool_cmd_speed_set() 129 ep->speed_hi = (__u16)(speed >> 16); in ethtool_cmd_speed_set() 132 static inline __u32 ethtool_cmd_speed(const struct ethtool_cmd *ep) in ethtool_cmd_speed() argument 134 return (ep->speed_hi << 16) | ep->speed; in ethtool_cmd_speed()
|
D | usbdevice_fs.h | 51 unsigned int ep; member
|
/include/sound/ |
D | soc-component.h | 454 struct device_node *ep);
|
D | soc.h | 1303 int snd_soc_get_dai_id(struct device_node *ep);
|