Searched refs:READ_SIZE (Results 1 – 3 of 3) sorted by relevance
/external/xmlrpcpp/src/ |
D | XmlRpcSocket.cpp | 173 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/expat/xmlwf/ |
D | xmlfile.c | 68 #define READ_SIZE 16 macro 70 #define READ_SIZE (1024*8) macro 204 char *buf = (char *)XML_GetBuffer(parser, READ_SIZE); in processStream() 212 nread = read(fd, buf, READ_SIZE); in processStream()
|
/external/elfutils/libdwfl/ |
D | gzip.c | 68 #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()
|