Searched defs:readCount (Results 1 - 2 of 2) sorted by relevance

/build/make/tools/libhost/
H A DCopyFile.c119 ssize_t readCount, writeCount; local
125 readCount = read(srcFd, buf, sizeof(buf));
126 if (readCount < 0) {
132 if (readCount > 0) {
133 writeCount = write(dstFd, buf, readCount);
139 if (writeCount != readCount) {
141 dst, writeCount, readCount);
146 if (readCount < (ssize_t) sizeof(buf))
/build/tools/libhost/
H A DCopyFile.c119 ssize_t readCount, writeCount; local
125 readCount = read(srcFd, buf, sizeof(buf));
126 if (readCount < 0) {
132 if (readCount > 0) {
133 writeCount = write(dstFd, buf, readCount);
139 if (writeCount != readCount) {
141 dst, writeCount, readCount);
146 if (readCount < (ssize_t) sizeof(buf))

Completed in 67 milliseconds