Home
last modified time | relevance | path

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

/frameworks/base/cmds/incidentd/src/
DSection.h100 class CommandSection : public Section {
102 CommandSection(int id, int64_t timeoutMs, const char* command, ...);
104 CommandSection(int id, const char* command, ...);
106 virtual ~CommandSection();
DSection.cpp331 CommandSection::CommandSection(int id, const int64_t timeoutMs, const char* command, ...) in CommandSection() function in android::os::incidentd::CommandSection
344 CommandSection::CommandSection(int id, const char* command, ...) : Section(id) { in CommandSection() function in android::os::incidentd::CommandSection
356 CommandSection::~CommandSection() { free(mCommand); } in ~CommandSection()
358 status_t CommandSection::Execute(ReportWriter* writer) const { in Execute()