Home
last modified time | relevance | path

Searched refs:buf1 (Results 1 – 1 of 1) sorted by relevance

/bootable/recovery/
Drecovery-persist.cpp135 std::array<uint8_t, 1024 * 16> buf1{}; in compare_file() local
141 const auto bytes_to_read = std::min<size_t>(bytes_remain, buf1.size()); in compare_file()
143 if (!android::base::ReadFully(fd1, buf1.data(), bytes_to_read)) { in compare_file()
151 if (memcmp(buf1.data(), buf2.data(), bytes_to_read) != 0) { in compare_file()