Home
last modified time | relevance | path

Searched refs:ListCommand (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/cmds/lshal/
DListCommand.cpp73 NullableOStream<std::ostream> ListCommand::out() const { in out()
77 NullableOStream<std::ostream> ListCommand::err() const { in err()
81 std::string ListCommand::GetName() { in GetName()
84 std::string ListCommand::getSimpleDescription() const { in getSimpleDescription()
88 std::string ListCommand::parseCmdline(pid_t pid) const { in parseCmdline()
92 const std::string &ListCommand::getCmdline(pid_t pid) { in getCmdline()
103 void ListCommand::removeDeadProcesses(Pids *pids) { in removeDeadProcesses()
110 Partition ListCommand::getPartition(pid_t pid) { in getPartition()
123 Partition ListCommand::resolvePartition(Partition process, const FqInstance& fqInstance) const { in resolvePartition()
174 std::shared_ptr<const vintf::HalManifest> ListCommand::getDeviceManifest() const { in getDeviceManifest()
[all …]
DListCommand.h57 class ListCommand : public Command {
59 explicit ListCommand(Lshal &lshal) : Command(lshal) {} in ListCommand() function
60 virtual ~ListCommand() = default;
78 std::function<Status(ListCommand* thiz, const char* arg)> op;
203 DISALLOW_COPY_AND_ASSIGN(ListCommand);
Dtest.cpp192 class MockListCommand : public ListCommand {
194 explicit MockListCommand(Lshal* lshal) : ListCommand(*lshal) {} in MockListCommand()
196 Status parseArgs(const Arg& arg) { return ListCommand::parseArgs(arg); } in parseArgs()
197 Status main(const Arg& arg) { return ListCommand::main(arg); } in main()
199 return ListCommand::forEachTable(f); in forEachTable()
202 return ListCommand::forEachTable(f); in forEachTable()
204 Status fetch() { return ListCommand::fetch(); } in fetch()
206 return ListCommand::dumpVintf(out); in dumpVintf()
208 void internalPostprocess() { ListCommand::postprocess(); } in internalPostprocess()
210 return ListCommand::getPidInfoCached(serverPid); in getPidInfoCached()
DLshal.cpp51 mRegisteredCommands.push_back({std::make_unique<ListCommand>(*this)}); in Lshal()
76 err() << std::endl << "If no command is specified, `" << ListCommand::GetName() in usage()
199 return selectCommand(ListCommand::GetName()); in selectCommand()
DAndroid.bp33 "ListCommand.cpp",