HomeSort by: relevance | last modified time | path
    Searched defs:readCount (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/elftosb/dist/common/
EncoreBootImage.cpp 1221 unsigned readCount = maxCount;
1242 if (readCount > commandRemaining)
1244 readCount = commandRemaining;
1246 return command->getBlocks(commandOffset, readCount, data);
  /src/external/apache2/mDNSResponder/dist/mDNSPosix/
mDNSPosix.c 1686 ssize_t readCount;
1696 readCount = read(sd, buff, sizeof buff);
1701 if (((char*) &pNLMsg[1] > (buff + readCount)) || // i.e. *pNLMsg extends off end of buffer
1702 ((char*) pNLMsg + pNLMsg->nlmsg_len > (buff + readCount)))
1707 readCount -= ((char*) pNLMsg - buff);
1708 memmove(buff, pNLMsg, readCount);
1712 readCount += read(sd, buff + readCount, sizeof buff - readCount);
1713 continue; // spin around and revalidate with new readCount
    [all...]

Completed in 25 milliseconds