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

<<111213

  /external/libmicrohttpd/src/microhttpd/
connection.c 1660 int bytes_read; local
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 247 int bytes_read; local
263 bytes_read = BZ2_bzRead(&bzerror, f->fp, &c, 1);
265 if (bytes_read == 0) break;
275 bytes_read = BZ2_bzRead(&bzerror, f->fp, &c, 1);
277 if (bytes_read == 0) break;
    [all...]
  /hardware/intel/common/libmix/mix_audio/src/
mixaudio.c 1032 gint bytes_read; local
    [all...]
  /hardware/interfaces/wifi/1.2/default/
wifi_chip.cpp 201 ssize_t bytes_read = read(fd_read, read_buf.data(), read_buf.size()); local
202 if (bytes_read == -1) {
206 llen -= bytes_read;
207 if (write(out_fd, read_buf.data(), bytes_read) == -1) {
211 if (bytes_read == 0) { // this should never happen, but just in case
    [all...]
  /system/core/adb/
commandline.cpp 1049 ssize_t bytes_read = adb_read(fd, cur, bytes_left); local
    [all...]
sysdeps_win32.cpp 1618 const int bytes_read = std::min(len, g_console_input_buffer.size()); local
    [all...]
  /external/protobuf/python/google/protobuf/internal/
reflection_test.py     [all...]
  /external/ImageMagick/MagickCore/
nt-base.c 2335 bytes_read, local
    [all...]
  /frameworks/native/cmds/dumpstate/
utils.cpp 577 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, sizeof(buffer))); local
578 if (bytes_read == -1) {
582 if (bytes_read == 0) {
    [all...]
  /external/perfetto/src/ftrace_reader/
ftrace_controller.cc 385 writer->set_bytes_read(bytes_read);
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]
  /external/libvpx/libvpx/
vpxdec.c 201 static int raw_read_frame(FILE *infile, uint8_t **buffer, size_t *bytes_read,
240 *bytes_read = frame_size;
    [all...]
  /system/core/debuggerd/libdebuggerd/
tombstone.cpp 138 size_t bytes_read = process_memory->Read(*sp, stack_data, sizeof(word_t) * words); local
139 words = bytes_read / sizeof(word_t);
  /art/runtime/jit/
profile_compilation_info.cc     [all...]
  /external/stressapptest/src/
worker.cc 3093 int64 bytes_read = 0; local
    [all...]
  /external/blktrace/
blktrace.c 926 int bytes_read; local
930 bytes_read = __net_recv_data(nc->fd, bnh, sizeof(*bnh));
933 if (bytes_read == sizeof(*bnh))
935 else if (bytes_read == 0)
    [all...]
  /external/e2fsprogs/e2fsck/
e2fsck.h 148 unsigned long long bytes_read; member in struct:resource_track
  /external/v8/src/s390/
assembler-s390.cc 80 int bytes_read = 0; local
81 while (bytes_read >= 0) {
83 bytes_read = read(fd, buffer, sizeof(buffer));
86 auxv_element + sizeof(auxv_element) <= buffer + bytes_read &&
    [all...]
  /frameworks/native/cmds/installd/
dexopt.cpp 2336 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), buffer.size())); local
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc     [all...]
  /external/libmojo/mojo/edk/system/
multiprocess_message_pipe_unittest.cc 407 size_t bytes_read = local
409 fread_buffer.resize(bytes_read);
    [all...]
  /external/testng/ant/3rdparty/
DTDDoc.jar 
  /external/google-breakpad/src/processor/
minidump.cc 4433 std::streamsize bytes_read = stream_->gcount(); local
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_events.py 368 bytes_read = bytearray()
378 bytes_read.extend(data)
385 test_utils.run_until(self.loop, lambda: len(bytes_read) >= 3)
387 test_utils.run_until(self.loop, lambda: len(bytes_read) >= 6)
391 self.assertEqual(bytes_read, b'abcdef')
    [all...]

Completed in 3207 milliseconds

<<111213