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

12

/netbsd-current/sys/arch/arm/apple/
H A Dapple_rtkit.c101 rtkit_send(struct fdtbus_mbox_channel *mc, uint32_t endpoint, argument
107 msg.data1 = endpoint;
112 rtkit_start(struct rtkit_state *state, uint32_t endpoint) argument
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
348 rtkit_start_endpoint(struct rtkit_state *state, uint32_t endpoint, void (*callback)(void *, uint64_t), void *arg) argument
363 rtkit_send_endpoint(struct rtkit_state *state, uint32_t endpoint, uint64_t data) argument
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dauto_clnt.c7 /* 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...]
H A Dstream_recv_fd.c86 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);
H A Dstream_send_fd.c86 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);
H A Dunix_send_fd.c168 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);
H A Dunix_recv_fd.c143 char *endpoint; local
151 || (endpoint = split_at(transport = argv[1], ':')) == 0
152 || *endpoint == 0 || *transport == 0)
153 msg_fatal("usage: %s transport:endpoint [workaround]", argv[0]);
156 listen_sock = unix_listen(endpoint, 10, BLOCKING);
161 msg_fatal("listen %s:%s: %m", transport, endpoint);
/netbsd-current/external/bsd/unbound/dist/testdata/doh_downstream_endpoint.tdir/
H A Ddoh_downstream_endpoint.conf14 http-endpoint: "/abc"
/netbsd-current/external/ibm-public/postfix/dist/src/master/
H A Dmaster.h31 char *ext_name; /* service endpoint name (master.cf) */
32 char *name; /* service endpoint name (canonical) */
43 #define MASTER_INET_ADDRLIST(s) ((s)->endpoint.inet_ep.addr)
44 #define MASTER_INET_PORT(s) ((s)->endpoint.inet_ep.port)
45 } endpoint; member in struct:MASTER_SERV
67 #define MASTER_FLAG_INETHOST (1<<3) /* endpoint name specifies host */
/netbsd-current/external/mpl/bind/dist/lib/dns/
H A Dtransport.c61 char *endpoint; member in struct:dns_transport::__anon158
133 return (transport->doh.endpoint);
223 dns_transport_set_endpoint(dns_transport_t *transport, const char *endpoint) { argument
227 if (transport->doh.endpoint != NULL) {
228 isc_mem_free(transport->mctx, transport->doh.endpoint);
231 if (endpoint != NULL) {
232 transport->doh.endpoint = isc_mem_strdup(transport->mctx,
233 endpoint);
342 if (transport->doh.endpoint != NULL) {
343 isc_mem_free(transport->mctx, transport->doh.endpoint);
[all...]
/netbsd-current/tests/net/if_wg/
H A Dcommon.sh149 local endpoint=$4
160 if [ -n "$endpoint" ]; then
161 endpoint_opts="--endpoint=$endpoint"
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dnet.h193 = copyable<_Tp> && requires { typename _Tp::endpoint; };
219 && __endpoint_base<typename _Tp::endpoint>
220 && same_as<typename _Tp::endpoint::protocol_type, _Tp>;
225 && __endpoint<typename _Tp::endpoint>
264 __void_t< typename _Tp::protocol_type::endpoint,
282 __is_endpoint<typename _Tp::endpoint>,
/netbsd-current/external/bsd/ppp/dist/pppd/
H A Dlcp.h62 #define CI_EPDISC 19 /* endpoint discriminator */
104 bool neg_endpoint; /* negotiate endpoint discriminator */
112 struct epdisc endpoint; /* endpoint discriminator */ member in struct:lcp_options
H A Dlcp.c80 bool noendpoint = 0; /* don't send/accept endpoint discriminator */
182 { "endpoint", o_special, (void *) setendpoint,
188 "Don't send or accept multilink endpoint discriminator", 1 },
315 if (str_to_epdisc(&lcp_wantoptions[0].endpoint, *argv)) {
319 option_error("Can't parse '%s' as an endpoint discriminator", *argv);
326 printer(arg, "%s", epdisc_to_str(&lcp_wantoptions[0].endpoint));
674 (go->neg_endpoint? CILEN_CHAR + go->endpoint.length: 0));
748 ADDCIENDP(CI_EPDISC, go->neg_endpoint, go->endpoint.class,
749 go->endpoint.value, go->endpoint
[all...]
H A Dmultilink.c50 bool endpoint_specified; /* user gave explicit endpoint discriminator */
101 /* get a default endpoint value */
102 wo->neg_endpoint = get_default_epdisc(&wo->endpoint);
128 /* XXX should check the peer_authname and ho->endpoint
162 l += 3 * ho->endpoint.length + 8;
175 epdisc_to_str(&ho->endpoint));
467 * epdisc_to_str - make a printable string from an endpoint discriminator.
/netbsd-current/external/mpl/bind/dist/lib/dns/include/dns/
H A Dtransport.h70 * hostname, HTTP endpoint, or HTTP mode (GET or POST) for 'transport'.
87 dns_transport_set_endpoint(dns_transport_t *transport, const char *endpoint);
103 * hostname, HTTP endpoint, or HTTP mode (GET or POST) for 'transport'.
109 *\li 'transport' is of type DNS_TRANSPORT_HTTP (for endpoint or mode).
/netbsd-current/external/bsd/unbound/dist/testcode/
H A Ddohclient.c69 const char* endpoint; member in struct:http2_session
90 printf("-e HTTP endpoint, default: /dns-query\n");
164 h2_stream->path = (char*)h2_session->endpoint;
173 h2_session->endpoint)+strlen("?dns=")+qb64_size+1);
175 snprintf(h2_stream->path, strlen(h2_session->endpoint)+
177 h2_session->endpoint, qb64);
593 h2_session->endpoint = "/dns-query";
602 h2_session->endpoint = optarg;
/netbsd-current/external/bsd/nvi/dist/vi/
H A Dvs_refresh.c808 size_t cols, curcol, curlen, endpoint, len, midpoint; local
901 endpoint = cols;
904 --endpoint;
906 endpoint -= len;
909 if (endpoint > curlen + 2) {
910 (void)gp->scr_move(sp, LASTLINE(sp), endpoint);
/netbsd-current/sys/dev/usb/
H A Dumidi.c122 * umidi(sc) -> endpoint -> jack <- (dynamically assignable) - mididev
144 struct umidi_endpoint *endpoint; member in struct:umidi_jack
163 /* endpoint data */
654 * each endpoint stuffs
717 /* alloc/free the array of endpoint structures */
801 "cannot get endpoint descriptor(out:%d)\n",
809 "illegal endpoint(out:%d)\n", fp->out_ep[i].ep);
827 "cannot get endpoint descriptor(in:%d)\n",
834 * endpoint. The existing input logic in this driver seems
836 * endpoint a
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/smtpd/
H A Dsmtpd_proxy.c327 const char *endpoint; local
333 endpoint = proxy->service_name + 5;
337 endpoint = proxy->service_name + 5;
339 endpoint = proxy->service_name;
346 if ((fd = connect_fn(endpoint, BLOCKING, proxy->timeout)) < 0) {
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Dntp_proto.c1524 * if a non-NULL endpoint is supplied. multicastclient
3449 struct endpoint endp;
3460 static struct endpoint *endpoint = NULL; local
3469 * Initialize and create endpoint, index and peer lists big
3487 endpoint_size = ALIGNED_SIZE(nlist * 2 * sizeof(*endpoint));
3491 endpoint = erealloc(endpoint, octets);
3492 peers = INC_ALIGNED_PTR(endpoint, endpoint_size);
3609 * Insert each interval endpoint o
[all...]
/netbsd-current/external/bsd/ntp/dist/sntp/libevent/test/
H A Dregress_util.c883 int endpoint = 32 - (evutil_weakrand_(&seed) % 4); local
893 endpoint-startpoint);
894 n += endpoint - startpoint;
896 if (j >= startpoint && j < endpoint) {
909 for (j=startpoint;j<endpoint;++j) {
/netbsd-current/external/bsd/libevent/dist/test/
H A Dregress_util.c949 int endpoint = 32 - (evutil_weakrand_(&seed) % 4); local
959 endpoint-startpoint);
960 n += endpoint - startpoint;
962 if (j >= startpoint && j < endpoint) {
975 for (j=startpoint;j<endpoint;++j) {
/netbsd-current/sys/arch/mips/adm5120/dev/
H A Dahci.c420 * Emulation of interrupt transfer for status change endpoint
1345 uint8_t endpoint;
1348 endpoint = UE_GET_ADDR(endpointaddr);
1350 pid, len, (pid == SL11_PID_IN) ? "<-" : "->", devaddr, endpoint));
1355 sl11write(sc, SL11_E0PID, (pid << 4) + endpoint);
/netbsd-current/sys/rump/dev/lib/libugenhc/
H A Dugenhc.c91 #define UGEN_EPT_CTRL 0 /* ugenx.00 is the control endpoint */
128 makeugendevstr(int devnum, int endpoint, char *buf, size_t len) argument
132 snprintf(buf, len, "%s%d.%02d", UGENDEV_BASESTR, devnum, endpoint);
/netbsd-current/external/ibm-public/postfix/dist/src/milter/
H A Dmilter8.c39 /* The Milter application endpoint, either inet:host:port or
1637 char *endpoint; local
1712 * Parse the Milter application endpoint.
1721 if ((endpoint = split_at(transport, ':')) == 0
1722 || *endpoint == 0 || *transport == 0) {
1723 msg_warn("Milter service needs transport:endpoint instead of \"%s\"",
1728 msg_info("%s: transport=%s endpoint=%s", myname, transport, endpoint);
1744 if ((fd = connect_fn(endpoint, BLOCKING, milter->conn_timeout)) < 0) {

Completed in 647 milliseconds

12