Searched refs:imsg (Results 1 – 3 of 3) sorted by relevance
/external/ltp/testcases/kernel/logging/kmsg/ |
D | kmsg01.c | 310 char imsg[MAX_MSGSIZE], imsg_prefixed[MAX_MSGSIZE]; in test_inject() local 321 sprintf(imsg, MSG_PREFIX"TEST MESSAGE %ld prio: %d, " in test_inject() 323 sprintf(imsg_prefixed, "<%d>%s", i, imsg); in test_inject() 331 if (find_msg(-1, imsg, tmp, sizeof(tmp), 0) == -1) { in test_inject() 332 tst_resm(TFAIL, "failed to find: %s", imsg); in test_inject()
|
/external/libpcap/ |
D | pcap-sita.c | 71 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/ |
D | mDNSEmbeddedAPI.h | 1963 union { DNSMessage m; void *p; } imsg; // Incoming message received from wire member
|