Lines Matching refs:DumpPool
34 const std::string DumpPool::PREFIX_TMPFILE_NAME = "dump-tmp.";
36 DumpPool::DumpPool(const std::string& tmp_root) : tmp_root_(tmp_root), shutdown_(false), in DumpPool() function in android::os::dumpstate::DumpPool
42 DumpPool::~DumpPool() { in ~DumpPool()
46 void DumpPool::start(int thread_counts) { in start()
62 void DumpPool::shutdown() { in shutdown()
82 void DumpPool::waitForTask(const std::string& task_name, const std::string& title, in waitForTask()
103 void DumpPool::deleteTempFiles() { in deleteTempFiles()
107 void DumpPool::setLogDuration(bool log_duration) { in setLogDuration()
112 void DumpPool::invokeTask<std::function<void()>>(std::function<void()> dump_func, in invokeTask()
120 void DumpPool::invokeTask<std::function<void(int)>>(std::function<void(int)> dump_func, in invokeTask()
127 std::unique_ptr<DumpPool::TmpFile> DumpPool::createTempFile() { in createTempFile()
142 void DumpPool::deleteTempFiles(const std::string& folder) { in deleteTempFiles()
172 void DumpPool::setThreadName(const pthread_t thread, int id) { in setThreadName()
178 void DumpPool::loop() { in loop()