Home
last modified time | relevance | path

Searched refs:imsg (Results 1 – 2 of 2) sorted by relevance

/external/libpcap/
Dpcap-sita.c71 char *imsg; /* a pointer to an inbound message */ member
210 if (u->imsg) { /* then if an inbound message buffer exists */
211 …u->imsg = (char *)realloc(u->imsg, 1); /* and re-allocate the old large buffer into a new small…
212 if (u->imsg == NULL) { /* oops, realloc call failed */
577 ptr = u->imsg; /* point to the start of the msg for this IOP */
578 while (ptr < (u->imsg + u->len)) {
706 if ((u->imsg = realloc(u->imsg, (u->len + len))) == NULL) /* extend the buffer for the new data */
708 memcpy((u->imsg + u->len), buf, len); /* append the new data */
/external/mdnsresponder/mDNSCore/
DmDNSEmbeddedAPI.h1952 union { DNSMessage m; void *p; } imsg; // Incoming message received from wire member