| /src/external/ibm-public/postfix/dist/src/util/ |
| 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_recv_fd.c | 143 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);
|
| 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);
|
| 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...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| tls13tickettest.c | 40 const char *endpoint = SSL_is_server(ssl) ? "server" : "client"; local 42 TEST_info("%s: Abbreviated handshake finished", endpoint); 44 TEST_info("%s: Full handshake finished", endpoint); 49 const char *endpoint = SSL_is_server(ssl) ? "server" : "client"; local 54 TEST_info("%s: alert %s: %s : %s", endpoint, dir,
|
| /src/external/bsd/nvi/dist/vi/ |
| vs_refresh.c | 808 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);
|
| /src/external/bsd/ppp/dist/pppd/ |
| lcp.h | 71 #define CI_EPDISC 19 /* endpoint discriminator */ 94 /* An endpoint discriminator, used with multilink. */ 121 bool neg_endpoint; /* negotiate endpoint discriminator */ 129 struct epdisc endpoint; /* endpoint discriminator */ member in struct:lcp_options
|
| /src/external/ibm-public/postfix/dist/src/master/ |
| master.h | 31 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 */
|
| /src/external/ibm-public/postfix/dist/src/smtpd/ |
| smtpd_proxy.c | 336 const char *endpoint; local 342 endpoint = proxy->service_name + 5; 346 endpoint = proxy->service_name + 5; 348 endpoint = proxy->service_name; 355 if ((fd = connect_fn(endpoint, BLOCKING, proxy->timeout)) < 0) {
|
| /src/external/bsd/unbound/dist/testcode/ |
| dohclient.c | 69 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;
|
| /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/apache2/mDNSResponder/dist/DSO/ |
| dso-transport.c | 1142 nw_endpoint_t endpoint = NULL; local 1188 endpoint = nw_endpoint_create_host(addrbuf, portbuf); 1189 if (endpoint == NULL) { 1220 connection = nw_connection_create(endpoint, parameters); 1340 MDNS_DISPOSE_NW(endpoint);
|
| /src/external/mpl/bind/dist/lib/dns/ |
| transport.c | 68 char *endpoint; member in struct:dns_transport::__anon24109 138 return transport->doh.endpoint; 228 dns_transport_set_endpoint(dns_transport_t *transport, const char *endpoint) { 232 if (transport->doh.endpoint != NULL) { 233 isc_mem_free(transport->mctx, transport->doh.endpoint); 236 if (endpoint != NULL) { 237 transport->doh.endpoint = isc_mem_strdup(transport->mctx, 238 endpoint); 626 if (transport->doh.endpoint != NULL) { 627 isc_mem_free(transport->mctx, transport->doh.endpoint); [all...] |
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| macos-ioloop.c | 875 ioloop_connection_get_address_from_endpoint(addr_t *addr, nw_endpoint_t endpoint) 877 nw_endpoint_type_t endpoint_type = nw_endpoint_get_type(endpoint); 879 char *address_string = nw_endpoint_copy_address_string(endpoint); 899 ioloop_connection_set_name_from_endpoint(comm_t *connection, nw_endpoint_t endpoint) 901 nw_endpoint_type_t endpoint_type = nw_endpoint_get_type(endpoint); 903 char *port_string = nw_endpoint_copy_port_string(endpoint); 904 char *address_string = nw_endpoint_copy_address_string(endpoint); 972 nw_endpoint_t endpoint = nw_connection_copy_endpoint(connection->connection); local 973 if (endpoint != NULL) { 974 ioloop_connection_set_name_from_endpoint(connection, endpoint); 1471 nw_endpoint_t endpoint; local 1685 nw_endpoint_t endpoint; local [all...] |
| /src/external/bsd/ntp/dist/sntp/libevent/test/ |
| regress_util.c | 946 int endpoint = 32 - (evutil_weakrand_(&seed) % 4); local 956 endpoint-startpoint); 957 n += endpoint - startpoint; 959 if (j >= startpoint && j < endpoint) { 972 for (j=startpoint;j<endpoint;++j) {
|
| /src/external/bsd/libevent/dist/test/ |
| regress_util.c | 949 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) {
|
| /src/sys/dev/usb/ |
| umidi.c | 122 * 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 as illegal (or the in_progress status we get o [all...] |
| /src/external/bsd/ntp/dist/ntpd/ |
| ntp_proto.c | 1592 * if a non-NULL endpoint is supplied. multicastclient 3537 struct endpoint endp; 3548 static struct endpoint *endpoint = NULL; local 3557 * Initialize and create endpoint, index and peer lists big 3575 endpoint_size = ALIGNED_SIZE(nlist * 2 * sizeof(*endpoint)); 3579 endpoint = erealloc(endpoint, octets); 3580 peers = INC_ALIGNED_PTR(endpoint, endpoint_size); 3697 * Insert each interval endpoint on the unsorte [all...] |
| /src/external/ibm-public/postfix/dist/src/milter/ |
| milter8.c | 39 /* The Milter application endpoint, either inet:host:port or 1651 char *endpoint; local 1726 * Parse the Milter application endpoint. 1735 if ((endpoint = split_at(transport, ':')) == 0 1736 || *endpoint == 0 || *transport == 0) { 1737 msg_warn("Milter service needs transport:endpoint instead of \"%s\"", 1742 msg_info("%s: transport=%s endpoint=%s", myname, transport, endpoint); 1758 if ((fd = connect_fn(endpoint, BLOCKING, milter->conn_timeout)) < 0) {
|
| /src/external/bsd/ntp/dist/include/ |
| ntp.h | 174 * endpt is unrelated to the select algorithm's struct endpoint. 936 * Endpoint structure for the select algorithm 938 struct endpoint { struct 939 double val; /* offset of endpoint */
|
| /src/external/apache2/mDNSResponder/dist/Clients/dnssdutil/ |
| dnssdutil.c | 9025 nw_endpoint_t endpoint = NULL; local 9059 endpoint = nw_endpoint_create_host_with_numeric_port( kDNSServerHostname, endpointPort ); 9060 require_action( endpoint, exit, err = kUnknownErr ); 9062 secureDNSConfig = nw_resolver_config_create_tls( endpoint ); 9063 nw_forget( &endpoint ); 9080 endpoint = nw_endpoint_create_url( templateURL ); 9082 require_action( endpoint, exit, err = kUnknownErr ); 9084 secureDNSConfig = nw_resolver_config_create_https( endpoint ); 9085 nw_forget( &endpoint ); 9274 nw_forget( &endpoint ); 37032 nw_endpoint_t endpoint; local 37044 nw_endpoint_t endpoint; local [all...] |
| /src/external/public-domain/sqlite/dist/ |
| sqlite3.c | 109690 FilePoint endpoint; \/* Pointer to the end of the file *\/ member in struct:MemJournal [all...] |