HomeSort by relevance Sort by last modified time
    Searched refs:bytes_read (Results 201 - 225 of 280) sorted by null

1 2 3 4 5 6 7 891011>>

  /device/google/marlin/dataservices/rmnetctl/src/
librmnetctl.c 111 ssize_t bytes_read = -1; local
174 bytes_read = recvfrom(hndl->netlink_fd,
180 if (bytes_read < 0) {
  /device/huawei/angler/dataservices/rmnetctl/src/
librmnetctl.c 108 ssize_t bytes_read = -1; local
171 bytes_read = recvfrom(hndl->netlink_fd,
177 if (bytes_read < 0) {
  /device/lge/bullhead/dataservices/rmnetctl/src/
librmnetctl.c 109 ssize_t bytes_read = -1; local
172 bytes_read = recvfrom(hndl->netlink_fd,
178 if (bytes_read < 0) {
  /external/libchrome/base/process/
launch_posix.cc 616 ssize_t bytes_read = local
618 if (bytes_read <= 0)
620 output->append(buffer, bytes_read);
  /external/webrtc/webrtc/call/
rtc_event_log.cc 503 int bytes_read = 0;
509 while ((bytes_read = dump_file->Read(tmp_buffer, sizeof(tmp_buffer))) > 0) {
510 dump_buffer.append(tmp_buffer, bytes_read);
  /system/update_engine/payload_generator/
payload_signer.cc 289 size_t bytes_read = payload_metadata.size(); local
292 payload_file->ReadAllBlocking(payload_metadata.data() + bytes_read,
293 payload_metadata.size() - bytes_read,
  /external/libbrillo/brillo/streams/
stream.cc 235 size_t bytes_read,
238 success_callback.Run(bytes_read, eos);
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 723 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer.data(), buffer.size())); local
724 if (bytes_read == 0) {
726 } else if (bytes_read == -1) {
730 err = zip_writer_->WriteBytes(buffer.data(), bytes_read);
1325 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd.get(), buffer.data(), buffer.size())); local
    [all...]
  /hardware/qcom/audio/hal/audio_extn/
sndmonitor.c 153 ssize_t bytes_read; local
173 while ((bytes_read = getline(&line, &len, fp) != -1)) {
  /external/curl/lib/
smb.c 292 ssize_t bytes_read; local
298 result = Curl_read(conn, FIRSTSOCKET, buf + smbc->got, len, &bytes_read);
302 if(!bytes_read)
305 smbc->got += bytes_read;
  /external/google-breakpad/src/common/linux/
dump_symbols.cc 479 ssize_t bytes_read = HANDLE_EINTR(read(debuglink_fd, &buf, kReadSize)); local
480 if (bytes_read < 0) {
485 if (bytes_read == 0)
487 actual_crc = google_breakpad::UpdateCrc32(actual_crc, buf, bytes_read);
    [all...]
  /frameworks/native/cmds/atrace/
atrace.cpp 877 ssize_t bytes_read = read(traceFD, trace_data, 4096); local
878 if (bytes_read > 0) {
879 write(STDOUT_FILENO, trace_data, bytes_read);
884 bytes_read, errno, strerror(errno));
    [all...]
  /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 470 ssize_t bytes_read = 0; local
473 bytes_read = Sys::pread_(fd, config_buffer, kPageSize, 0);
477 DLOGI_IF(kTagDriverConfig, "bytes_read = %d", bytes_read);
479 return (bytes_read > 0);
  /system/bt/btif/src/
btif_sock_l2cap.cc 685 uint32_t bytes_read = 0; local
700 bytes_read = p_buf->len;
719 bytes_read = count;
733 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...]
  /art/runtime/jit/
profile_compilation_info.cc 710 int bytes_read = TEMP_FAILURE_RETRY(read(fd, buffer, byte_count));
711 if (bytes_read == 0) {
714 } else if (bytes_read < 0) {
718 byte_count -= bytes_read;
719 buffer += bytes_read;
    [all...]
  /external/bison/src/
scan-gram.c 3530 size_t bytes_read = fread (buf, 1, size, fp); local
    [all...]
  /external/libxml2/
nanohttp.c 1269 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...]
  /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...]
  /external/libmojo/mojo/edk/system/
channel.cc 491 bool Channel::OnReadComplete(size_t bytes_read, size_t *next_read_size_hint) {
493 read_buffer_->Claim(bytes_read);
  /system/extras/ioshark/
ioshark_bench_subr.c 327 (int)(rw_bytes->bytes_read / (1024 * 1024)),
331 (int)(rw_bytes->bytes_read / (1024 * 1024)),
  /bionic/tests/
gtest_main.cpp 793 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(child_proc.child_read_fd, buf, sizeof(buf) - 1)); local
794 if (bytes_read > 0) {
795 buf[bytes_read] = '\0';
797 } 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...]

Completed in 2041 milliseconds

1 2 3 4 5 6 7 891011>>