Searched defs:READ_SIZE (Results 1 - 3 of 3) sorted by relevance

/external/expat/xmlwf/
H A Dxmlfile.c68 #define READ_SIZE 16 macro
70 #define READ_SIZE (1024*8) macro
204 char *buf = (char *)XML_GetBuffer(parser, READ_SIZE);
212 nread = read(fd, buf, READ_SIZE);
/external/elfutils/libdwfl/
H A Dgzip.c68 #define READ_SIZE (1 << 20) macro
190 state.input_buffer = malloc (READ_SIZE);
194 ssize_t n = pread_retry (fd, state.input_buffer, READ_SIZE, start_offset);
240 ssize_t n = pread_retry (fd, state.input_buffer, READ_SIZE,
/external/xmlrpcpp/src/
H A DXmlRpcSocket.cpp173 const int READ_SIZE = 4096; // Number of bytes to attempt to read at a time local
174 char readBuf[READ_SIZE];
181 int n = recv(fd, readBuf, READ_SIZE-1, 0);
183 int n = read(fd, readBuf, READ_SIZE-1);

Completed in 127 milliseconds