Home
last modified time | relevance | path

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

/frameworks/native/cmds/lshal/
DListCommand.cpp74 NullableOStream<std::ostream> ListCommand::out() const { in out()
78 NullableOStream<std::ostream> ListCommand::err() const { in err()
82 std::string ListCommand::GetName() { in GetName()
85 std::string ListCommand::getSimpleDescription() const { in getSimpleDescription()
89 std::string ListCommand::parseCmdline(pid_t pid) const { in parseCmdline()
93 const std::string &ListCommand::getCmdline(pid_t pid) { in getCmdline()
104 void ListCommand::removeDeadProcesses(Pids *pids) { in removeDeadProcesses()
111 Partition ListCommand::getPartition(pid_t pid) { in getPartition()
124 Partition ListCommand::resolvePartition(Partition process, const FqInstance& fqInstance) const { in resolvePartition()
175 std::shared_ptr<const vintf::HalManifest> ListCommand::getDeviceManifest() const { in getDeviceManifest()
[all …]
DListCommand.h55 class ListCommand : public Command {
57 explicit ListCommand(Lshal &lshal) : Command(lshal) {} in ListCommand() function
58 virtual ~ListCommand() = default;
76 std::function<Status(ListCommand* thiz, const char* arg)> op;
201 DISALLOW_COPY_AND_ASSIGN(ListCommand);
DLshal.cpp51 mRegisteredCommands.push_back({std::make_unique<ListCommand>(*this)}); in Lshal()
77 err() << std::endl << "If no command is specified, `" << ListCommand::GetName() in usage()
201 return selectCommand(ListCommand::GetName()); in selectCommand()
Dtest.cpp241 class MockListCommand : public ListCommand {
243 explicit MockListCommand(Lshal* lshal) : ListCommand(*lshal) {} in MockListCommand()
245 Status parseArgs(const Arg& arg) { return ListCommand::parseArgs(arg); } in parseArgs()
246 Status main(const Arg& arg) { return ListCommand::main(arg); } in main()
248 return ListCommand::forEachTable(f); in forEachTable()
251 return ListCommand::forEachTable(f); in forEachTable()
253 Status fetch() { return ListCommand::fetch(); } in fetch()
255 return ListCommand::dumpVintf(out); in dumpVintf()
257 void internalPostprocess() { ListCommand::postprocess(); } in internalPostprocess()
259 return ListCommand::getPidInfoCached(serverPid); in getPidInfoCached()
DAndroid.bp43 "ListCommand.cpp",