Symbol: endpoint
sbin/ifconfig/brconfig.c
1033
bridge_addendpoint(const char *endpoint, const char *addr)
sbin/ifconfig/brconfig.c
1041
ecode = getaddrinfo(endpoint, NULL, NULL, &res);
sbin/ifconfig/brconfig.c
1043
errx(1, "%s endpoint %s: %s", ifname, endpoint,
sbin/ifconfig/brconfig.c
1052
ifname, endpoint, addr);
sbin/ifconfig/brconfig.c
1065
err(1, "%s endpoint %s %s", ifname, endpoint, addr);
sys/arch/arm64/dev/rtkit.c
145
rtkit_send(struct rtkit_state *state, uint32_t endpoint,
sys/arch/arm64/dev/rtkit.c
151
msg.data1 = endpoint;
sys/arch/arm64/dev/rtkit.c
219
rtkit_start(struct rtkit_state *state, uint32_t endpoint)
sys/arch/arm64/dev/rtkit.c
223
reply = ((uint64_t)endpoint << RTKIT_MGMT_STARTEP_EP_SHIFT);
sys/arch/arm64/dev/rtkit.c
233
uint32_t endpoint;
sys/arch/arm64/dev/rtkit.c
279
for (endpoint = 1; endpoint < 32; endpoint++) {
sys/arch/arm64/dev/rtkit.c
280
if ((state->epmap & (1ULL << endpoint)) == 0)
sys/arch/arm64/dev/rtkit.c
283
switch (endpoint) {
sys/arch/arm64/dev/rtkit.c
289
error = rtkit_start(state, endpoint);
sys/arch/arm64/dev/rtkit.c
297
__func__, endpoint);
sys/arch/arm64/dev/rtkit.c
762
uint32_t endpoint;
sys/arch/arm64/dev/rtkit.c
774
endpoint = msg.data1;
sys/arch/arm64/dev/rtkit.c
775
switch (endpoint) {
sys/arch/arm64/dev/rtkit.c
802
if (endpoint >= 32 && endpoint < 64 &&
sys/arch/arm64/dev/rtkit.c
803
state->callback[endpoint - 32]) {
sys/arch/arm64/dev/rtkit.c
804
callback = state->callback[endpoint - 32];
sys/arch/arm64/dev/rtkit.c
805
arg = state->arg[endpoint - 32];
sys/arch/arm64/dev/rtkit.c
980
rtkit_start_endpoint(struct rtkit_state *state, uint32_t endpoint,
sys/arch/arm64/dev/rtkit.c
983
if (endpoint < 32 || endpoint >= 64)
sys/arch/arm64/dev/rtkit.c
986
if ((state->epmap & (1ULL << endpoint)) == 0)
sys/arch/arm64/dev/rtkit.c
989
state->callback[endpoint - 32] = callback;
sys/arch/arm64/dev/rtkit.c
990
state->arg[endpoint - 32] = arg;
sys/arch/arm64/dev/rtkit.c
991
return rtkit_start(state, endpoint);
sys/arch/arm64/dev/rtkit.c
995
rtkit_send_endpoint(struct rtkit_state *state, uint32_t endpoint,
sys/arch/arm64/dev/rtkit.c
998
return rtkit_send(state, endpoint, 0, data);
sys/dev/fdt/graphaudio.c
120
struct endpoint *ep, *rep;
sys/dev/fdt/rkanxdp.c
184
rkanxdp_ep_activate(void *cookie, struct endpoint *ep, void *arg)
sys/dev/fdt/rkanxdp.c
188
struct endpoint *rep;
sys/dev/fdt/rkanxdp.c
225
rkanxdp_ep_get_cookie(void *cookie, struct endpoint *ep)
sys/dev/fdt/rkanxdp.c
78
int rkanxdp_ep_activate(void *, struct endpoint *, void *);
sys/dev/fdt/rkanxdp.c
79
void *rkanxdp_ep_get_cookie(void *, struct endpoint *);
sys/dev/fdt/rkdwhdmi.c
223
rkdwhdmi_ep_activate(void *cookie, struct endpoint *ep, void *arg)
sys/dev/fdt/rkdwhdmi.c
227
struct endpoint *rep;
sys/dev/fdt/rkdwhdmi.c
254
rkdwhdmi_ep_get_cookie(void *cookie, struct endpoint *ep)
sys/dev/fdt/rkdwhdmi.c
95
int rkdwhdmi_ep_activate(void *, struct endpoint *, void *);
sys/dev/fdt/rkdwhdmi.c
96
void *rkdwhdmi_ep_get_cookie(void *, struct endpoint *);
sys/dev/fdt/rkvop.c
171
int rkvop_ep_activate(void *, struct endpoint *, void *);
sys/dev/fdt/rkvop.c
172
void *rkvop_ep_get_cookie(void *, struct endpoint *);
sys/dev/fdt/rkvop.c
519
rkvop_ep_activate(void *cookie, struct endpoint *ep, void *arg)
sys/dev/fdt/rkvop.c
551
rkvop_ep_get_cookie(void *cookie, struct endpoint *ep)
sys/dev/fdt/simplepanel.c
124
simplepanel_ep_get_cookie(void *cookie, struct endpoint *ep)
sys/dev/fdt/simplepanel.c
65
void *simplepanel_ep_get_cookie(void *, struct endpoint *);
sys/dev/fdt/tipd.c
160
struct endpoint *ep, *rep;
sys/dev/fdt/tipd.c
177
struct endpoint *ep, *rep;
sys/dev/fdt/xhci_fdt.c
292
xhci_snps_ep_get_cookie(void *cookie, struct endpoint *ep)
sys/dev/ic/qwx.c
14060
struct qwx_htc_ep *ep = &htc->endpoint[i];
sys/dev/ic/qwx.c
14125
ep = &htc->endpoint[i];
sys/dev/ic/qwx.c
14266
struct qwx_htc_ep *ep = &htc->endpoint[eid];
sys/dev/ic/qwx.c
14491
ep = &htc->endpoint[assigned_eid];
sys/dev/ic/qwx.c
18423
struct qwx_htc_ep *ep = &htc->endpoint[wmi->eid];
sys/dev/ic/qwx.c
21801
ep = &htc->endpoint[report->eid];
sys/dev/ic/qwx.c
21921
ep = &htc->endpoint[eid];
sys/dev/ic/qwxvar.h
1358
struct qwx_htc_ep endpoint[ATH11K_HTC_EP_COUNT];
sys/dev/ic/qwz.c
11733
struct qwz_htc_ep *ep = &htc->endpoint[i];
sys/dev/ic/qwz.c
11797
ep = &htc->endpoint[i];
sys/dev/ic/qwz.c
11940
struct qwz_htc_ep *ep = &htc->endpoint[eid];
sys/dev/ic/qwz.c
12158
ep = &htc->endpoint[assigned_eid];
sys/dev/ic/qwz.c
15750
struct qwz_htc_ep *ep = &htc->endpoint[wmi->eid];
sys/dev/ic/qwz.c
19073
ep = &htc->endpoint[report->eid];
sys/dev/ic/qwz.c
19190
ep = &htc->endpoint[eid];
sys/dev/ic/qwzvar.h
1517
struct qwz_htc_ep endpoint[ATH12K_HTC_EP_COUNT];
sys/dev/ofw/ofw_misc.c
778
LIST_HEAD(, endpoint) endpoints =
sys/dev/ofw/ofw_misc.c
784
struct endpoint *ep;
sys/dev/ofw/ofw_misc.c
840
struct endpoint *ep;
sys/dev/ofw/ofw_misc.c
853
struct endpoint *
sys/dev/ofw/ofw_misc.c
856
struct endpoint *ep;
sys/dev/ofw/ofw_misc.c
869
struct endpoint *
sys/dev/ofw/ofw_misc.c
873
struct endpoint *ep;
sys/dev/ofw/ofw_misc.c
888
struct endpoint *
sys/dev/ofw/ofw_misc.c
889
endpoint_remote(struct endpoint *ep)
sys/dev/ofw/ofw_misc.c
891
struct endpoint *rep;
sys/dev/ofw/ofw_misc.c
907
endpoint_activate(struct endpoint *ep, void *arg)
sys/dev/ofw/ofw_misc.c
914
endpoint_get_cookie(struct endpoint *ep)
sys/dev/ofw/ofw_misc.c
924
struct endpoint *ep, *rep;
sys/dev/ofw/ofw_misc.c
964
dai_ep_get_cookie(void *cookie, struct endpoint *ep)
sys/dev/ofw/ofw_misc.h
159
struct endpoint;
sys/dev/ofw/ofw_misc.h
165
int (*dp_ep_activate)(void *, struct endpoint *, void *);
sys/dev/ofw/ofw_misc.h
166
void *(*dp_ep_get_cookie)(void *, struct endpoint *);
sys/dev/ofw/ofw_misc.h
177
LIST_HEAD(, endpoint) dp_endpoints;
sys/dev/ofw/ofw_misc.h
202
LIST_ENTRY(endpoint) ep_list;
sys/dev/ofw/ofw_misc.h
203
LIST_ENTRY(endpoint) ep_plist;
sys/dev/ofw/ofw_misc.h
209
struct endpoint *endpoint_byreg(struct device_ports *, uint32_t, uint32_t);
sys/dev/ofw/ofw_misc.h
210
struct endpoint *endpoint_remote(struct endpoint *);
sys/dev/ofw/ofw_misc.h
211
int endpoint_activate(struct endpoint *, void *);
sys/dev/ofw/ofw_misc.h
212
void *endpoint_get_cookie(struct endpoint *);
sys/dev/pci/drm/apple/afk.c
141
ep->endpoint, ep->bfr_tag, tag);
sys/dev/pci/drm/apple/afk.c
147
ep->endpoint);
sys/dev/pci/drm/apple/afk.c
154
ep->endpoint, base, ep->bfr_size);
sys/dev/pci/drm/apple/afk.c
162
ep->endpoint, end, ep->bfr_size);
sys/dev/pci/drm/apple/afk.c
171
ep->endpoint, bufsz, sizeof(*bfr->hdr));
sys/dev/pci/drm/apple/afk.c
230
ep->endpoint, payload_size);
sys/dev/pci/drm/apple/afk.c
236
ep->endpoint);
sys/dev/pci/drm/apple/afk.c
253
ep->endpoint, name);
sys/dev/pci/drm/apple/afk.c
260
ep->endpoint, ret);
sys/dev/pci/drm/apple/afk.c
272
ep->endpoint, service_name, channel);
sys/dev/pci/drm/apple/afk.c
285
ep->endpoint, service_name, channel);
sys/dev/pci/drm/apple/afk.c
300
ep->endpoint, channel);
sys/dev/pci/drm/apple/afk.c
328
ep->endpoint, channel);
sys/dev/pci/drm/apple/afk.c
335
ep->endpoint, channel, payload_size);
sys/dev/pci/drm/apple/afk.c
342
ep->endpoint, channel, idx);
sys/dev/pci/drm/apple/afk.c
350
ep->endpoint, channel);
sys/dev/pci/drm/apple/afk.c
358
ep->endpoint, channel, tag, service->cmds[idx].tag);
sys/dev/pci/drm/apple/afk.c
408
ep->endpoint, channel);
sys/dev/pci/drm/apple/afk.c
457
ep->endpoint, channel, type, eshdr->category);
sys/dev/pci/drm/apple/afk.c
475
ep->endpoint, data_size);
sys/dev/pci/drm/apple/afk.c
488
ep->endpoint, type, channel);
sys/dev/pci/drm/apple/afk.c
494
ep->endpoint, eshdr->category, channel);
sys/dev/pci/drm/apple/afk.c
50
dcp_send_message(ep->dcp, ep->endpoint, message);
sys/dev/pci/drm/apple/afk.c
500
ep->endpoint, channel);
sys/dev/pci/drm/apple/afk.c
506
ep->endpoint, subtype, channel);
sys/dev/pci/drm/apple/afk.c
515
ep->endpoint, channel);
sys/dev/pci/drm/apple/afk.c
53
struct apple_dcp_afkep *afk_init(struct apple_dcp *dcp, u32 endpoint,
sys/dev/pci/drm/apple/afk.c
533
"(type %x subtype %x)\n", ep->endpoint, channel, type, subtype);
sys/dev/pci/drm/apple/afk.c
546
ep->endpoint);
sys/dev/pci/drm/apple/afk.c
560
ep->endpoint, rptr, ep->rxbfr.bufsz - sizeof(*hdr));
sys/dev/pci/drm/apple/afk.c
573
ep->endpoint, magic);
sys/dev/pci/drm/apple/afk.c
592
ep->endpoint, magic);
sys/dev/pci/drm/apple/afk.c
602
ep->endpoint, rptr + size + sizeof(*hdr), ep->rxbfr.bufsz);
sys/dev/pci/drm/apple/afk.c
65
afkep->endpoint = endpoint;
sys/dev/pci/drm/apple/afk.c
67
WQ_MEM_RECLAIM, endpoint);
sys/dev/pci/drm/apple/afk.c
91
apple_rtkit_start_ep(ep->dcp->rtk, ep->endpoint);
sys/dev/pci/drm/apple/afk.h
157
u32 endpoint;
sys/dev/pci/drm/apple/afk.h
179
struct apple_dcp_afkep *afk_init(struct apple_dcp *dcp, u32 endpoint,
sys/dev/pci/drm/apple/dcp.c
113
static void dcp_recv_msg(void *cookie, u8 endpoint, u64 message)
sys/dev/pci/drm/apple/dcp.c
117
trace_dcp_recv_msg(dcp, endpoint, message);
sys/dev/pci/drm/apple/dcp.c
119
switch (endpoint) {
sys/dev/pci/drm/apple/dcp.c
132
WARN(endpoint, "unknown DCP endpoint %hhu\n", endpoint);
sys/dev/pci/drm/apple/dcp.c
206
void dcp_send_message(struct apple_dcp *dcp, u8 endpoint, u64 message)
sys/dev/pci/drm/apple/dcp.c
208
trace_dcp_send_msg(dcp, endpoint, message);
sys/dev/pci/drm/apple/dcp.c
209
apple_rtkit_send_message(dcp->rtk, endpoint, message, NULL,
sys/dev/pci/drm/apple/dcp.h
66
void dcp_send_message(struct apple_dcp *dcp, u8 endpoint, u64 message);
sys/dev/pci/drm/apple/trace.h
100
__field(u8, endpoint)
sys/dev/pci/drm/apple/trace.h
104
__entry->endpoint = endpoint;
sys/dev/pci/drm/apple/trace.h
108
__get_str(devname), __entry->endpoint,
sys/dev/pci/drm/apple/trace.h
109
show_dcp_endpoint(__entry->endpoint), __entry->message));
sys/dev/pci/drm/apple/trace.h
116
__field(u8, endpoint) __field(u16, size)
sys/dev/pci/drm/apple/trace.h
120
__entry->endpoint = ep->endpoint; __entry->size = size;
sys/dev/pci/drm/apple/trace.h
125
__get_str(devname), __entry->endpoint,
sys/dev/pci/drm/apple/trace.h
126
show_dcp_endpoint(__entry->endpoint), __entry->size,
sys/dev/pci/drm/apple/trace.h
134
__field(u8, endpoint) __field(u32, rptr)
sys/dev/pci/drm/apple/trace.h
138
__entry->endpoint = ep->endpoint;
sys/dev/pci/drm/apple/trace.h
142
__get_str(devname), __entry->endpoint,
sys/dev/pci/drm/apple/trace.h
143
show_dcp_endpoint(__entry->endpoint), __entry->rptr,
sys/dev/pci/drm/apple/trace.h
165
__field(u8, endpoint) __field(u32, rptr)
sys/dev/pci/drm/apple/trace.h
170
__entry->endpoint = ep->endpoint; __entry->rptr = rptr;
sys/dev/pci/drm/apple/trace.h
174
__get_str(devname), __entry->endpoint,
sys/dev/pci/drm/apple/trace.h
175
show_dcp_endpoint(__entry->endpoint), __entry->rptr,
sys/dev/pci/drm/apple/trace.h
186
u8, endpoint) __field(u32, channel) __field(u32, type)
sys/dev/pci/drm/apple/trace.h
192
__entry->endpoint = ep->endpoint;
sys/dev/pci/drm/apple/trace.h
201
__get_str(devname), __entry->endpoint,
sys/dev/pci/drm/apple/trace.h
202
show_dcp_endpoint(__entry->endpoint), __entry->channel,
sys/dev/pci/drm/apple/trace.h
80
TP_PROTO(struct apple_dcp *dcp, u8 endpoint, u64 message),
sys/dev/pci/drm/apple/trace.h
81
TP_ARGS(dcp, endpoint, message),
sys/dev/pci/drm/apple/trace.h
84
__field(u8, endpoint)
sys/dev/pci/drm/apple/trace.h
88
__entry->endpoint = endpoint;
sys/dev/pci/drm/apple/trace.h
92
__get_str(devname), __entry->endpoint,
sys/dev/pci/drm/apple/trace.h
93
show_dcp_endpoint(__entry->endpoint), __entry->message));
sys/dev/pci/drm/apple/trace.h
96
TP_PROTO(struct apple_dcp *dcp, u8 endpoint, u64 message),
sys/dev/pci/drm/apple/trace.h
97
TP_ARGS(dcp, endpoint, message),
sys/dev/pci/drm/display/drm_hdmi_audio_helper.c
63
struct device_node *endpoint,
sys/dev/pci/drm/display/drm_hdmi_audio_helper.c
73
ret = of_graph_parse_endpoint(endpoint, &of_ep);
sys/dev/pci/drm/include/drm/drm_bridge.h
1405
u32 port, u32 endpoint);
sys/dev/pci/drm/include/drm/drm_bridge.h
1407
u32 port, u32 endpoint);
sys/dev/pci/drm/include/drm/drm_bridge.h
1412
u32 endpoint)
sys/dev/pci/drm/include/drm/drm_bridge.h
1420
u32 endpoint)
sys/dev/usb/dwc2/dwc2.c
1027
usb_endpoint_descriptor_t *ed = xfer->pipe->endpoint->edesc;
sys/dev/usb/dwc2/dwc2.c
363
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/dwc2/dwc2.c
537
DPRINTF("toggle %d -> 0", pipe->endpoint->savedtoggle);
sys/dev/usb/dwc2/dwc2_hcd.c
4233
ed = xfer->pipe->endpoint->edesc;
sys/dev/usb/ehci.c
1359
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/ehci.c
1467
htole32(EHCI_QTD_SET_TOGGLE(pipe->endpoint->savedtoggle));
sys/dev/usb/ehci.c
2361
iscontrol = UE_GET_XFERTYPE(xfer->pipe->endpoint->edesc->bmAttributes) ==
sys/dev/usb/ehci.c
2369
mps = UGETW(xfer->pipe->endpoint->edesc->wMaxPacketSize);
sys/dev/usb/ehci.c
2591
pipe->endpoint->savedtoggle =
sys/dev/usb/ehci.c
3261
usb_endpoint_descriptor_t *ed = xfer->pipe->endpoint->edesc;
sys/dev/usb/ehci.c
3377
usb_endpoint_descriptor_t *ed = xfer->pipe->endpoint->edesc;
sys/dev/usb/ehci.c
3505
usb_endpoint_descriptor_t *ed = xfer->pipe->endpoint->edesc;
sys/dev/usb/ehci.c
678
int attr = xfer->pipe->endpoint->edesc->bmAttributes;
sys/dev/usb/ehci.c
792
switch (xfer->pipe->endpoint->edesc->bInterval) {
sys/dev/usb/ohci.c
1369
uedir = UE_GET_DIR(xfer->pipe->endpoint->edesc->
sys/dev/usb/ohci.c
1568
xfer->pipe->endpoint->edesc->bEndpointAddress));
sys/dev/usb/ohci.c
1890
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/ohci.c
1951
(pipe->endpoint->savedtoggle ? OHCI_TOGGLECARRY : 0));
sys/dev/usb/ohci.c
2070
pipe->endpoint->savedtoggle =
sys/dev/usb/ohci.c
2746
endpt = xfer->pipe->endpoint->edesc->bEndpointAddress;
sys/dev/usb/ohci.c
2879
endpt = xfer->pipe->endpoint->edesc->bEndpointAddress;
sys/dev/usb/ohci.c
508
mps = UGETW(xfer->pipe->endpoint->edesc->wMaxPacketSize);
sys/dev/usb/uhci.c
1296
xfer->pipe->endpoint->edesc->bEndpointAddress,
sys/dev/usb/uhci.c
1531
int endpt = xfer->pipe->endpoint->edesc->bEndpointAddress;
sys/dev/usb/uhci.c
1541
mps = UGETW(xfer->pipe->endpoint->edesc->wMaxPacketSize);
sys/dev/usb/uhci.c
1781
pipe->endpoint->savedtoggle = upipe->nexttoggle;
sys/dev/usb/uhci.c
1971
int endpt = xfer->pipe->endpoint->edesc->bEndpointAddress;
sys/dev/usb/uhci.c
2331
int endpt = pipe->endpoint->edesc->bEndpointAddress;
sys/dev/usb/uhci.c
2629
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/uhci.c
2636
upipe->nexttoggle = pipe->endpoint->savedtoggle;
sys/dev/usb/uhci.c
752
if (pipe->endpoint == NULL) {
sys/dev/usb/uhci.c
762
ed = pipe->endpoint->edesc;
sys/dev/usb/umidi.c
1037
jack->endpoint));
sys/dev/usb/umidi.c
1129
struct umidi_endpoint *ep = j->endpoint;
sys/dev/usb/umidi.c
1164
struct umidi_endpoint *ep = j->endpoint;
sys/dev/usb/umidi.c
747
jack->endpoint = ep;
sys/dev/usb/umidi.c
759
jack->endpoint = ep;
sys/dev/usb/umidi.c
866
jack->endpoint->num_open++;
sys/dev/usb/umidi.c
880
jack->endpoint->num_open++;
sys/dev/usb/umidi.c
890
jack->endpoint->num_open--;
sys/dev/usb/umidivar.h
63
struct umidi_endpoint *endpoint;
sys/dev/usb/urng.c
144
sc->sc_chip.endpoint,
sys/dev/usb/urng.c
165
if (ep_addr == sc->sc_chip.endpoint) {
sys/dev/usb/urng.c
58
int endpoint;
sys/dev/usb/usb.c
949
usb_endpoint_descriptor_t *ed = xfer->pipe->endpoint->edesc;
sys/dev/usb/usb_subr.c
803
p->endpoint = ep;
sys/dev/usb/usbdi.c
166
usbd_dump_endpoint(pipe->endpoint);
sys/dev/usb/usbdi.c
269
pipe->endpoint->refcnt--;
sys/dev/usb/usbdi.c
598
USETW(req.wIndex, pipe->endpoint->edesc->bEndpointAddress);
sys/dev/usb/usbdi.c
618
USETW(req.wIndex, pipe->endpoint->edesc->bEndpointAddress);
sys/dev/usb/usbdi.c
786
[UE_GET_XFERTYPE(pipe->endpoint->edesc->bmAttributes)];
sys/dev/usb/usbdivar.h
189
struct usbd_endpoint *endpoint;
sys/dev/usb/usbdivar.h
286
return (xfer->pipe->endpoint->edesc->bEndpointAddress & UE_DIR_IN);
sys/dev/usb/uvideo.c
1603
vs->endpoint = ed->bEndpointAddress;
sys/dev/usb/uvideo.c
1684
sc->sc_vs_cur->endpoint = ed->bEndpointAddress;
sys/dev/usb/uvideo.c
2303
sc->sc_vs_cur->endpoint);
sys/dev/usb/uvideo.c
2312
DEVNAME(sc), sc->sc_vs_cur->endpoint);
sys/dev/usb/uvideo.c
2315
sc->sc_vs_cur->endpoint,
sys/dev/usb/uvideo.c
2372
sc->sc_vs_cur->endpoint, UF_ENDPOINT_HALT))
sys/dev/usb/uvideo.h
638
int endpoint;
sys/dev/usb/xhci.c
1266
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/xhci.c
1357
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/xhci.c
1358
usb_endpoint_ss_comp_descriptor_t *esscd = pipe->endpoint->esscd;
sys/dev/usb/xhci.c
1409
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/xhci.c
1446
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/xhci.c
1447
usb_endpoint_ss_comp_descriptor_t *esscd = pipe->endpoint->esscd;
sys/dev/usb/xhci.c
1489
usb_endpoint_descriptor_t *ed = pipe->endpoint->edesc;
sys/dev/usb/xhci.c
1618
pipe->endpoint->edesc->bEndpointAddress);
sys/dev/usb/xhci.c
2865
uint32_t npkt, mps = UGETW(xfer->pipe->endpoint->edesc->wMaxPacketSize);
sys/dev/usb/xhci.c
2885
uint32_t mps = UGETW(xfer->pipe->endpoint->edesc->wMaxPacketSize);
sys/dev/usb/xhci.c
3044
uint32_t mps = UGETW(xfer->pipe->endpoint->edesc->wMaxPacketSize);
sys/dev/usb/xhci.c
889
xfertype = UE_GET_XFERTYPE(xfer->pipe->endpoint->edesc->bmAttributes);
sys/net/if_bpe.c
264
struct ether_addr *endpoint;
sys/net/if_bpe.c
267
endpoint = etherbridge_resolve_ea(&sc->sc_eb,
sys/net/if_bpe.c
269
if (endpoint == NULL) {
sys/net/if_bpe.c
271
endpoint = &sc->sc_group;
sys/net/if_bpe.c
273
memcpy(beh->ether_dhost, endpoint,
sys/net/if_bpe.c
684
const struct ether_addr *endpoint;
sys/net/if_bpe.c
709
endpoint = (struct ether_addr *)LLADDR(sdl);
sys/net/if_bpe.c
712
return (etherbridge_add_addr(&sc->sc_eb, (void *)endpoint,
sys/net/if_bpe.c
896
struct ether_addr *endpoint;
sys/net/if_bpe.c
898
endpoint = pool_get(&bpe_endpoint_pool, PR_NOWAIT);
sys/net/if_bpe.c
899
if (endpoint == NULL)
sys/net/if_bpe.c
902
memcpy(endpoint, ea, sizeof(*endpoint));
sys/net/if_bpe.c
904
return (endpoint);
sys/net/if_bpe.c
910
struct ether_addr *endpoint = port;
sys/net/if_bpe.c
912
pool_put(&bpe_endpoint_pool, endpoint);
sys/net/if_bpe.c
926
struct ether_addr *endpoint = port;
sys/net/if_bpe.c
935
sdl->sdl_alen = sizeof(*endpoint);
sys/net/if_bpe.c
936
CTASSERT(sizeof(sdl->sdl_data) >= sizeof(*endpoint));
sys/net/if_bpe.c
937
memcpy(sdl->sdl_data, endpoint, sizeof(*endpoint));
sys/net/if_gre.c
3659
union gre_addr endpoint;
sys/net/if_gre.c
3677
memset(&endpoint, 0, sizeof(endpoint));
sys/net/if_gre.c
3688
endpoint.in4 = sin->sin_addr;
sys/net/if_gre.c
3703
error = in6_embedscope(&endpoint.in6, sin6, NULL, NULL);
sys/net/if_gre.c
3713
return (etherbridge_add_addr(&sc->sc_eb, &endpoint,
sys/net/if_gre.c
3752
const union gre_addr *endpoint;
sys/net/if_gre.c
3755
endpoint = etherbridge_resolve_ea(&sc->sc_eb,
sys/net/if_gre.c
3757
if (endpoint == NULL) {
sys/net/if_gre.c
3759
endpoint = &tunnel->t_dst;
sys/net/if_gre.c
3761
gateway = *endpoint;
sys/net/if_gre.c
4378
union gre_addr *endpoint;
sys/net/if_gre.c
4380
endpoint = pool_get(&nvgre_endpoint_pool, PR_NOWAIT);
sys/net/if_gre.c
4381
if (endpoint == NULL)
sys/net/if_gre.c
4384
*endpoint = *ea;
sys/net/if_gre.c
4386
return (endpoint);
sys/net/if_gre.c
4392
union gre_addr *endpoint = port;
sys/net/if_gre.c
4394
pool_put(&nvgre_endpoint_pool, endpoint);
sys/net/if_gre.c
4409
union gre_addr *endpoint = port;
sys/net/if_gre.c
4417
sin->sin_addr = endpoint->in4;
sys/net/if_gre.c
4426
in6_recoverscope(sin6, &endpoint->in6);
sys/net/if_vxlan.c
1655
union vxlan_addr endpoint;
sys/net/if_vxlan.c
1682
memset(&endpoint, 0, sizeof(endpoint));
sys/net/if_vxlan.c
1696
endpoint.in4 = sin->sin_addr;
sys/net/if_vxlan.c
1713
error = in6_embedscope(&endpoint.in6, sin6, NULL, NULL);
sys/net/if_vxlan.c
1723
return (etherbridge_add_addr(&sc->sc_eb, &endpoint,
sys/net/if_vxlan.c
1764
union vxlan_addr *endpoint;
sys/net/if_vxlan.c
1766
endpoint = pool_get(&vxlan_endpoint_pool, PR_NOWAIT);
sys/net/if_vxlan.c
1767
if (endpoint == NULL)
sys/net/if_vxlan.c
1770
*endpoint = *(union vxlan_addr *)port;
sys/net/if_vxlan.c
1772
return (endpoint);
sys/net/if_vxlan.c
1778
union vxlan_addr *endpoint = port;
sys/net/if_vxlan.c
1780
pool_put(&vxlan_endpoint_pool, endpoint);
sys/net/if_vxlan.c
1795
union vxlan_addr *endpoint = port;
sys/net/if_vxlan.c
1803
sin->sin_addr = endpoint->in4;
sys/net/if_vxlan.c
1812
in6_recoverscope(sin6, &endpoint->in6);
sys/net/if_vxlan.c
323
const union vxlan_addr *endpoint;
sys/net/if_vxlan.c
333
endpoint = &sc->sc_dst;
sys/net/if_vxlan.c
338
endpoint = etherbridge_resolve_ea(&sc->sc_eb,
sys/net/if_vxlan.c
340
if (endpoint != NULL) {
sys/net/if_vxlan.c
341
gateway = *endpoint;
sys/net/if_vxlan.c
342
endpoint = &gateway;
sys/net/if_vxlan.c
346
if (endpoint == NULL) {
sys/net/if_vxlan.c
351
endpoint = &sc->sc_dst;
sys/net/if_vxlan.c
404
return ((*ip_encap)(sc, m, endpoint, tos));
sys/net/if_vxlan.c
412
const union vxlan_addr *endpoint, uint8_t tos)
sys/net/if_vxlan.c
429
ip->ip_dst = endpoint->in4;
sys/net/if_vxlan.c
437
const union vxlan_addr *endpoint, uint8_t tos)
sys/net/if_vxlan.c
455
ip6->ip6_dst = endpoint->in6;
sys/net/if_wg.c
1259
struct wg_endpoint endpoint;
sys/net/if_wg.c
1264
wg_peer_get_endpoint(peer, &endpoint);
sys/net/if_wg.c
1265
wg_send_buf(peer->p_sc, &endpoint, buf, len);
sys/net/if_wg.c
1812
struct wg_endpoint endpoint;
sys/net/if_wg.c
1817
wg_peer_get_endpoint(peer, &endpoint);
sys/net/if_wg.c
1827
ret = wg_send(sc, &endpoint, t->t_mbuf);
sys/net/if_wg.c
1839
wg_peer_get_endpoint(peer, &endpoint);
sys/net/if_wg.c
594
wg_peer_get_endpoint(struct wg_peer *peer, struct wg_endpoint *endpoint)
sys/net/if_wg.c
597
memcpy(endpoint, &peer->p_endpoint, sizeof(*endpoint));
usr.bin/vi/vi/vs_refresh.c
781
size_t cols, curcol, curlen, endpoint, len, midpoint;
usr.bin/vi/vi/vs_refresh.c
887
endpoint = cols;
usr.bin/vi/vi/vs_refresh.c
890
--endpoint;
usr.bin/vi/vi/vs_refresh.c
892
endpoint -= (len = strlen(t));
usr.bin/vi/vi/vs_refresh.c
895
if (endpoint > curlen + 2) {
usr.bin/vi/vi/vs_refresh.c
896
(void)gp->scr_move(sp, LASTLINE(sp), endpoint);
usr.sbin/ldomctl/config.c
1219
hvmd_finalize_endpoint(struct md *md, struct ldc_endpoint *endpoint)
usr.sbin/ldomctl/config.c
1229
md_add_prop_val(md, node, "resource_id", endpoint->resource_id);
usr.sbin/ldomctl/config.c
1230
md_add_prop_val(md, node, "target_type", endpoint->target_type);
usr.sbin/ldomctl/config.c
1231
md_add_prop_val(md, node, "channel", endpoint->channel);
usr.sbin/ldomctl/config.c
1232
if (endpoint->target_guest != -1)
usr.sbin/ldomctl/config.c
1234
endpoint->target_guest);
usr.sbin/ldomctl/config.c
1235
md_add_prop_val(md, node, "target_channel", endpoint->target_channel);
usr.sbin/ldomctl/config.c
1236
if (endpoint->tx_ino != -1)
usr.sbin/ldomctl/config.c
1237
md_add_prop_val(md, node, "tx-ino", endpoint->tx_ino);
usr.sbin/ldomctl/config.c
1238
if (endpoint->rx_ino != -1)
usr.sbin/ldomctl/config.c
1239
md_add_prop_val(md, node, "rx-ino", endpoint->rx_ino);
usr.sbin/ldomctl/config.c
1240
if (endpoint->private_svc != -1)
usr.sbin/ldomctl/config.c
1242
endpoint->private_svc);
usr.sbin/ldomctl/config.c
1243
if (endpoint->svc_id != -1)
usr.sbin/ldomctl/config.c
1244
md_add_prop_val(md, node, "svc_id", endpoint->svc_id);
usr.sbin/ldomctl/config.c
1245
endpoint->hv_node = node;
usr.sbin/ldomctl/config.c
1272
struct ldc_endpoint *endpoint;
usr.sbin/ldomctl/config.c
1288
TAILQ_FOREACH(endpoint, &console->guest->endpoint_list, link) {
usr.sbin/ldomctl/config.c
1289
if (endpoint->rx_ino == console->ino) {
usr.sbin/ldomctl/config.c
1290
md_link_node(md, node, endpoint->hv_node);
usr.sbin/ldomctl/config.c
1323
struct ldc_endpoint *endpoint;
usr.sbin/ldomctl/config.c
1362
TAILQ_FOREACH(endpoint, &guest->endpoint_list, link)
usr.sbin/ldomctl/config.c
1363
md_link_node(md, guest->hv_node, endpoint->hv_node);
usr.sbin/ldomctl/config.c
1454
struct ldc_endpoint *endpoint;
usr.sbin/ldomctl/config.c
1462
endpoint = xzalloc(sizeof(*endpoint));
usr.sbin/ldomctl/config.c
1463
endpoint->target_guest = -1;
usr.sbin/ldomctl/config.c
1464
endpoint->tx_ino = -1;
usr.sbin/ldomctl/config.c
1465
endpoint->rx_ino = -1;
usr.sbin/ldomctl/config.c
1466
endpoint->private_svc = -1;
usr.sbin/ldomctl/config.c
1467
endpoint->svc_id = -1;
usr.sbin/ldomctl/config.c
1468
endpoint->resource_id = resource_id;
usr.sbin/ldomctl/config.c
1469
ldc_endpoints[resource_id] = endpoint;
usr.sbin/ldomctl/config.c
1471
TAILQ_INSERT_TAIL(&guest->endpoint_list, endpoint, link);
usr.sbin/ldomctl/config.c
1472
endpoint->guest = guest;
usr.sbin/ldomctl/config.c
1474
return endpoint;
usr.sbin/ldomctl/config.c
2413
guest_delete_endpoint(struct guest *guest, struct ldc_endpoint *endpoint)
usr.sbin/ldomctl/config.c
2427
if (id == endpoint->channel) {
usr.sbin/ldomctl/config.c
2435
TAILQ_REMOVE(&guest->endpoint_list, endpoint, link);
usr.sbin/ldomctl/config.c
2436
ldc_endpoints[endpoint->resource_id] = NULL;
usr.sbin/ldomctl/config.c
2443
peer->target_channel == endpoint->channel &&
usr.sbin/ldomctl/config.c
2444
peer->channel == endpoint->target_channel &&
usr.sbin/ldomctl/config.c
2449
free(endpoint);
usr.sbin/ldomctl/config.c
2457
struct ldc_endpoint *endpoint, *endpoint2;
usr.sbin/ldomctl/config.c
2474
TAILQ_FOREACH_SAFE(endpoint, &guest->endpoint_list, link, endpoint2)
usr.sbin/ldomctl/config.c
2475
guest_delete_endpoint(guest, endpoint);
usr.sbin/ldomctl/config.c
2781
struct ldc_endpoint *endpoint;
usr.sbin/ldomctl/config.c
2840
TAILQ_FOREACH(endpoint, &primary->endpoint_list, link) {
usr.sbin/ldomctl/config.c
2841
if (endpoint->channel >= primary->endpoint_id)
usr.sbin/ldomctl/config.c
2842
primary->endpoint_id = endpoint->channel + 1;
usr.sbin/ldomctl/config.c
751
struct ldc_endpoint *endpoint;
usr.sbin/ldomctl/config.c
771
endpoint = xzalloc(sizeof(*endpoint));
usr.sbin/ldomctl/config.c
772
endpoint->target_guest = -1;
usr.sbin/ldomctl/config.c
773
endpoint->tx_ino = -1;
usr.sbin/ldomctl/config.c
774
endpoint->rx_ino = -1;
usr.sbin/ldomctl/config.c
775
endpoint->private_svc = -1;
usr.sbin/ldomctl/config.c
776
endpoint->svc_id = -1;
usr.sbin/ldomctl/config.c
777
md_get_prop_val(md, node, "target_type", &endpoint->target_type);
usr.sbin/ldomctl/config.c
778
md_get_prop_val(md, node, "target_guest", &endpoint->target_guest);
usr.sbin/ldomctl/config.c
779
md_get_prop_val(md, node, "channel", &endpoint->channel);
usr.sbin/ldomctl/config.c
780
md_get_prop_val(md, node, "target_channel", &endpoint->target_channel);
usr.sbin/ldomctl/config.c
781
md_get_prop_val(md, node, "tx-ino", &endpoint->tx_ino);
usr.sbin/ldomctl/config.c
782
md_get_prop_val(md, node, "rx-ino", &endpoint->rx_ino);
usr.sbin/ldomctl/config.c
783
md_get_prop_val(md, node, "private_svc", &endpoint->private_svc);
usr.sbin/ldomctl/config.c
784
md_get_prop_val(md, node, "svc_id", &endpoint->svc_id);
usr.sbin/ldomctl/config.c
785
endpoint->resource_id = resource_id;
usr.sbin/ldomctl/config.c
786
ldc_endpoints[resource_id] = endpoint;
usr.sbin/ldomctl/config.c
787
endpoint->hv_node = node;
usr.sbin/ldomctl/config.c
797
struct ldc_endpoint *endpoint;
usr.sbin/ldomctl/config.c
877
TAILQ_FOREACH(endpoint, &guest->endpoint_list, link) {
usr.sbin/ldomctl/config.c
878
if (endpoint->channel >= guest->endpoint_id)
usr.sbin/ldomctl/config.c
879
guest->endpoint_id = endpoint->channel + 1;
usr.sbin/unbound/testcode/dohclient.c
164
h2_stream->path = (char*)h2_session->endpoint;
usr.sbin/unbound/testcode/dohclient.c
173
h2_session->endpoint)+strlen("?dns=")+qb64_size+1);
usr.sbin/unbound/testcode/dohclient.c
175
snprintf(h2_stream->path, strlen(h2_session->endpoint)+
usr.sbin/unbound/testcode/dohclient.c
177
h2_session->endpoint, qb64);
usr.sbin/unbound/testcode/dohclient.c
593
h2_session->endpoint = "/dns-query";
usr.sbin/unbound/testcode/dohclient.c
602
h2_session->endpoint = optarg;
usr.sbin/unbound/testcode/dohclient.c
69
const char* endpoint;