| /external/bluetooth/glib/gio/ |
| gcancellable.c | 319 gsize bytes_read; local 321 &bytes_read, NULL);
|
| ginputstream.c | 227 * @bytes_read: location to store the number of bytes that was read from the stream 238 * stream, %TRUE is returned, and @bytes_read is set to the number of bytes 242 * is set to indicate the error status, @bytes_read is updated to contain 251 gsize *bytes_read, 268 if (bytes_read) 269 *bytes_read = _bytes_read; 279 if (bytes_read) 280 *bytes_read = _bytes_read; [all...] |
| ginputstream.h | 124 gsize *bytes_read,
|
| glocalfileoutputstream.c | 600 gssize bytes_read; local 608 bytes_read = read (sfd, buffer, BUFSIZE); 609 if (bytes_read == -1) 624 bytes_to_write = bytes_read; 650 } while ((bytes_read != 0) && (ret == TRUE));
|
| /external/bluetooth/glib/glib/ |
| gfileutils.c | 606 gsize bytes_read; local 627 bytes_read = 0; 628 while (bytes_read < size) 632 rc = read (fd, buf + bytes_read, size - bytes_read); 654 bytes_read += rc; 657 buf[bytes_read] = '\0'; 660 *length = bytes_read; [all...] |
| /external/chromium/chrome/browser/renderer_host/ |
| safe_browsing_resource_handler.cc | 123 int* bytes_read) { 126 return next_handler_->OnReadCompleted(request_id, bytes_read);
|
| /external/chromium/net/url_request/ |
| url_request.h | 220 virtual void OnReadCompleted(URLRequest* request, int bytes_read) = 0; 508 // The bytes_read parameter is an output parameter containing the 514 bool Read(IOBuffer* buf, int max_bytes, int* bytes_read);
|
| url_request_job_tracker_unittest.cc | 87 int *bytes_read) { 104 *bytes_read = bytes_to_read;
|
| /external/valgrind/main/coregrind/m_debuginfo/ |
| readdwarf.c | 342 Int bytes_read; local 347 len = read_leb128 (data, & bytes_read, 0); 348 data += bytes_read; 354 return (Word)bytes_read; 357 len += bytes_read; 407 read_leb128 (data, & bytes_read, 0); 408 data += bytes_read; 409 read_leb128 (data, & bytes_read, 0); 410 data += bytes_read; 411 read_leb128 (data, & bytes_read, 0) 694 Int bytes_read, diridx; local 734 Int bytes_read; local [all...] |
| /external/bluetooth/glib/gio/xdgmime/ |
| xdgmimemagic.c | 320 int bytes_read; local 406 bytes_read = fread (matchlet->value, 1, matchlet->value_length, magic_file); 407 if (bytes_read != matchlet->value_length) 426 bytes_read = fread (matchlet->mask, 1, matchlet->value_length, magic_file); 427 if (bytes_read != matchlet->value_length)
|
| /external/dbus/tools/ |
| dbus-launch.c | 515 int bytes_read; local 520 bytes_read = read (tty_fd, discard, sizeof (discard)); 523 bytes_read, errno); 525 if (bytes_read == 0) 527 else if (bytes_read < 0 && errno != EINTR)
|
| /external/bison/src/ |
| scan-gram.l | 789 size_t bytes_read = fread (buf, 1, size, fp); 790 if (bytes_read) 792 char *w = memchr (buf, '\r', bytes_read); 796 char const *lim = buf + bytes_read; 825 return bytes_read; [all...] |
| /external/dbus/dbus/ |
| dbus-sysdeps-win.c | 187 int bytes_read; local 206 bytes_read = recv (fd, data, count, 0); 208 if (bytes_read == SOCKET_ERROR) 212 bytes_read = -1; 215 _dbus_verbose ("recv: = %d\n", bytes_read); 217 if (bytes_read < 0) 231 _dbus_string_set_length (buffer, start + bytes_read); 234 if (bytes_read > 0) 235 _dbus_verbose_bytes_of_string (buffer, start, bytes_read); 238 return bytes_read; 1686 int bytes_read = 0; local [all...] |
| dbus-sysdeps-unix.c | 261 int bytes_read; 298 bytes_read = recvmsg(fd, &m, 0 304 if (bytes_read < 0) 356 _dbus_string_set_length (buffer, start + bytes_read); 359 if (bytes_read > 0) 360 _dbus_verbose_bytes_of_string (buffer, start, bytes_read); 363 return bytes_read; 565 int bytes_read; local 583 bytes_read = read (fd, data, count); 585 if (bytes_read < 0 1589 int bytes_read; local [all...] |
| /external/chromium/net/ocsp/ |
| nss_ocsp.cc | 268 int bytes_read = 0; local 273 request_->Read(buffer_, kRecvBufferSize, &bytes_read); 275 OnReadCompleted(request_, bytes_read); 278 virtual void OnReadCompleted(net::URLRequest* request, int bytes_read) { 283 if (!request_->status().is_success() || bytes_read <= 0) 285 data_.append(buffer_->data(), bytes_read); 286 } while (request_->Read(buffer_, kRecvBufferSize, &bytes_read));
|
| /external/chromium/base/ |
| process_util_win.cc | 386 DWORD bytes_read = 0; local 387 BOOL success = ReadFile(out_read, buffer, kBufferSize, &bytes_read, NULL); 388 if (!success || bytes_read == 0) 390 output->append(buffer, bytes_read);
|
| process_util_posix.cc | 929 ssize_t bytes_read = 1; // A lie to properly handle |max_output == 0| local 933 bytes_read = HANDLE_EINTR(read(pipe_fd[0], buffer, 935 if (bytes_read <= 0) 937 output->append(buffer, bytes_read); 938 output_buf_left -= static_cast<size_t>(bytes_read); 948 if (output_buf_left || bytes_read <= 0) {
|
| /external/chromium/chrome/browser/extensions/ |
| user_script_listener_unittest.cc | 70 virtual bool OnReadCompleted(int request_id, int* bytes_read) {
|
| /external/chromium/chrome/browser/prerender/ |
| prerender_resource_handler_unittest.cc | 49 virtual bool OnReadCompleted(int request_id, int* bytes_read) {
|
| /external/e2fsprogs/lib/ext2fs/ |
| ext2_io.h | 62 unsigned long long bytes_read; member in struct:struct_io_stats
|
| /external/chromium/net/spdy/ |
| spdy_session.cc | 633 void SpdySession::OnReadComplete(int bytes_read) { 640 if (bytes_read <= 0) { 642 net::Error error = static_cast<net::Error>(bytes_read); 643 if (bytes_read == 0) 649 bytes_received_ += bytes_read; 660 while (bytes_read && 662 uint32 bytes_processed = spdy_framer_.ProcessInput(data, bytes_read); 663 bytes_read -= bytes_processed; 734 int bytes_read = connection_->socket()->Read(read_buffer_.get(), local 737 switch (bytes_read) { [all...] |
| /external/chromium/third_party/libjingle/source/talk/base/ |
| stream.cc | 563 size_t* bytes_read, int* error) { 574 if (bytes_read) { 575 *bytes_read = bytes; 759 size_t* bytes_read, int* error) { 774 if (bytes_read) { 775 *bytes_read = copy;
|
| /external/chromium/testing/gtest/src/ |
| gtest-death-test.cc | 387 int bytes_read; local 394 bytes_read = posix::Read(read_fd(), &flag, 1); 395 } while (bytes_read == -1 && errno == EINTR); 397 if (bytes_read == 0) { 399 } else if (bytes_read == 1) { [all...] |
| /external/llvm/utils/unittest/googletest/ |
| gtest-death-test.cc | 387 int bytes_read; local 394 bytes_read = posix::Read(read_fd(), &flag, 1); 395 } while (bytes_read == -1 && errno == EINTR); 397 if (bytes_read == 0) { 399 } else if (bytes_read == 1) { [all...] |
| /external/protobuf/gtest/src/ |
| gtest-death-test.cc | 374 int bytes_read; local 381 bytes_read = posix::Read(read_fd(), &flag, 1); 382 } while (bytes_read == -1 && errno == EINTR); 384 if (bytes_read == 0) { 386 } else if (bytes_read == 1) { [all...] |