Home
last modified time | relevance | path

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

/system/core/fs_mgr/libsnapshot/
Dsnapuserd_worker.cpp74 WorkerThread::WorkerThread(const std::string& cow_device, const std::string& backing_device, in WorkerThread() function in android::snapshot::WorkerThread
85 bool WorkerThread::InitializeFds() { in InitializeFds()
107 bool WorkerThread::InitReader() { in InitReader()
120 void WorkerThread::ConstructKernelCowHeader() { in ConstructKernelCowHeader()
136 bool WorkerThread::ProcessReplaceOp(const CowOperation* cow_op) { in ProcessReplaceOp()
145 bool WorkerThread::ReadFromBaseDevice(const CowOperation* cow_op) { in ReadFromBaseDevice()
163 bool WorkerThread::GetReadAheadPopulatedBuffer(const CowOperation* cow_op) { in GetReadAheadPopulatedBuffer()
179 bool WorkerThread::ProcessCopyOp(const CowOperation* cow_op) { in ProcessCopyOp()
191 bool WorkerThread::ProcessZeroOp() { in ProcessZeroOp()
203 bool WorkerThread::ProcessCowOp(const CowOperation* cow_op) { in ProcessCowOp()
[all …]
Dsnapuserd.h153 class WorkerThread {
155 WorkerThread(const std::string& cow_device, const std::string& backing_device,
327 std::vector<std::unique_ptr<WorkerThread>> worker_threads_;
Dsnapuserd.cpp45 std::unique_ptr<WorkerThread> wt = std::make_unique<WorkerThread>( in InitializeWorkers()
696 std::async(std::launch::async, &WorkerThread::RunThread, worker_threads_[i].get())); in Start()