Home
last modified time | relevance | path

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

/external/xmlrpcpp/src/
DXmlRpcSocket.cpp173 const int READ_SIZE = 4096; // Number of bytes to attempt to read at a time in nbRead() local
174 char readBuf[READ_SIZE]; in nbRead()
181 int n = recv(fd, readBuf, READ_SIZE-1, 0); in nbRead()
183 int n = read(fd, readBuf, READ_SIZE-1); in nbRead()
/external/elfutils/libdwfl/
Dgzip.c68 #define READ_SIZE (1 << 20) macro
190 state.input_buffer = malloc (READ_SIZE); in unzip()
194 ssize_t n = pread_retry (fd, state.input_buffer, READ_SIZE, start_offset); in unzip()
240 ssize_t n = pread_retry (fd, state.input_buffer, READ_SIZE, in unzip()