HomeSort by: relevance | last modified time | path
    Searched defs:portbuf (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/dev/acpi/
ehci_acpi.c 189 ACPI_BUFFER portbuf, buf; local
195 rv = acpi_eval_struct(portad->ad_handle, "_PLD", &portbuf);
199 portobj = portbuf.Pointer;
238 ACPI_FREE(portbuf.Pointer);
  /src/sys/external/bsd/ipf/netinet/
ip_rcmd_pxy.c 139 char portbuf[8], *s; local
173 bzero(portbuf, sizeof(portbuf));
174 COPYDATA(m, off, MIN(sizeof(portbuf), dlen), portbuf);
176 portbuf[sizeof(portbuf) - 1] = '\0';
177 s = portbuf;
182 dlen, portbuf);
  /src/external/ibm-public/postfix/dist/src/util/
myaddrinfo.c 605 char portbuf[sizeof("65535")]; local
622 sprintf(portbuf, "%d", ntohs(SOCK_ADDR_IN_PORT(sa)) & 0xffff);
623 if ((len = strlen(portbuf)) >= sizeof(portnum->buf)) {
627 memcpy(portnum->buf, portbuf, len + 1);
  /src/external/bsd/libevent/dist/
bufferevent_sock.c 500 char portbuf[10]; local
514 evutil_snprintf(portbuf, sizeof(portbuf), "%d", port);
524 portbuf, &hint, bufferevent_connect_getaddrinfo_cb, bev);
  /src/external/bsd/ntp/dist/sntp/libevent/
bufferevent_sock.c 499 char portbuf[10]; local
513 evutil_snprintf(portbuf, sizeof(portbuf), "%d", port);
523 portbuf, &hint, bufferevent_connect_getaddrinfo_cb, bev);
  /src/crypto/dist/ipsec-tools/src/libipsec/
pfkey_dump.c 706 char portbuf[128]; local
730 memset(portbuf, 0, sizeof(portbuf));
734 strcpy(portbuf, "[any]");
736 snprintf(portbuf, sizeof(portbuf), "[%u]", port);
740 snprintf(buf, sizeof(buf), "%s%s", prefbuf, portbuf);
  /src/external/apache2/mDNSResponder/dist/DSO/
dso-transport.c 1184 char portbuf[6]; local
1186 snprintf(portbuf, sizeof(portbuf), "%u", mDNSVal16(port));
1188 endpoint = nw_endpoint_create_host(addrbuf, portbuf);
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
macos-ioloop.c 1470 char portbuf[10]; local
1489 snprintf(portbuf, sizeof(portbuf), "%d", port);
1584 endpoint = nw_endpoint_create_host(ip_address_str, portbuf);
1683 char portbuf[10]; local
1691 snprintf(portbuf, sizeof(portbuf), "%d", (remote_address->sa.sa_family == AF_INET
1703 endpoint = nw_endpoint_create_host(addrbuf, portbuf);
  /src/libexec/httpd/
bozohttpd.c 1066 char portbuf[20]; local
1120 portbuf[0] = '\0';
1126 snprintf(portbuf, sizeof(portbuf), ":%s",
1129 portbuf[0] = '\0';
1142 scheme, hostname, portbuf, url, quest, query);
2228 char portbuf[20]; local
2248 snprintf(portbuf, sizeof(portbuf), ":%s",
2251 portbuf[0] = '\0'
    [all...]
  /src/crypto/dist/ipsec-tools/src/racoon/
isakmp.c 2767 char portbuf[NI_MAXSERV];
2784 portbuf, sizeof(portbuf),
2787 strlcpy(portbuf, "?", sizeof(portbuf));
2789 printf("%s:%s", hostbuf, portbuf);
2795 portbuf, sizeof(portbuf),
2798 strlcpy(portbuf, "?", sizeof(portbuf));
2766 char portbuf[NI_MAXSERV]; local
    [all...]
  /src/external/bsd/unbound/dist/services/
listen_dnsport.c 1057 char portbuf[32]; local
1058 snprintf(portbuf, sizeof(portbuf), "%d", port);
1061 if((r=getaddrinfo(ifname, portbuf, hints, &res)) != 0 || !res) {
1069 ifname?ifname:"default", portbuf, gai_strerror(r),

Completed in 38 milliseconds