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

  /external/mesa3d/src/glsl/glcpp/
glcpp.c 51 ssize_t total_read = 0; local
55 if (total_read + CHUNK + 1 > text_size) {
63 bytes = read (fd, text + total_read, CHUNK);
75 total_read += bytes;
78 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/
glsl_compiler.cpp 80 ssize_t total_read = 0; local
91 ssize_t bytes = read(fd, text + total_read,
92 st.st_size - total_read);
103 total_read += bytes;
104 } while (total_read < st.st_size);
106 text[total_read] = '\0';
  /external/chromium/net/socket/
ssl_client_socket_mac.cc 1313 size_t total_read = us->recv_buffer_.size(); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/file/
SDL_rwops.c 165 int total_read = 0; local
187 total_read += read_ahead;
199 total_read += read_ahead;
205 total_read += byte_read;
207 return (total_read/size);
  /external/zlib/contrib/minizip/
minizip.c 178 unsigned long total_read = 0; local
198 total_read += size_read;
  /external/chromium/base/
file_util_posix.cc 365 size_t total_read = 0; local
366 while (total_read < bytes) {
368 HANDLE_EINTR(read(fd, buffer + total_read, bytes - total_read));
371 total_read += bytes_read;
373 return total_read == bytes;
file_util_win.cc 1136 size_t total_read = 0; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 85 size_t total_read = 0, current_read; local
86 while (total_read < buffer_len) {
87 result = Read(static_cast<char*>(buffer) + total_read,
88 buffer_len - total_read, &current_read, error);
91 total_read += current_read;
94 *read = total_read;
  /external/bluetooth/glib/gio/tests/
live-g-file.c 392 gssize read, total_read; local
451 total_read = 0;
453 while (total_read < PATTERN_FILE_SIZE)
457 g_input_stream_read (G_INPUT_STREAM (ins), buffer + total_read,
460 total_read += read;
461 log (" read %d bytes, total = %d of %d.\n", read, total_read,
464 g_assert_cmpint (total_read, ==, PATTERN_FILE_SIZE);
    [all...]

Completed in 171 milliseconds