Home
last modified time | relevance | path

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

/netbsd/src/external/apache2/mDNSResponder/dist/mDNSPosix/
DmDNSPosix.c1680 ssize_t readCount; in ProcessRoutingNotification() local
1690 readCount = read(sd, buff, sizeof buff); in ProcessRoutingNotification()
1695 … if (((char*) &pNLMsg[1] > (buff + readCount)) || // i.e. *pNLMsg extends off end of buffer in ProcessRoutingNotification()
1696 ((char*) pNLMsg + pNLMsg->nlmsg_len > (buff + readCount))) in ProcessRoutingNotification()
1701 readCount -= ((char*) pNLMsg - buff); in ProcessRoutingNotification()
1702 memmove(buff, pNLMsg, readCount); in ProcessRoutingNotification()
1706 readCount += read(sd, buff + readCount, sizeof buff - readCount); in ProcessRoutingNotification()
1726 ssize_t len = readCount - ((char*)pNLMsg - buff); in ProcessRoutingNotification()
1769 ssize_t readCount; in ProcessRoutingNotification() local
1774 readCount = read(sd, buff, sizeof buff); in ProcessRoutingNotification()
[all …]
/netbsd/src/external/bsd/elftosb/dist/common/
DEncoreBootImage.cpp1221 unsigned readCount = maxCount; in getBlocks() local
1242 if (readCount > commandRemaining) in getBlocks()
1244 readCount = commandRemaining; in getBlocks()
1246 return command->getBlocks(commandOffset, readCount, data); in getBlocks()