HomeSort by: relevance | last modified time | path
    Searched refs:addrbytes (Results 1 - 6 of 6) sorted by relevancy

  /src/external/mpl/bind/dist/lib/dns/rdata/generic/
opt_41.c 144 uint8_t addrbytes; local
184 addrbytes = (addrlen + 7) / 8;
185 if (addrbytes + 4 != length) {
189 if (addrbytes != 0U && (addrlen % 8) != 0) {
191 bits &= sregion.base[addrbytes - 1];
192 if (bits != sregion.base[addrbytes - 1]) {
196 isc_region_consume(&sregion, addrbytes);
  /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/
opt_41.c 139 uint8_t addrbytes; local
179 addrbytes = (addrlen + 7) / 8;
180 if (addrbytes + 4 != length) {
184 if (addrbytes != 0U && (addrlen % 8) != 0) {
186 bits &= sregion.base[addrbytes - 1];
187 if (bits != sregion.base[addrbytes - 1]) {
191 isc_region_consume(&sregion, addrbytes);
  /src/external/mpl/bind/dist/lib/ns/
client.c 1389 uint8_t addrlen, addrbytes, scope, *paddr; local
1473 addrbytes = (addrlen + 7) / 8;
1474 if (isc_buffer_remaininglength(buf) < addrbytes) {
1482 if (addrbytes != 0U) {
1483 memmove(paddr, isc_buffer_current(buf), addrbytes);
1484 isc_buffer_forward(buf, addrbytes);
1485 optlen -= addrbytes;
1489 bits &= paddr[addrbytes - 1];
1490 if (bits != paddr[addrbytes - 1]) {
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
route.c 1767 const uint8_t *addrbytes, *maskbytes, *prefp; local
1785 addrbytes = (uint8_t *)&address->sin.sin_addr;
1812 addrbytes = (uint8_t *)&address->sin6.sin6_addr;
1824 addrbytes = NULL;
1854 inet_ntop(address->sa.sa_family, addrbytes, addrbuf, sizeof addrbuf);
1857 IPv4_ADDR_GEN_SRP(addrbytes, addr_buf);
1861 IPv4_ADDR_PARAM_SRP(addrbytes, addr_buf), preflen, flags);
1863 SEGMENTED_IPv6_ADDR_GEN_SRP(addrbytes, addr_buf);
1867 SEGMENTED_IPv6_ADDR_PARAM_SRP(addrbytes, addr_buf), preflen, flags);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
message.c 3538 uint8_t addrlen, addrbytes, scopelen; local
3552 addrbytes = (addrlen + 7) / 8;
3553 if (isc_buffer_remaininglength(ecsbuf) < addrbytes) {
3557 if (addrbytes > sizeof(addr)) {
3562 for (i = 0; i < addrbytes; i++) {
  /src/external/mpl/bind/dist/lib/dns/
message.c 3483 uint8_t addrlen, addrbytes, scopelen; local
3497 addrbytes = (addrlen + 7) / 8;
3498 if (isc_buffer_remaininglength(ecsbuf) < addrbytes) {
3502 if (addrbytes > sizeof(addr)) {
3506 for (i = 0; i < addrbytes; i++) {

Completed in 91 milliseconds