Searched refs:endpoint (Results 1 - 25 of 143) sorted by relevance

123456

/freebsd-current/sys/arm64/coresight/
H A Dcoresight.h79 struct endpoint { struct
80 TAILQ_ENTRY(endpoint) link;
93 LIST_ENTRY(endpoint) endplink;
101 TAILQ_HEAD(endpoint_list, endpoint) endpoints;
132 LIST_HEAD(, endpoint) endplist;
154 struct endpoint * coresight_get_output_endpoint(struct coresight_platform_data *pdata);
155 struct coresight_device * coresight_get_output_device(struct endpoint *endp, struct endpoint **);
H A Dcoresight.c64 struct endpoint *
67 struct endpoint *endp;
81 coresight_get_output_device(struct endpoint *endp, struct endpoint **out_endp)
85 struct endpoint *endp2;
H A Dcoresight_cmd.c50 struct endpoint *out_endp;
51 struct endpoint *endp;
97 struct endpoint *endp;
129 struct endpoint *endp;
141 struct endpoint *endp;
152 struct endpoint *endp;
H A Dcoresight_replicator.c64 replicator_enable(device_t dev, struct endpoint *endp,
84 replicator_disable(device_t dev, struct endpoint *endp,
H A Dcoresight_funnel.c76 funnel_enable(device_t dev, struct endpoint *endp,
96 funnel_disable(device_t dev, struct endpoint *endp,
H A Dcoresight_fdt.c56 struct endpoint *endp;
75 endpoint_child = ofw_bus_find_child(child, "endpoint");
78 "remote-endpoint", &xref,
83 endp = malloc(sizeof(struct endpoint),
H A Dcoresight_tmc.c134 tmc_configure_etr(device_t dev, struct endpoint *endp,
222 tmc_enable(device_t dev, struct endpoint *endp,
256 tmc_disable(device_t dev, struct endpoint *endp,
281 tmc_read(device_t dev, struct endpoint *endp,
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dusb.h184 /* Whenever Linux references an USB endpoint:
185 * a) to initialize "urb->endpoint"
188 * Then it uses one of the following macros. The "endpoint" argument
189 * is the physical endpoint value masked by 0xF. The "dev" argument
192 #define usb_sndctrlpipe(dev,endpoint) \
193 usb_find_host_endpoint(dev, PIPE_CONTROL, (endpoint) | USB_DIR_OUT)
195 #define usb_rcvctrlpipe(dev,endpoint) \
196 usb_find_host_endpoint(dev, PIPE_CONTROL, (endpoint) | USB_DIR_IN)
198 #define usb_sndisocpipe(dev,endpoint) \
199 usb_find_host_endpoint(dev, PIPE_ISOCHRONOUS, (endpoint) | USB_DIR_OU
242 struct usb_host_endpoint *endpoint; /* (in) pipe pointer */ member in struct:urb
[all...]
/freebsd-current/sys/dev/ofw/
H A Dofw_graph.c96 if (strcmp(name, "endpoint") == 0)
98 else if (strncmp(name, "endpoint@", 9) == 0)
109 phandle_t endpoint, child; local
112 /* First test if we have only one endpoint */
113 endpoint = ofw_bus_find_child(port, "endpoint");
114 if (endpoint != 0)
115 return (endpoint);
130 ofw_graph_get_remote_endpoint(phandle_t endpoint) argument
134 if (OF_getencprop(endpoint, "remot
174 phandle_t outport, port, endpoint, remote; local
[all...]
H A Dofw_graph.h34 phandle_t ofw_graph_get_remote_endpoint(phandle_t endpoint);
/freebsd-current/sys/dev/rtwn/usb/
H A Drtwn_usb_ep.c61 .endpoint = UE_ADDR_ANY,
71 .endpoint = UE_ADDR_ANY,
84 .endpoint = UE_ADDR_ANY,
97 .endpoint = UE_ADDR_ANY,
110 .endpoint = UE_ADDR_ANY,
180 "%s: endpoint: addr %u, direction %s\n", __func__,
202 rtwn_config[RTWN_BULK_TX_VO].endpoint = addr[0];
206 rtwn_config[RTWN_BULK_TX_BE].endpoint = addr[2];
207 rtwn_config[RTWN_BULK_TX_BK].endpoint = addr[2];
208 rtwn_config[RTWN_BULK_TX_VI].endpoint
[all...]
/freebsd-current/contrib/wireguard-tools/
H A Dshowconf.c75 if (peer->endpoint.addr.sa_family == AF_INET || peer->endpoint.addr.sa_family == AF_INET6) {
80 if (peer->endpoint.addr.sa_family == AF_INET)
82 else if (peer->endpoint.addr.sa_family == AF_INET6)
84 if (!getnameinfo(&peer->endpoint.addr, addr_len, host, sizeof(host), service, sizeof(service), NI_DGRAM | NI_NUMERICSERV | NI_NUMERICHOST)) {
85 if (peer->endpoint.addr.sa_family == AF_INET6 && strchr(host, ':'))
H A Dipc-freebsd.h151 if (nvlist_exists_binary(nvl_peers[i], "endpoint")) {
152 const struct sockaddr *endpoint = nvlist_get_binary(nvl_peers[i], "endpoint", &size); local
153 if (endpoint && size <= sizeof(peer->endpoint) && size >= sizeof(peer->endpoint.addr) &&
154 (endpoint->sa_family == AF_INET || endpoint->sa_family == AF_INET6))
155 memcpy(&peer->endpoint.addr, endpoint, siz
[all...]
H A Dipc-uapi.h66 if (peer->endpoint.addr.sa_family == AF_INET || peer->endpoint.addr.sa_family == AF_INET6) {
68 if (peer->endpoint.addr.sa_family == AF_INET)
70 else if (peer->endpoint.addr.sa_family == AF_INET6)
72 if (!getnameinfo(&peer->endpoint.addr, addr_len, host, sizeof(host), service, sizeof(service), NI_DGRAM | NI_NUMERICSERV | NI_NUMERICHOST)) {
73 if (peer->endpoint.addr.sa_family == AF_INET6 && strchr(host, ':'))
74 fprintf(f, "endpoint=[%s]:%s\n", host, service);
76 fprintf(f, "endpoint=%s:%s\n", host, service);
207 } else if (peer && !strcmp(key, "endpoint")) {
238 memcpy(&peer->endpoint
[all...]
H A Dshow.c106 static char *endpoint(const struct sockaddr *addr) function
231 if (peer->endpoint.addr.sa_family == AF_INET || peer->endpoint.addr.sa_family == AF_INET6)
232 terminal_printf(" " TERMINAL_BOLD "endpoint" TERMINAL_RESET ": %s\n", endpoint(&peer->endpoint.addr));
272 if (peer->endpoint.addr.sa_family == AF_INET || peer->endpoint.addr.sa_family == AF_INET6)
273 printf("%s\t", endpoint(&peer->endpoint
[all...]
/freebsd-current/sys/contrib/dev/athk/ath10k/
H A Dusb.c287 ep = &ar->htc.endpoint[htc_hdr->eid];
304 ep = &ar->htc.endpoint[eid];
828 struct usb_endpoint_descriptor *endpoint; local
837 endpoint = &iface_desc->endpoint[i].desc;
839 if (ATH10K_USB_IS_BULK_EP(endpoint->bmAttributes)) {
843 (endpoint->bEndpointAddress) ?
844 "rx" : "tx", endpoint->bEndpointAddress,
845 le16_to_cpu(endpoint->wMaxPacketSize));
846 } else if (ATH10K_USB_IS_INT_EP(endpoint
[all...]
/freebsd-current/lib/libusb/
H A Dlibusb10_io.c538 uint8_t endpoint, uint8_t *data, int length,
559 xfer->endpoint = endpoint;
608 uint8_t endpoint, uint8_t *data, int length,
618 ret = libusb10_do_transfer(devh, endpoint, data, length, transferred,
627 uint8_t endpoint, uint8_t *data, int length,
637 ret = libusb10_do_transfer(devh, endpoint, data, length, transferred,
737 transfer->endpoint = 0;
753 libusb_device_handle *devh, uint8_t endpoint, uint8_t *buf,
758 transfer->endpoint
537 libusb10_do_transfer(libusb_device_handle *devh, uint8_t endpoint, uint8_t *data, int length, int *transferred, unsigned int timeout, int type) argument
607 libusb_bulk_transfer(libusb_device_handle *devh, uint8_t endpoint, uint8_t *data, int length, int *transferred, unsigned int timeout) argument
626 libusb_interrupt_transfer(libusb_device_handle *devh, uint8_t endpoint, uint8_t *data, int length, int *transferred, unsigned int timeout) argument
752 libusb_fill_bulk_transfer(struct libusb_transfer *transfer, libusb_device_handle *devh, uint8_t endpoint, uint8_t *buf, int length, libusb_transfer_cb_fn callback, void *user_data, uint32_t timeout) argument
768 libusb_fill_interrupt_transfer(struct libusb_transfer *transfer, libusb_device_handle *devh, uint8_t endpoint, uint8_t *buf, int length, libusb_transfer_cb_fn callback, void *user_data, uint32_t timeout) argument
784 libusb_fill_iso_transfer(struct libusb_transfer *transfer, libusb_device_handle *devh, uint8_t endpoint, uint8_t *buf, int length, int npacket, libusb_transfer_cb_fn callback, void *user_data, uint32_t timeout) argument
[all...]
H A Dlibusb10.c453 libusb_get_max_packet_size(libusb_device *dev, uint8_t endpoint) argument
477 pdend = &pdinf->endpoint[k];
478 if (pdend->bEndpointAddress == endpoint) {
492 libusb_get_max_iso_packet_size(libusb_device *dev, uint8_t endpoint) argument
497 ret = libusb_get_max_packet_size(dev, endpoint);
817 uint8_t endpoint, uint8_t xfer_index)
821 xfer_index |= (endpoint & LIBUSB20_ENDPOINT_ADDRESS_MASK) * 4;
823 if (endpoint & LIBUSB20_ENDPOINT_DIR_MASK) {
824 /* this is an IN endpoint */
831 libusb_clear_halt(struct libusb20_device *pdev, uint8_t endpoint) argument
816 libusb10_get_transfer(struct libusb20_device *pdev, uint8_t endpoint, uint8_t xfer_index) argument
1365 libusb10_submit_transfer_sub(struct libusb20_device *pdev, uint8_t endpoint) argument
1489 uint8_t endpoint; local
1552 uint8_t endpoint; local
[all...]
H A Dlibusb.h361 struct libusb_endpoint_descriptor *endpoint; member in struct:libusb_interface_descriptor
462 uint8_t endpoint; member in struct:libusb_transfer
496 int libusb_clear_halt(libusb_device_handle *devh, uint8_t endpoint);
497 int libusb_get_max_packet_size(libusb_device * dev, uint8_t endpoint);
498 int libusb_get_max_iso_packet_size(libusb_device * dev, uint8_t endpoint);
527 int libusb_get_ss_endpoint_companion_descriptor(struct libusb_context *ctx, const struct libusb_endpoint_descriptor *endpoint, struct libusb_ss_endpoint_companion_descriptor **ep_comp);
557 void libusb_fill_bulk_transfer(struct libusb_transfer *transfer, libusb_device_handle *devh, uint8_t endpoint, uint8_t *buf, int length, libusb_transfer_cb_fn callback, void *user_data, uint32_t timeout);
558 void libusb_fill_interrupt_transfer(struct libusb_transfer *transfer, libusb_device_handle *devh, uint8_t endpoint, uint8_t *buf, int length, libusb_transfer_cb_fn callback, void *user_data, uint32_t timeout);
559 void libusb_fill_iso_transfer(struct libusb_transfer *transfer, libusb_device_handle *devh, uint8_t endpoint, uint8_t *buf, int length, int npacket, libusb_transfer_cb_fn callback, void *user_data, uint32_t timeout);
584 int libusb_bulk_transfer(libusb_device_handle * devh, uint8_t endpoint, uint8_
[all...]
/freebsd-current/sys/dev/usb/
H A Dusb_transfer.c81 /* This transfer is used for generic control endpoint transfers */
85 .endpoint = 0x00, /* Control endpoint */
97 .endpoint = 0x00, /* Control pipe */
108 /* This transfer is used for generic control endpoint transfers */
112 .endpoint = 0x00, /* Control endpoint */
123 .endpoint = 0x00, /* Control pipe */
376 * devices having multiple alternate settings. The SuperSpeed endpoint
484 edesc = xfer->endpoint
[all...]
H A Dusb_debug.c170 * This function dumps the USB transfer that are queued up on an USB endpoint.
178 printf("usb_dump_queue: endpoint=%p xfer: ", ep);
189 * This function dumps information about an USB endpoint.
195 printf("usb_dump_endpoint: endpoint=%p", ep);
207 printf("usb_dump_endpoint: endpoint=NULL\n");
224 if (xfer->endpoint == NULL) {
225 printf("xfer %p: endpoint=NULL\n",
231 "endpoint=%p ep=0x%02x attr=0x%02x\n",
235 udev->address, xfer->endpoint,
236 xfer->endpoint
[all...]
/freebsd-current/include/rpcsvc/
H A Dnis_object.x145 struct endpoint {
158 endpoint ep<>; /* Universal addr(s) for server */
/freebsd-current/lib/libc/rpc/
H A Dauth_time.c110 free_eps(endpoint eps[], int num)
140 endpoint eps[], int maxep)
147 endpoint *ep;
239 endpoint *ep, /* useful endpoints */
240 *useep = NULL; /* endpoint of xp */
251 endpoint teps[32];
427 msg("failed to connect to tcp endpoint.");
/freebsd-current/lib/libomp/
H A Domp-tools.h790 ompt_scope_endpoint_t endpoint,
799 ompt_scope_endpoint_t endpoint; member in struct:ompt_record_work_t
872 ompt_scope_endpoint_t endpoint,
881 ompt_scope_endpoint_t endpoint; member in struct:ompt_record_implicit_task_t
890 ompt_scope_endpoint_t endpoint,
899 ompt_scope_endpoint_t endpoint; member in struct:ompt_record_masked_t
907 ompt_scope_endpoint_t endpoint,
915 ompt_scope_endpoint_t endpoint; member in struct:ompt_record_sync_region_t
950 ompt_scope_endpoint_t endpoint,
956 ompt_scope_endpoint_t endpoint; member in struct:ompt_record_nest_lock_t
1069 ompt_scope_endpoint_t endpoint; member in struct:ompt_record_target_t
[all...]
/freebsd-current/tests/sys/net/
H A Dif_wg.sh75 endpoint ${endpoint2}:12345 allowed-ips ${tunnel2}/32
81 endpoint ${endpoint1}:12345 allowed-ips ${tunnel1}/32
142 endpoint ${endpoint2}:12345 allowed-ips ${tunnel2}/32,${tunnel4}/32
148 endpoint ${endpoint1}:12345 allowed-ips ${tunnel1}/32,${tunnel3}/32
318 endpoint 127.0.0.1:12346 allowed-ips ${tunnel2}/32
324 endpoint 127.0.0.1:12345 allowed-ips ${tunnel1}/32

Completed in 479 milliseconds

123456