Lines Matching refs:timeoutMs
79 Section::Section(int i, int64_t timeoutMs) in Section() argument
81 timeoutMs(timeoutMs) { in Section()
89 FileSection::FileSection(int id, const char* filename, const int64_t timeoutMs) in FileSection() argument
90 : Section(id, timeoutMs), mFilename(filename) { in FileSection()
127 this->timeoutMs, mIsSysfs); in Execute()
208 fd.get(), std::move(p2cPipe.writeFd()), std::move(c2pPipe.readFd()), this->timeoutMs, in Execute()
252 WorkerThreadSection::WorkerThreadSection(int id, const int64_t timeoutMs) in WorkerThreadSection() argument
253 : Section(id, timeoutMs) {} in WorkerThreadSection()
291 err = buffer.read(data->pipe.readFd().get(), this->timeoutMs); in Execute()
331 CommandSection::CommandSection(int id, const int64_t timeoutMs, const char* command, ...) in CommandSection() argument
332 : Section(id, timeoutMs) { in CommandSection()
380 status_t readStatus = buffer.read(ihPipe.readFd().get(), this->timeoutMs); in Execute()
503 status_t readStatus = buffer.read(dumpPipe.readFd(), this->timeoutMs); in Execute()
586 return wait_child(pid, this->timeoutMs); in BlockingCall()
721 TombstoneSection::TombstoneSection(int id, const char* type, const int64_t timeoutMs) in TombstoneSection() argument
722 : WorkerThreadSection(id, timeoutMs), mType(type) { in TombstoneSection()