Lines Matching refs:bytes_read
827 ssize_t bytes_read; in ReadFileDescriptor() local
832 bytes_read = Read(fd, &((*out)[i]), kBufSize); in ReadFileDescriptor()
833 if (bytes_read > 0) { in ReadFileDescriptor()
834 i += static_cast<size_t>(bytes_read); in ReadFileDescriptor()
837 return bytes_read == 0; in ReadFileDescriptor()
850 DWORD bytes_read = 0; in ReadPlatformHandle() local
851 auto res = ::ReadFile(h, &((*out)[i]), kBufSize, &bytes_read, nullptr); in ReadPlatformHandle()
852 if (res && bytes_read > 0) { in ReadPlatformHandle()
853 i += static_cast<size_t>(bytes_read); in ReadPlatformHandle()
856 const bool is_eof = res && bytes_read == 0; in ReadPlatformHandle()
13682 uint64_t bytes_read() const { return bytes_read_; } in bytes_read() function in perfetto::protos::gen::TraceStats_BufferStats
45926 stats_.set_bytes_read(stats_.bytes_read() + in ReadNextPacketInChunk()
45960 stats_.set_bytes_read(stats_.bytes_read() + in ReadNextPacketInChunk()
45974 stats_.set_bytes_read(stats_.bytes_read() + chunk_meta->chunk_record->size); in ReadNextPacketInChunk()
47526 uint64_t bytes_read() const { return at<14>().as_uint64(); } in bytes_read() function in perfetto::protos::pbzero::TraceStats_BufferStats_Decoder