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);
81 const std::function<void(float)>& set_progress);
105 const std::string& path, const std::function<void(float)>& set_progress) { in CreateMemoryPackage() argument
112 return std::make_unique<MemoryPackage>(path, std::move(mmap), set_progress); in CreateMemoryPackage()
116 const std::string& path, const std::function<void(float)>& set_progress) { in CreateFilePackage() argument
129 return std::make_unique<FilePackage>(std::move(fd), file_size, path, set_progress); in CreateFilePackage()
133 std::vector<uint8_t> content, const std::function<void(float)>& set_progress) { in CreateMemoryPackage() argument
134 return std::make_unique<MemoryPackage>(std::move(content), set_progress); in CreateMemoryPackage()
138 const std::function<void(float)>& set_progress) in MemoryPackage() argument
[all …]
/bootable/recovery/install/include/install/
Dpackage.h36 const std::string& path, const std::function<void(float)>& set_progress);
38 std::vector<uint8_t> content, const std::function<void(float)>& set_progress);
40 const std::function<void(float)>& set_progress);
/bootable/recovery/tests/component/
Dupdater_test.cpp555 TEST_F(UpdaterTest, set_progress) { in TEST_F() argument