Home | History | Annotate | Download | only in mDNSShared

Lines Matching refs:allocsize

421 	int 			allocsize;
449 allocsize = sizeof(PktMsg) - sizeof(DNSMessage) + msglen;
453 allocsize = sizeof(PktMsg);
456 pkt = malloc(allocsize);
1377 int i, allocsize, bucket;
1450 allocsize = sizeof(RRTableElem);
1451 if (rr->rdlength > InlineCacheRDSize) allocsize += (rr->rdlength - InlineCacheRDSize);
1452 tmp = malloc(allocsize);