Home | History | Annotate | Download | only in resolv

Lines Matching full:numbytes

500 _dnsPacket_checkBytes( DnsPacket*  packet, int  numBytes, const void*  bytes )
504 if (p + numBytes > packet->end)
507 if (memcmp(p, bytes, numBytes) != 0)
510 packet->cursor = p + numBytes;
761 _dnsPacket_hashBytes( DnsPacket* packet, int numBytes, unsigned hash )
766 while (numBytes > 0 && p < end) {
928 _dnsPacket_isEqualBytes( DnsPacket* pack1, DnsPacket* pack2, int numBytes )
933 if ( p1 + numBytes > pack1->end || p2 + numBytes > pack2->end )
936 if ( memcmp(p1, p2, numBytes) != 0 )
939 pack1->cursor += numBytes;
940 pack2->cursor += numBytes;