| /src/external/mpl/bind/dist/bin/tests/system/digdelv/ans5/ |
| ans.pl | 157 my $lenbuf; 159 my $n = $conn->sysread($lenbuf, 2); 161 my $len = unpack("n", $lenbuf);
|
| /src/external/mpl/bind/dist/bin/tests/system/resolver/ans8/ |
| ans.pl | 160 my $lenbuf; 161 my $n = $conn->sysread($lenbuf, 2); 163 my $len = unpack("n", $lenbuf);
|
| /src/external/mpl/bind/dist/bin/tests/system/resolver/ans3/ |
| ans.pl | 215 my $lenbuf; 216 my $n = $conn->sysread($lenbuf, 2); 218 my $len = unpack("n", $lenbuf);
|
| /src/external/mpl/bind/dist/bin/tests/system/ |
| ans.pl | 577 my $lenbuf; 578 my $n = $conn->sysread($lenbuf, 2); 580 my $len = unpack("n", $lenbuf);
|
| /src/external/apache2/mDNSResponder/dist/DSO/ |
| dso-transport.h | 66 uint8_t lenbuf[2]; // Buffer for storing the length in a DNS TCP message member in struct:dso_transport
|
| dso-transport.c | 290 uint8_t lenbuf[2]; local 296 lenbuf[0] = length >> 8; 297 lenbuf[1] = length & 255; 298 transport->to_write = dispatch_data_create(lenbuf, 2, dso_dispatch_queue, 315 transport->lenbuf[0] = length >> 8; 316 transport->lenbuf[1] = length & 255; 318 transport->to_write[0] = transport->lenbuf; 592 const uint8_t *lenbuf; 593 dispatch_data_t map = dispatch_data_create_map(content, (const void **)&lenbuf, 603 length = ((unsigned)(lenbuf[0]) << 8) | ((unsigned)lenbuf[1]) [all...] |
| /src/external/mpl/bind/dist/lib/dns/ |
| dnssec.c | 290 isc_buffer_t lenbuf; local 312 isc_buffer_init(&lenbuf, &len, sizeof(len)); 313 isc_buffer_putuint16(&lenbuf, (uint16_t)rdatas[i].length); 314 isc_buffer_usedregion(&lenbuf, &lenr); 487 isc_buffer_t lenbuf; local 509 isc_buffer_init(&lenbuf, &len, sizeof(len)); 510 isc_buffer_putuint16(&lenbuf, (uint16_t)rdatas[i].length); 511 isc_buffer_usedregion(&lenbuf, &lenr);
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| dnssec.c | 314 isc_buffer_t lenbuf; local 336 isc_buffer_init(&lenbuf, &len, sizeof(len)); 338 isc_buffer_putuint16(&lenbuf, (uint16_t)rdatas[i].length); 339 isc_buffer_usedregion(&lenbuf, &lenr); 526 isc_buffer_t lenbuf; local 548 isc_buffer_init(&lenbuf, &len, sizeof(len)); 550 isc_buffer_putuint16(&lenbuf, (uint16_t)rdatas[i].length); 551 isc_buffer_usedregion(&lenbuf, &lenr);
|
| /src/external/apache2/mDNSResponder/dist/ServiceRegistration/ |
| ioloop.c | 778 char lenbuf[2]; local 800 iovec[0].iov_base = &lenbuf[0]; 803 lenbuf[0] = payload_length / 256; 804 lenbuf[1] = payload_length & 0xff;
|
| macos-ioloop.c | 730 const uint8_t *lenbuf; local 737 map = dispatch_data_create_map(content, (const void **)&lenbuf, &length); 744 bytes_to_read = ((unsigned)(lenbuf[0]) << 8) | ((unsigned)lenbuf[1]);
|
| /src/external/bsd/ekermit/dist/ |
| kermit.c | 1386 UCHAR lenbuf[16]; local 1388 p = numstring(filelength,lenbuf,16,k);
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| schema_init.c | 2618 unsigned char lenbuf[sizeof(k) + 2], *lenp, neg = 0xff; local 2649 lenp = lenbuf + sizeof(lenbuf); 2655 /* With n bytes in lenbuf, the top n+1 bits of (signmask&0xff) 2657 k = (lenbuf + sizeof(lenbuf)) - lenp;
|
| /src/external/apache2/mDNSResponder/dist/mDNSCore/ |
| DNSCommon.c | 5200 mDNSu8 lenbuf[2] = { (mDNSu8)(msglen >> 8), (mDNSu8)(msglen & 0xFF) }; local 5208 buf[0] = lenbuf[0]; 5209 buf[1] = lenbuf[1]; 5221 nsent = mDNSPlatformWriteTCP(tcpSrc, (char*)lenbuf, 2);
|