Home | History | Annotate | Download | only in resolv

Lines Matching full:numbytes

519 _dnsPacket_checkBytes( DnsPacket*  packet, int  numBytes, const void*  bytes )
523 if (p + numBytes > packet->end)
526 if (memcmp(p, bytes, numBytes) != 0)
529 packet->cursor = p + numBytes;
780 _dnsPacket_hashBytes( DnsPacket* packet, int numBytes, unsigned hash )
785 while (numBytes > 0 && p < end) {
923 _dnsPacket_isEqualBytes( DnsPacket* pack1, DnsPacket* pack2, int numBytes )
928 if ( p1 + numBytes > pack1->end || p2 + numBytes > pack2->end )
931 if ( memcmp(p1, p2, numBytes) != 0 )
934 pack1->cursor += numBytes;
935 pack2->cursor += numBytes;