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

  /external/libweave/third_party/chromium/base/
rand_util_posix.cc 33 size_t total_read = 0; local
34 while (total_read < bytes) {
36 HANDLE_EINTR(read(fd, buffer + total_read, bytes - total_read));
39 total_read += bytes_read;
41 return total_read == bytes;
  /external/mesa3d/src/glsl/glcpp/
glcpp.c 49 size_t total_read = 0; local
53 if (total_read + CHUNK + 1 > text_size) {
61 bytes = fread (text + total_read, 1, CHUNK, fp);
62 total_read += bytes;
69 text[total_read] = '\0';
  /external/opencv/otherlibs/highgui/
cvcap_socket.cpp 247 long read_count, total_read = 0; local
248 while (total_read < readBufSize)
250 read_count = read(sockd, &readBuf[total_read], readBufSize);
258 total_read += read_count;
262 if (total_read == readBufSize)
  /external/mesa3d/src/glsl/
main.cpp 69 size_t total_read = 0; local
83 size_t bytes = fread(text + total_read,
84 1, size - total_read, fp);
85 if (bytes < size - total_read) {
95 total_read += bytes;
96 } while (total_read < size);
98 text[total_read] = '\0';
  /external/boringssl/src/crypto/bio/
bio_test.cc 213 size_t total_read = 0; local
237 total_read += BIO_read(bio2, bio2_application_recv_buffer + total_read,
260 total_read += BioReadZeroCopyWrapper(
261 bio2, bio2_application_recv_buffer + total_read, bytes_left);
263 if (total_read != total_write) {
268 if (total_read > kLengths[i] + kPartialLengths[j]) {
274 total_read) != 0) {
  /toolchain/binutils/binutils-2.25/gold/testsuite/
binary_unittest.cc 47 ssize_t total_read = 0; local
57 total_read += nread;
59 return total_read;
  /system/extras/iotop/
iotop.cpp 242 uint64_t total_read = 0; local
246 total_read += statistics.read();
269 BytesToKB(total_read) / delay_div,
  /external/google-breakpad/src/common/windows/
http_upload.cc 214 DWORD total_read = 0; local
227 total_read += size_read;
235 (total_read == claimed_size));
  /external/curl/lib/
security.c 232 size_t total_read = 0; local
248 total_read += bytes_read;
261 total_read += bytes_read;
265 return total_read;
  /external/libevent/
bufferevent-internal.h 91 ev_uint64_t total_read; member in struct:bufferevent_rate_limit_group
bufferevent_ratelim.c 300 bev->rate_limiting->group->total_read += bytes;
1002 *total_read_out = grp->total_read;
1010 grp->total_read = grp->total_written = 0;
  /external/zlib/src/contrib/minizip/
minizip.c 192 unsigned long total_read = 0; local
212 total_read += size_read;
  /external/libchrome/base/files/
file_util_posix.cc 390 size_t total_read = 0; local
391 while (total_read < bytes) {
393 HANDLE_EINTR(read(fd, buffer + total_read, bytes - total_read));
396 total_read += bytes_read;
398 return total_read == bytes;
  /external/webrtc/webrtc/base/
stream.cc 63 size_t total_read = 0, current_read; local
64 while (total_read < buffer_len) {
65 result = Read(static_cast<char*>(buffer) + total_read,
66 buffer_len - total_read, &current_read, error);
69 total_read += current_read;
72 *read = total_read;
  /external/autotest/utils/
external_packages.py 497 total_read = 0
500 while total_read < data_length:
506 total_read += len(data)
    [all...]

Completed in 656 milliseconds