Searched refs:set_progress (Results 1 – 3 of 3) sorted by relevance
/bootable/recovery/install/ |
D | package.cpp | 36 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/ |
D | package.h | 41 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/ |
D | updater_test.cpp | 585 TEST_F(UpdaterTest, set_progress) { in TEST_F() argument
|