HomeSort by relevance Sort by last modified time
    Searched refs:ReadFully (Results 1 - 25 of 34) sorted by null

1 2

  /device/generic/goldfish/include/
qemud.h 73 if (!ReadFully(fd, answer, 2) ||
113 if (!ReadFully(fd, header, 4)) {
125 if (!ReadFully(fd, msg, size)) {
qemu_pipe.h 33 static bool ReadFully(int fd, void* data, size_t byte_count) {
  /device/google/dragon/crash_collector/
crash_dispatcher.cc 42 if (!android::base::ReadFully(STDIN_FILENO, buf_head, sizeof(buf_head))) {
  /system/core/base/include/android-base/
file.h 44 bool ReadFully(int fd, void* data, size_t byte_count);
  /art/compiler/linker/
output_stream_test.cc 74 bool readSuccess = in->ReadFully(&actual[0], actual.size());
89 bool readSuccess = in->ReadFully(&actual[0], actual.size());
  /bootable/recovery/
fuse_sdcard_provider.cpp 46 if (!android::base::ReadFully(fd->fd, buffer, fetch_size)) {
  /art/runtime/gc/space/
image_space_fs.h 138 if (!file->ReadFully(&num_failed_boots, sizeof(num_failed_boots))) {
  /frameworks/base/libs/androidfw/tests/
ApkAssets_test.cpp 89 ASSERT_TRUE(base::ReadFully(fd.get(), &*buffer.begin(), length));
  /bootable/recovery/tests/component/
uncrypt_test.cpp 113 ASSERT_TRUE(android::base::ReadFully(sockfd, &status, sizeof(int)));
173 ASSERT_TRUE(android::base::ReadFully(sockfd, &status, sizeof(int)));
  /art/runtime/base/unix_file/
fd_file.h 124 bool ReadFully(void* buffer, size_t byte_count) WARN_UNUSED;
fd_file.cc 259 bool FdFile::ReadFully(void* buffer, size_t byte_count) {
332 if (!input_file->ReadFully(buffer.get(), chunk_size) ||
fd_file_test.cc 78 EXPECT_FALSE(file.ReadFully(&buffer, 4));
  /bionic/tests/
pty_test.cpp 93 ASSERT_TRUE(android::base::ReadFully(arg->slave_fd, buf, to_read));
  /bootable/recovery/uncrypt/
uncrypt.cpp 351 if (!android::base::ReadFully(fd, buffers[tail].data(), to_read)) {
551 if (!android::base::ReadFully(socket, &length, 4)) {
560 if (!android::base::ReadFully(socket, &content[0], length)) {
681 if (android::base::ReadFully(socket_fd, &code, 4)) {
  /system/core/base/
file_test.cpp 108 ASSERT_TRUE(android::base::ReadFully(tf.fd, &s[0], s.size()))
115 ASSERT_FALSE(android::base::ReadFully(tf.fd, &s[0], s.size()));
file.cpp 148 bool ReadFully(int fd, void* data, size_t byte_count) {
  /system/extras/verity/fec/
image.cpp 231 if (!android::base::ReadFully(fd, header, sizeof(header))) {
275 if (!android::base::ReadFully(fd, ctx->fec, ctx->fec_size)) {
  /bootable/recovery/applypatch/
imgdiff.cpp 511 if (!android::base::ReadFully(fd, zip_file->data(), sz)) {
628 if (!android::base::ReadFully(fd, img->data(), sz)) {
796 if (!android::base::ReadFully(patch_fd, patch_data->data(), sz)) {
874 if (!android::base::ReadFully(fd, bonus_data.data(), bonus_size)) {
    [all...]
  /bootable/recovery/bootloader_message/
bootloader_message.cpp 86 if (!android::base::ReadFully(fd, p, size)) {
  /bootable/recovery/update_verifier/
update_verifier.cpp 153 if (!android::base::ReadFully(fd.get(), buf.data(), size)) {
  /system/extras/simpleperf/
event_fd.cpp 125 if (!android::base::ReadFully(perf_event_fd_, counter, sizeof(*counter))) {
  /system/nvram/hal/
fake_nvram_storage.cpp 105 if (!android::base::ReadFully(data_file_fd.get(), blob->data(),
  /system/core/debuggerd/
debuggerd_test.cpp 608 ASSERT_TRUE(android::base::ReadFully(output_fd.get(), &read_pid, sizeof(read_pid)));
675 ASSERT_TRUE(android::base::ReadFully(output_fd.get(), &read_pid, sizeof(read_pid)));
crash_dump.cpp 146 android::base::ReadFully(amfd, &ack, 1);
  /system/core/libziparchive/
zip_archive_test.cc 449 ASSERT_TRUE(android::base::ReadFully(tmp_output_file.fd, &file_contents[0],
495 ASSERT_TRUE(android::base::ReadFully(tmp_file.fd, read_buffer, data_size));
500 ASSERT_TRUE(android::base::ReadFully(tmp_file.fd, uncompressed_data.data(),

Completed in 2503 milliseconds

1 2