HomeSort by: relevance | last modified time | path
    Searched refs:endpoint (Results 1 - 25 of 123) sorted by relevancy

1 2 3 4 5

  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/
sun8i-a33-et-q8-v1.6.dts 53 tcon0_out_lcd: endpoint@0 {
55 remote-endpoint = <&panel_input>;
sun8i-a33-ippo-q8h-v1.2.dts 53 tcon0_out_lcd: endpoint@0 {
55 remote-endpoint = <&panel_input>;
sun8i-a33-q8-tablet.dts 53 tcon0_out_lcd: endpoint@0 {
55 remote-endpoint = <&panel_input>;
sun5i-a13-q8-tablet.dts 58 panel_input: endpoint {
59 remote-endpoint = <&tcon0_out_lcd>;
76 tcon0_out_lcd: endpoint@0 {
78 remote-endpoint = <&panel_input>;
sun8i-a23-ippo-q8h-v1.2.dts 70 tcon0_out_lcd: endpoint {
71 remote-endpoint = <&panel_input>;
sun8i-a23-ippo-q8h-v5.dts 70 tcon0_out_lcd: endpoint {
71 remote-endpoint = <&panel_input>;
sun8i-a23-q8-tablet.dts 70 tcon0_out_lcd: endpoint {
71 remote-endpoint = <&panel_input>;
sun8i-h3-nanopi-m1.dts 58 hdmi_con_in: endpoint {
59 remote-endpoint = <&hdmi_out_con>;
89 hdmi_out_con: endpoint {
90 remote-endpoint = <&hdmi_con_in>;
sun4i-a10-mk802.dts 65 hdmi_con_in: endpoint {
66 remote-endpoint = <&hdmi_out_con>;
93 hdmi_out_con: endpoint {
94 remote-endpoint = <&hdmi_con_in>;
sun8i-h3-orangepi-lite.dts 69 hdmi_con_in: endpoint {
70 remote-endpoint = <&hdmi_out_con>;
118 hdmi_out_con: endpoint {
119 remote-endpoint = <&hdmi_con_in>;
sun5i-a13-olinuxino.dts 85 vga_bridge_in: endpoint {
86 remote-endpoint = <&tcon0_out_vga>;
93 vga_bridge_out: endpoint {
94 remote-endpoint = <&vga_con_in>;
104 vga_con_in: endpoint {
105 remote-endpoint = <&vga_bridge_out>;
224 tcon0_out_vga: endpoint@0 {
226 remote-endpoint = <&vga_bridge_in>;
sun6i-a31-hummingbird.dts 70 hdmi_con_in: endpoint {
71 remote-endpoint = <&hdmi_out_con>;
80 vga_con_in: endpoint {
81 remote-endpoint = <&vga_dac_out>;
97 vga_dac_in: endpoint {
98 remote-endpoint = <&tcon0_out_vga>;
105 vga_dac_out: endpoint {
106 remote-endpoint = <&vga_con_in>;
166 hdmi_out_con: endpoint {
167 remote-endpoint = <&hdmi_con_in>
    [all...]
sun4i-a10-olinuxino-lime.dts 66 hdmi_con_in: endpoint {
67 remote-endpoint = <&hdmi_out_con>;
127 hdmi_out_con: endpoint {
128 remote-endpoint = <&hdmi_con_in>;
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/nxp/imx/
imx6dl-aristainetos2_7.dts 62 panel_in: endpoint {
63 remote-endpoint = <&lvds0_out>;
86 lvds0_in: endpoint {
87 remote-endpoint = <&ipu1_di0_lvds0>;
93 lvds0_out: endpoint {
94 remote-endpoint = <&panel_in>;
imx6dl-aristainetos2_4.dts 66 display0_in: endpoint {
67 remote-endpoint = <&ipu1_di0_disp0>;
73 display_out: endpoint {
74 remote-endpoint = <&panel_in>;
104 panel_in: endpoint {
105 remote-endpoint = <&display_out>;
121 remote-endpoint = <&display0_in>;
imx6q-b450v3.dts 61 panel_in_lvds0: endpoint {
62 remote-endpoint = <&lvds0_out>;
79 lvds0_out: endpoint {
80 remote-endpoint = <&panel_in_lvds0>;
imx6q-b850v3.dts 68 lvds0_out: endpoint {
69 remote-endpoint = <&stdp4028_in>;
157 stdp2690_in: endpoint {
158 remote-endpoint = <&stdp4028_out>;
165 stdp2690_out: endpoint {
185 stdp4028_in: endpoint {
186 remote-endpoint = <&lvds0_out>;
193 stdp4028_out: endpoint {
194 remote-endpoint = <&stdp2690_in>;
  /src/sys/arch/arm/apple/
apple_rtkit.c 101 rtkit_send(struct fdtbus_mbox_channel *mc, uint32_t endpoint,
107 msg.data1 = endpoint;
112 rtkit_start(struct rtkit_state *state, uint32_t endpoint)
117 reply = __SHIFTIN(endpoint, RTKIT_MGMT_STARTEP_EP_MASK);
128 uint32_t endpoint; local
171 for (endpoint = 1; endpoint < 32; endpoint++) {
172 if ((state->epmap & __BIT(endpoint)) == 0)
175 switch (endpoint) {
262 uint32_t endpoint; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/util/
auto_clnt.c 7 /* client endpoint maintenance
45 /* auto_clnt_create() instantiates a client endpoint.
54 /* auto_clnt_name() returns the name of the specified client endpoint.
56 /* auto_clnt_free() destroys of the specified client endpoint.
96 /* is expected to set the stream pathname to the server endpoint name.
145 char *endpoint; /* host:port or pathname */ member in struct:AUTO_CLNT
213 fd = auto_clnt->connect(auto_clnt->endpoint, BLOCKING, auto_clnt->timeout);
215 msg_warn("connect to %s: %m", auto_clnt->endpoint);
218 msg_info("%s: connected to %s", myname, auto_clnt->endpoint);
221 CA_VSTREAM_CTL_PATH(auto_clnt->endpoint),
308 char *endpoint; local
    [all...]
stream_recv_fd.c 86 char *endpoint; local
94 || (endpoint = split_at(transport = argv[1], ':')) == 0
95 || *endpoint == 0 || *transport == 0)
96 msg_fatal("usage: %s transport:endpoint", argv[0]);
99 listen_sock = stream_listen(endpoint, BLOCKING, 0);
104 msg_fatal("listen %s:%s: %m", transport, endpoint);
stream_send_fd.c 86 char *endpoint; local
92 || (endpoint = split_at(transport = argv[1], ':')) == 0
93 || *endpoint == 0 || *transport == 0)
94 msg_fatal("usage: %s transport:endpoint file...", argv[0]);
97 server_sock = stream_connect(endpoint, BLOCKING, 0);
102 msg_fatal("connect %s:%s: %m", transport, endpoint);
unix_send_fd.c 168 char *endpoint; local
176 || (endpoint = split_at(transport = argv[1], ':')) == 0
177 || *endpoint == 0 || *transport == 0)
178 msg_fatal("usage: %s transport:endpoint file...", argv[0]);
181 server_sock = unix_connect(endpoint, BLOCKING, 0);
186 msg_fatal("connect %s:%s: %m", transport, endpoint);
  /src/external/bsd/unbound/dist/testdata/doh_downstream_endpoint.tdir/
doh_downstream_endpoint.conf 14 http-endpoint: "/abc"
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/st/
stm32f469-disco.dts 143 dsi_in: endpoint {
144 remote-endpoint = <&ltdc_out_dsi>;
150 dsi_out: endpoint {
151 remote-endpoint = <&dsi_panel_in>;
164 dsi_panel_in: endpoint {
165 remote-endpoint = <&dsi_out>;
175 ltdc_out_dsi: endpoint {
176 remote-endpoint = <&dsi_in>;
stm32f769-disco.dts 141 dsi_in: endpoint {
142 remote-endpoint = <&ltdc_out_dsi>;
148 dsi_out: endpoint {
149 remote-endpoint = <&dsi_panel_in>;
162 dsi_panel_in: endpoint {
163 remote-endpoint = <&dsi_out>;
181 ltdc_out_dsi: endpoint {
182 remote-endpoint = <&dsi_in>;

Completed in 43 milliseconds

1 2 3 4 5