Home | History | Annotate | Download | only in wds

Lines Matching full:command

30 #include "Command.h"
85 // End command section
88 class InternalCommand : public Command {
90 InternalCommand(const Command* comm, const Frame* frame,
92 : Command(*comm)
98 ALOGD("Executing command '%s' (%s)", m_name, m_description);
115 void Command::dispatch() {
119 Vector<const Command*>* Command::s_commands;
121 void Command::Init() {
126 s_commands = new Vector<const Command*>();
127 s_commands->append(new Command("DDOM", "Dump Dom Tree",
129 s_commands->append(new Command("DDRT", "Dump Render Tree",
133 Command* Command::Find(const Connection* conn) {
140 Vector<const Command*>::const_iterator i = s_commands->begin();
141 Vector<const Command*>::const_iterator end = s_commands->end();