Home | History | Annotate | Download | only in mDNSPosix

Lines Matching defs:readCount

1059 	ssize_t					readCount;
1069 readCount = read(sd, buff, sizeof buff);
1074 if (((char*) &pNLMsg[1] > (buff + readCount)) || // i.e. *pNLMsg extends off end of buffer
1075 ((char*) pNLMsg + pNLMsg->nlmsg_len > (buff + readCount)))
1080 readCount -= ((char*) pNLMsg - buff);
1081 memmove(buff, pNLMsg, readCount);
1085 readCount += read(sd, buff + readCount, sizeof buff - readCount);
1086 continue; // spin around and revalidate with new readCount
1105 ssize_t len = readCount - ((char*)pNLMsg - buff);
1148 ssize_t readCount;
1153 readCount = read(sd, buff, sizeof buff);
1154 if (readCount < (ssize_t) sizeof(struct ifa_msghdr))