HomeSort by relevance Sort by last modified time
    Searched defs:bytes_read (Results 151 - 175 of 254) sorted by null

1 2 3 4 5 67 8 91011

  /external/lldb/source/Core/
ConnectionFileDescriptor.cpp 416 ssize_t bytes_read = 0;
423 bytes_read = ::read (m_fd_recv, dst, dst_len);
424 } while (bytes_read < 0 && errno == EINTR);
431 if (bytes_read == 0)
436 else if (bytes_read < 0)
451 (int64_t)bytes_read,
501 return bytes_read;
752 ssize_t bytes_read; local
756 bytes_read = ::read (pipe_fd, buffer, sizeof(buffer));
757 } while (bytes_read < 0 && errno == EINTR)
    [all...]
EmulateInstruction.cpp 187 size_t bytes_read = m_read_mem_callback (this, m_baton, context, addr, buf, byte_size); local
188 if (bytes_read == byte_size)
Value.cpp 596 const size_t bytes_read = process->ReadMemory(address, dst, byte_size, error); local
597 if (bytes_read != byte_size)
600 (uint32_t)bytes_read,
  /external/lldb/source/Host/common/
File.cpp 475 ssize_t bytes_read = -1; local
480 bytes_read = ::read (m_descriptor, buf, num_bytes);
481 } while (bytes_read < 0 && errno == EINTR);
483 if (bytes_read == -1)
489 num_bytes = bytes_read;
493 bytes_read = ::fread (buf, 1, num_bytes, m_stream);
495 if (bytes_read == 0)
504 num_bytes = bytes_read;
566 ssize_t bytes_read = -1; local
569 bytes_read = ::pread (fd, buf, num_bytes, offset)
    [all...]
  /external/lldb/source/Host/freebsd/
Host.cpp 107 ssize_t bytes_read = ::read (backtrace_fd, buffer, buffer_size); local
108 if (bytes_read > 0)
109 strm.Write(buffer, bytes_read);
  /external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
ItaniumABILanguageRuntime.cpp 81 size_t bytes_read = process->ReadMemory (original_ptr, local
85 if (!error.Success() || (bytes_read != address_byte_size))
239 size_t bytes_read = process->ReadMemory (offset_to_top_location, local
244 if (!error.Success() || (bytes_read != address_byte_size))
  /external/lldb/source/Plugins/Process/gdb-remote/
GDBRemoteCommunication.cpp 298 size_t bytes_read = Read (buffer, sizeof(buffer), timeout_usec, status, &error); local
301 log->Printf ("%s: Read (buffer, (sizeof(buffer), timeout_usec = 0x%x, status = %s, error = %s) => bytes_read = %" PRIu64,
306 (uint64_t)bytes_read);
308 if (bytes_read > 0)
310 if (CheckForPacket (buffer, bytes_read, packet))
  /external/lldb/source/Symbol/
ObjectFile.cpp 440 const size_t bytes_read = process_sp->ReadMemory (addr, local
444 if (bytes_read == byte_size)
  /external/lldb/source/Target/
RegisterContext.cpp 339 const uint32_t bytes_read = process_sp->ReadMemory (src_addr, src, src_len, error); local
342 if (bytes_read != src_len)
347 error.SetErrorStringWithFormat("read %u of %u bytes", bytes_read, src_len);
  /external/openssl/apps/
s_time.c 134 static long bytes_read=0; variable
157 bytes_read=0;
396 bytes_read=0;
419 bytes_read+=i;
453 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
454 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn);
489 bytes_read=0;
512 bytes_read+=i;
543 printf( "\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double)nConn/totalTime),bytes_read);
544 printf( "%d connections in %ld real seconds, %ld bytes read per connection\n",nConn,(long)time(NULL)-finishtime+maxTime,bytes_read/nConn)
    [all...]
  /external/sfntly/cpp/src/test/
font_data_test.cc 158 int32_t bytes_read = rfd->ReadBytes(index, &(buffer[0]), 0, buffer.size()); local
159 EXPECT_GE(bytes_read, 0);
160 std::copy(buffer.begin(), buffer.begin() + bytes_read, b->begin() + index);
161 index += bytes_read;
172 int32_t bytes_read = local
174 EXPECT_GE(bytes_read, 0);
175 index += bytes_read;
205 int32_t bytes_read = rfd->ReadBytes(index, &(b[0]), index, sliding_size); local
207 index += bytes_read;
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/test/
decoder_driver_test.c 1069 int bytes_read = 0; local
1088 bytes_read = fread(&dataptr[readOffset],1, 1,inputBufferFile);
1089 if( !bytes_read)
1169 int bytes_read=0; local
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/test/
video_encoder_test.c 1047 int bytes_read = 0; local
1060 bytes_read = fread(&dataptr[readOffset],1,length,inputBufferFile);
1063 return bytes_read;
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/
decoder_driver_test.c 1006 int bytes_read = 0; local
1098 int bytes_read=0; local
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/
QCameraMjpegDecode.cpp 622 int bytes_to_read, bytes_read, rc; local
632 bytes_read = 0;
644 bytes_read = bytes_to_read;
648 return bytes_read;
  /external/chromium_org/base/files/
file_path_watcher_linux.cc 232 ssize_t bytes_read = HANDLE_EINTR(read(inotify_fd, &buffer[0], local
235 if (bytes_read < 0) {
241 while (i < bytes_read) {
244 DCHECK(i + event_size <= static_cast<size_t>(bytes_read));
  /external/chromium_org/media/base/
yuv_convert_unittest.cc 64 int bytes_read = base::ReadFile( local
66 CHECK_EQ(bytes_read, expected_size);
    [all...]
  /external/chromium_org/mojo/public/cpp/utility/tests/
run_loop_unittest.cc 352 uint32_t bytes_read = 1; local
356 &read_byte, &bytes_read, NULL, &handles_read,
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs_node.cc 290 off_t bytes_read; local
291 error = DownloadToTemp(&bytes_read);
295 SetCachedSize(bytes_read);
413 int bytes_read; local
414 error = ReadEntireResponseToCache(loader, &bytes_read);
418 SetCachedSize(bytes_read);
518 int bytes_read; local
519 error = ReadResponseToTemp(loader, bytes_to_read, &bytes_read);
524 if (bytes_read < bytes_to_read) {
573 int bytes_read; local
597 int bytes_read; local
631 int bytes_read; local
659 int bytes_read = local
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
jspipe_test.cc 250 int bytes_read; local
259 ASSERT_EQ(0, pipe_dev_->Read(attrs, buffer, 5, &bytes_read));
260 EXPECT_EQ(5, bytes_read);
267 &bytes_read));
268 EXPECT_EQ(bytes_read, message.size() - 5);
394 int bytes_read = -1; local
396 ASSERT_EQ(0, pipe_dev_->Read(attrs, message, 5, &bytes_read));
397 ASSERT_EQ(5, bytes_read);
  /external/chromium_org/net/tools/quic/test_tools/
quic_test_client.cc 482 size_t QuicTestClient::bytes_read() const { function in class:net::tools::test::QuicTestClient
  /external/chromium_org/net/url_request/
url_request_test_util.cc 258 int bytes_read = 0; local
259 if (request->Read(buf_.get(), kBufferSize, &bytes_read))
260 OnReadCompleted(request, bytes_read);
266 void TestDelegate::OnReadCompleted(URLRequest* request, int bytes_read) {
276 if (bytes_read >= 0) {
278 received_bytes_count_ += bytes_read;
281 data_received_.append(buf_->data(), bytes_read);
285 if (request->status().is_success() && bytes_read > 0) {
286 bytes_read = 0;
287 while (request->Read(buf_.get(), kBufferSize, &bytes_read)) {
    [all...]
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 440 uptr bytes_read = (result ? result - str : REAL(strlen)(str)) + 1; local
441 ASAN_READ_RANGE(str, bytes_read);
  /external/e2fsprogs/e2fsck/
util.c 347 track->bytes_read = 0;
352 track->bytes_read = io_start->bytes_read;
417 unsigned long long bytes_read = 0; local
425 bytes_read = delta->bytes_read - track->bytes_read;
431 mbytes(bytes_read), mbytes(bytes_written),
432 (double)mbytes(bytes_read + bytes_written) /
  /external/lldb/source/Host/linux/
Host.cpp 77 size_t bytes_read = 0; local
82 size_t avail = buf_ap->GetByteSize() - bytes_read;
83 ssize_t status = read (fd, buf_ap->GetBytes() + bytes_read, avail);
90 buf_ap->SetByteSize (bytes_read);
95 bytes_read += status;

Completed in 2643 milliseconds

1 2 3 4 5 67 8 91011