Home
last modified time | relevance | path

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

/system/core/fastboot/
Dtask.h30 class OptimizedFlashSuperTask; variable
42 virtual OptimizedFlashSuperTask* AsOptimizedFlashSuperTask() { return nullptr; } in AsOptimizedFlashSuperTask()
85 class OptimizedFlashSuperTask : public Task {
87 OptimizedFlashSuperTask(const std::string& super_name, std::unique_ptr<SuperFlashHelper> helper,
89 virtual OptimizedFlashSuperTask* AsOptimizedFlashSuperTask() override { return this; } in AsOptimizedFlashSuperTask()
91 static std::unique_ptr<OptimizedFlashSuperTask> Initialize(
Dtask.cpp109 OptimizedFlashSuperTask::OptimizedFlashSuperTask(const std::string& super_name, in OptimizedFlashSuperTask() function in OptimizedFlashSuperTask
119 void OptimizedFlashSuperTask::Run() { in Run()
134 std::string OptimizedFlashSuperTask::ToString() const { in ToString()
142 bool OptimizedFlashSuperTask::CanOptimize(const ImageSource* source, in CanOptimize()
163 std::unique_ptr<OptimizedFlashSuperTask> OptimizedFlashSuperTask::Initialize( in Initialize()
239 return std::make_unique<OptimizedFlashSuperTask>(super_name, std::move(helper), std::move(s), in Initialize()
Dtask_test.cpp301 ASSERT_EQ(OptimizedFlashSuperTask::CanOptimize(fp->source.get(), tasks), test.second); in TEST_F()
Dfastboot.cpp1767 if (auto flash_super_task = OptimizedFlashSuperTask::Initialize(fp, tasks)) { in ParseFastbootInfo()
1888 if (auto flash_super_task = OptimizedFlashSuperTask::Initialize(fp_, tasks)) { in CollectTasksFromImageList()