Home
last modified time | relevance | path

Searched refs:CommandSection (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/cmds/incidentd/src/
DSection.h98 class CommandSection : public Section {
100 CommandSection(int id, int64_t timeoutMs, const char* command, ...);
102 CommandSection(int id, const char* command, ...);
104 virtual ~CommandSection();
DSection.cpp366 CommandSection::CommandSection(int id, const int64_t timeoutMs, const char* command, ...) in CommandSection() function in android::os::incidentd::CommandSection
379 CommandSection::CommandSection(int id, const char* command, ...) : Section(id) { in CommandSection() function in android::os::incidentd::CommandSection
391 CommandSection::~CommandSection() { free(mCommand); } in ~CommandSection()
393 status_t CommandSection::Execute(ReportWriter* writer) const { in Execute()