readBytes 878 plugin/ipc/file/fileconnection.cpp int readBytes; readBytes 880 plugin/ipc/file/fileconnection.cpp readBytes = Util::readAll(savedFd, buf1, MIN(bufSize, size)); readBytes 881 plugin/ipc/file/fileconnection.cpp JASSERT(readBytes != -1) (JASSERT_ERRNO) .Text("Read Failed"); readBytes 882 plugin/ipc/file/fileconnection.cpp if (readBytes == 0) break; readBytes 883 plugin/ipc/file/fileconnection.cpp JASSERT(Util::readAll(fd, buf2, readBytes) == readBytes); readBytes 884 plugin/ipc/file/fileconnection.cpp if (memcmp(buf1, buf2, readBytes) != 0) { readBytes 887 plugin/ipc/file/fileconnection.cpp size -= readBytes; readBytes 910 plugin/ipc/file/fileconnection.cpp int readBytes, writtenBytes; readBytes 912 plugin/ipc/file/fileconnection.cpp readBytes = Util::readAll(fd, buf, bufSize); readBytes 913 plugin/ipc/file/fileconnection.cpp JASSERT(readBytes != -1) (JASSERT_ERRNO) .Text("Read Failed"); readBytes 914 plugin/ipc/file/fileconnection.cpp if (readBytes == 0) break; readBytes 915 plugin/ipc/file/fileconnection.cpp writtenBytes = Util::writeAll(destFd, buf, readBytes);