HomeSort by relevance Sort by last modified time
    Searched refs:READ_SIZE (Results 1 - 5 of 5) sorted by null

  /cts/suite/audio_quality/lib/src/
SimpleScriptExec.cpp 72 const int READ_SIZE = 1024;
73 char buffer[READ_SIZE];
81 while((len = fread(buffer, 1, READ_SIZE, fpipe)) > 0) {
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoDownloadRunnable.java 39 private static final int READ_SIZE = 1024 * 2;
185 byte[] tempBuffer = new byte[READ_SIZE];
252 bufferLeft = READ_SIZE;
259 int newSize = tempBuffer.length + READ_SIZE;
  /external/xmlrpcpp/src/
XmlRpcSocket.cpp 173 const int READ_SIZE = 4096; // Number of bytes to attempt to read at a time
174 char readBuf[READ_SIZE];
181 int n = recv(fd, readBuf, READ_SIZE-1, 0);
183 int n = read(fd, readBuf, READ_SIZE-1);
  /external/elfutils/libdwfl/
gzip.c 68 #define READ_SIZE (1 << 20)
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/expat/xmlwf/
xmlfile.c 68 #define READ_SIZE 16
70 #define READ_SIZE (1024*8)
204 char *buf = (char *)XML_GetBuffer(parser, READ_SIZE);
212 nread = read(fd, buf, READ_SIZE);

Completed in 194 milliseconds