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

1 2 3 4 5 6 78 91011>>

  /external/e2fsprogs/resize/
resize2fs.h 98 unsigned long long bytes_read; member in struct:resource_track
  /external/webrtc/webrtc/base/
stream.h 433 size_t* bytes_read,
515 size_t* bytes_read);
528 size_t* bytes_read,
545 size_t* bytes_read);
  /hardware/libhardware/include/hardware/
nvram.h 268 * bytes_read - The number of bytes read. If NV_RESULT_SUCCESS is
276 uint8_t* buffer, uint64_t* bytes_read);
  /system/extras/ioshark/
ioshark_bench.h 63 u_int64_t bytes_read; member in struct:rw_bytes_s
ioshark_bench_mmap.c 118 rw_bytes->bytes_read += len;
149 rw_bytes->bytes_read += len;
  /external/curl/docs/examples/
http2-upload.c 171 size_t bytes_read; /* count up */ member in struct:input
179 i->bytes_read += retcode;
  /external/fio/exp/
expression-parser.y 191 int lexer_input(char* buffer, unsigned int *bytes_read, int bytes_requested)
198 *bytes_read = bytes_requested;
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
fusion_merger.cc 120 const double bytes_read = CalculateBytesReadByFusionInstruction(fusion); local
133 return bytes_read + bytes_written * (fusion->user_count() + 1);
  /hardware/qcom/audio/hal/
platform_info.c 931 int bytes_read; local
974 bytes_read = fread(buf, 1, kBufSize, file);
975 if (bytes_read < 0) {
976 ALOGE("%s: fread failed, bytes read = %d", __func__, bytes_read);
977 ret = bytes_read;
981 if (XML_ParseBuffer(parser, bytes_read
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
sysinfo.cc 347 size_t bytes_read = fread(buff, 1, sizeof(buff), file); local
349 if (memprefix(buff, bytes_read, "performance") == nullptr) return true;
  /system/bt/btif/src/
btif_a2dp_control.cc 425 void btif_a2dp_control_log_bytes_read(uint32_t bytes_read) {
426 delay_report_stats.total_bytes_read += bytes_read;
btif_a2dp_source.cc 329 uint32_t bytes_read);
861 uint32_t bytes_read = local
864 if (bytes_read < len) {
866 bytes_read, len);
868 (len - bytes_read);
874 return bytes_read;
878 uint32_t bytes_read) {
880 btif_a2dp_control_log_bytes_read(bytes_read);
    [all...]
  /system/update_engine/payload_generator/
ab_generator_unittest.cc 158 ssize_t bytes_read; local
163 &bytes_read));
164 ASSERT_EQ(bytes_read, static_cast<ssize_t>(first_op.data_length()));
192 &bytes_read));
193 ASSERT_EQ(bytes_read, static_cast<ssize_t>(second_op.data_length()));
323 ssize_t bytes_read; local
328 &bytes_read));
329 ASSERT_EQ(static_cast<ssize_t>(new_op.data_length()), bytes_read); local
  /hardware/nxp/secure_element/ls_client/src/
LsLib.cpp 397 Os_info->bytes_read = 0;
405 while (!feof(Os_info->fp) && (Os_info->bytes_read < Os_info->fls_size)) {
574 while (!feof(Os_info->fp) && (Os_info->bytes_read < Os_info->fls_size)) {
670 Os_info->bytes_read = Os_info->bytes_read + (wCount * 2);
683 Os_info->bytes_read = Os_info->bytes_read + (wCount * 2);
717 Os_info->bytes_read = Os_info->bytes_read + (wCount * 2);
731 Os_info->bytes_read = Os_info->bytes_read + (wCount * 2)
    [all...]
  /external/google-breakpad/src/common/windows/
omap.cc 190 DWORD bytes_read = 0; local
192 if (FAILED(stream->Next(count, 0, &bytes_read, NULL, &count_read))) {
200 if (count * sizeof(OmapTable::value_type) != bytes_read) {
207 bytes_read = 0;
209 if (FAILED(stream->Next(count, bytes_expected, &bytes_read,
  /external/tensorflow/tensorflow/core/platform/windows/
windows_file_system.cc 70 unsigned long bytes_read = 0; local
74 &bytes_read, &overlapped);
76 result = bytes_read;
82 last_error) { // Otherwise bytes_read already has the result.
84 ::GetOverlappedResult(hfile, &overlapped, &bytes_read, TRUE);
88 result = bytes_read;
  /art/dex2oat/
dex2oat_image_test.cc 219 ssize_t bytes_read = 0; local
221 while (TEMP_FAILURE_RETRY(bytes_read = read(link[0], buffer, 128)) > 0) {
222 *error_msg += std::string(buffer, bytes_read);
  /external/e2fsprogs/lib/support/
quotaio.c 192 unsigned int bytes_read = 0; local
201 err = ext2fs_file_read(e2_file, buf, size, &bytes_read);
207 return bytes_read;
  /external/google-breakpad/src/client/windows/crash_generation/
minidump_generator.cc 364 SIZE_T bytes_read = 0; local
369 &bytes_read)) {
378 if (bytes_read != sizeof(client_assert_info)) {
  /external/syslinux/core/fs/pxe/
pxe.c 203 int bytes_read = 0; local
218 bytes_read += chunk;
234 return bytes_read;
  /system/nvram/hal/
nvram_device_adapter.cpp 244 uint64_t* bytes_read) {
254 *bytes_read = std::min(static_cast<size_t>(num_bytes_to_read),
256 memcpy(buffer, read_space_response.buffer.data(), *bytes_read);
  /device/google/marlin/camera/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/e2fsprogs/lib/ext2fs/
ext2_io.h 69 unsigned long long bytes_read; member in struct:struct_io_stats
  /external/libbrillo/brillo/streams/
stream.h 409 // situation in which it would block (bytes_read = 0 and eos = false),
426 size_t bytes_read,
  /external/libchrome/base/files/
file_path_watcher_linux.cc 227 ssize_t bytes_read = HANDLE_EINTR(read(inotify_fd, &buffer[0], local
230 if (bytes_read < 0) {
236 while (i < bytes_read) {
239 DCHECK(i + event_size <= static_cast<size_t>(bytes_read));

Completed in 708 milliseconds

1 2 3 4 5 6 78 91011>>