HomeSort by relevance Sort by last modified time
    Searched refs:stash_reader (Results 1 - 3 of 3) sorted by null

  /bootable/recovery/tests/unit/
commands_test.cpp 446 auto stash_reader = [](const std::string&, std::vector<uint8_t>*) -> int { return 0; }; local
448 ASSERT_TRUE(source.ReadAll(&buffer, kBlockSize, block_reader, stash_reader));
465 auto stash_reader = [](const std::string&, std::vector<uint8_t>* stash_buffer) -> int { local
470 ASSERT_TRUE(source.ReadAll(&buffer, kBlockSize, block_reader, stash_reader));
482 auto stash_reader = [](const std::string&, std::vector<uint8_t>*) -> int { return 0; }; local
484 ASSERT_FALSE(source.ReadAll(&buffer, kBlockSize, block_reader, stash_reader));
493 auto stash_reader = [](const std::string&, std::vector<uint8_t>*) -> int { return 0; }; local
494 ASSERT_FALSE(source.ReadAll(&buffer, kBlockSize, failing_block_reader, stash_reader));
  /bootable/recovery/updater/
commands.cpp 334 const std::function<int(const std::string&, std::vector<uint8_t>*)>& stash_reader) const {
352 if (stash_reader(stash.id(), &stash_buffer) != 0) {
  /bootable/recovery/updater/include/private/
commands.h 120 // 'stash_reader' read the specified data into the given buffer (guaranteed to be large enough)
125 const std::function<int(const std::string&, std::vector<uint8_t>*)>& stash_reader) const;

Completed in 505 milliseconds