Home
last modified time | relevance | path

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

/bootable/recovery/install/
Dpackage.cpp36 const std::function<void(float)>& set_progress);
39 MemoryPackage(std::vector<uint8_t> content, const std::function<void(float)>& set_progress);
89 const std::function<void(float)>& set_progress);
121 const std::string& path, const std::function<void(float)>& set_progress) { in CreateMemoryPackage() argument
128 return std::make_unique<MemoryPackage>(path, std::move(mmap), set_progress); in CreateMemoryPackage()
132 const std::string& path, const std::function<void(float)>& set_progress) { in CreateFilePackage() argument
145 return std::make_unique<FilePackage>(std::move(fd), file_size, path, set_progress); in CreateFilePackage()
149 std::vector<uint8_t> content, const std::function<void(float)>& set_progress) { in CreateMemoryPackage() argument
150 return std::make_unique<MemoryPackage>(std::move(content), set_progress); in CreateMemoryPackage()
154 const std::function<void(float)>& set_progress) in MemoryPackage() argument
[all …]
/bootable/recovery/install/include/install/
Dpackage.h41 const std::string& path, const std::function<void(float)>& set_progress);
43 std::vector<uint8_t> content, const std::function<void(float)>& set_progress);
45 const std::function<void(float)>& set_progress);
/bootable/recovery/tests/unit/
Dupdater_test.cpp585 TEST_F(UpdaterTest, set_progress) { in TEST_F() argument