HomeSort by relevance Sort by last modified time
    Searched refs:bytes_read (Results 251 - 275 of 322) sorted by null

<<111213

  /hardware/qcom/display/msm8996/sdm/libs/core/fb/
hw_hdmi.cpp 495 ssize_t bytes_read = 0; local
498 bytes_read = Sys::pread_(fd, config_buffer, kPageSize, 0);
502 DLOGI_IF(kTagDriverConfig, "bytes_read = %d", bytes_read);
504 return (bytes_read > 0);
  /hardware/qcom/display/msm8998/sdm/libs/core/fb/
hw_hdmi.cpp 579 ssize_t bytes_read = 0; local
582 bytes_read = Sys::pread_(fd, config_buffer, kPageSize, 0);
586 DLOGI_IF(kTagDriverConfig, "bytes_read = %d", bytes_read);
588 return (bytes_read > 0);
    [all...]
  /system/bt/btif/src/
btif_sock_l2cap.cc 634 uint32_t bytes_read = 0; local
649 bytes_read = p_buf->len;
667 bytes_read = count;
680 uid_set_add_rx(uid_set, app_uid, bytes_read);
    [all...]
  /test/vts/runners/target/gtest/
gtest_main.cpp 730 ssize_t bytes_read = TEMP_FAILURE_RETRY( local
732 if (bytes_read > 0) {
733 buf[bytes_read] = '\0';
735 } else if (bytes_read == 0) {
    [all...]
  /external/libxml2/
nanohttp.c 1277 int bytes_read = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
pyexpat.c 975 int bytes_read;
982 bytes_read = readinst(buf, BUF_SIZE, readmethod);
983 if (bytes_read < 0) {
988 rv = XML_ParseBuffer(self->itself, bytes_read, bytes_read == 0);
994 if (!rv || bytes_read == 0)
    [all...]
zipimport.c 853 Py_ssize_t bytes_read = 0; local
908 bytes_read = fread(buf, 1, data_size, fp);
915 if (err || bytes_read != data_size) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
pyexpat.c 975 int bytes_read;
982 bytes_read = readinst(buf, BUF_SIZE, readmethod);
983 if (bytes_read < 0) {
988 rv = XML_ParseBuffer(self->itself, bytes_read, bytes_read == 0);
994 if (!rv || bytes_read == 0)
    [all...]
zipimport.c 840 Py_ssize_t bytes_read = 0; local
885 bytes_read = fread(buf, 1, data_size, fp);
887 if (err || bytes_read != data_size) {
    [all...]
bz2module.c 259 int bytes_read; local
275 bytes_read = BZ2_bzRead(&bzerror, f->fp, &c, 1);
277 if (bytes_read == 0) break;
287 bytes_read = BZ2_bzRead(&bzerror, f->fp, &c, 1);
289 if (bytes_read == 0) break;
    [all...]
  /external/python/cpython2/Modules/
pyexpat.c 975 int bytes_read;
982 bytes_read = readinst(buf, BUF_SIZE, readmethod);
983 if (bytes_read < 0) {
988 rv = XML_ParseBuffer(self->itself, bytes_read, bytes_read == 0);
994 if (!rv || bytes_read == 0)
    [all...]
  /external/python/cpython3/Modules/
pyexpat.c 827 int bytes_read; local
834 bytes_read = readinst(buf, BUF_SIZE, readmethod);
835 if (bytes_read < 0) {
839 rv = XML_ParseBuffer(self->itself, bytes_read, bytes_read == 0);
845 if (!rv || bytes_read == 0)
    [all...]
  /external/tensorflow/tensorflow/core/platform/cloud/
gcs_file_system.cc 818 size_t bytes_read = request->GetResultBufferDirectBytesTransferred(); local
819 *bytes_transferred = bytes_read;
821 << offset << " of size: " << bytes_read; local
823 throttle_.RecordResponse(bytes_read);
825 if (bytes_read < block_size())
    [all...]
  /system/update_engine/payload_consumer/
delta_performer.cc 950 ssize_t bytes_read = 0; local
    [all...]
  /external/libmojo/mojo/edk/system/
channel.cc 573 bool Channel::OnReadComplete(size_t bytes_read, size_t *next_read_size_hint) {
575 read_buffer_->Claim(bytes_read);
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 787 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), buffer.size())); local
788 if (bytes_read == 0) {
790 } else if (bytes_read == -1) {
794 err = zip_writer_->WriteBytes(buffer.data(), bytes_read);
1770 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd.get(), buffer.data(), buffer.size())); local
    [all...]
  /system/core/init/
init.cpp 497 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(sigterm_signal_fd, &siginfo, sizeof(siginfo))); local
498 if (bytes_read != sizeof(siginfo)) {
  /system/extras/ioshark/
ioshark_bench_subr.c 330 (int)(rw_bytes->bytes_read / (1024 * 1024)),
334 (int)(rw_bytes->bytes_read / (1024 * 1024)),
  /bionic/tests/
gtest_main.cpp 775 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(child_proc.child_read_fd, buf, sizeof(buf) - 1)); local
776 if (bytes_read > 0) {
777 buf[bytes_read] = '\0';
779 } else if (bytes_read == 0) {
    [all...]
  /external/libmicrohttpd/src/microspdy/
session.c 868 int bytes_read; local
942 bytes_read = session->fio_recv(session,
946 switch(bytes_read)
974 session->read_buffer_offset += bytes_read;
    [all...]
  /external/pdfium/third_party/libtiff/
tif_read.c 74 tmsize_t bytes_read; local
109 bytes_read = TIFFReadFile(tif,
111 already_read += bytes_read;
112 if (bytes_read != to_read) {
    [all...]
  /hardware/qcom/display/msm8909/sdm/libs/core/fb/
hw_hdmi.cpp 608 ssize_t bytes_read = 0; local
611 bytes_read = Sys::pread_(fd, config_buffer, kPageSize, 0);
615 DLOGI_IF(kTagDriverConfig, "bytes_read = %d", bytes_read);
617 return (bytes_read > 0);
    [all...]
  /external/webrtc/webrtc/p2p/base/
pseudotcp.cc 536 size_t bytes_read = 0; local
538 buffer.get() + HEADER_SIZE, len, offset, &bytes_read);
541 ASSERT(static_cast<uint32_t>(bytes_read) == len);
    [all...]
  /hardware/qcom/media/msm8974/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;
  /system/bt/bta/hearing_aid/
hearing_aid.cc 920 uint16_t bytes_read = 0; local
922 GAP_ConnReadData(gap_handle, buffer.data(), buffer.size(), &bytes_read);
924 if (bytes_read < 4) {
    [all...]

Completed in 3110 milliseconds

<<111213