Home
last modified time | relevance | path

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

/frameworks/base/cmds/incidentd/src/
DSection.h43 const bool userdebugAndEngOnly; variable
47 Section(int id, int64_t timeoutMs = REMOTE_CALL_TIMEOUT_MS, bool userdebugAndEngOnly = false,
113 bool userdebugAndEngOnly = false);
143 DumpsysSection(int id, bool userdebugAndEngOnly, const char* service, ...);
DSection.cpp154 Section::Section(int i, int64_t timeoutMs, bool userdebugAndEngOnly, bool deviceSpecific) in Section() argument
157 userdebugAndEngOnly(userdebugAndEngOnly), in Section()
423 WorkerThreadSection::WorkerThreadSection(int id, const int64_t timeoutMs, bool userdebugAndEngOnly) in WorkerThreadSection() argument
424 : Section(id, timeoutMs, userdebugAndEngOnly) {} in WorkerThreadSection()
621 DumpsysSection::DumpsysSection(int id, bool userdebugAndEngOnly, const char* service, ...) in DumpsysSection() argument
622 : WorkerThreadSection(id, REMOTE_CALL_TIMEOUT_MS, userdebugAndEngOnly), mService(service) { in DumpsysSection()
DReporter.cpp182 if ((*section)->userdebugAndEngOnly && !isUserdebugOrEng) { in runReport()