HomeSort by relevance Sort by last modified time
    Searched refs:ListCommand (Results 1 - 7 of 7) sorted by null

  /frameworks/native/cmds/lshal/
ListCommand.cpp 17 #include "ListCommand.h"
57 NullableOStream<std::ostream> ListCommand::out() const {
61 NullableOStream<std::ostream> ListCommand::err() const {
65 std::string ListCommand::GetName() {
68 std::string ListCommand::getSimpleDescription() const {
72 std::string ListCommand::parseCmdline(pid_t pid) const {
76 const std::string &ListCommand::getCmdline(pid_t pid) {
85 void ListCommand::removeDeadProcesses(Pids *pids) {
92 Partition ListCommand::getPartition(pid_t pid) {
104 Partition ListCommand::resolvePartition(Partition process, const FQName& fqName) const
    [all...]
ListCommand.h 48 class ListCommand : public Command {
50 ListCommand(Lshal &lshal) : Command(lshal) {}
51 virtual ~ListCommand() = default;
69 std::function<Status(ListCommand* thiz, const char* arg)> op;
160 DISALLOW_COPY_AND_ASSIGN(ListCommand);
test.cpp 31 #include "ListCommand.h"
184 // expose protected fields and methods for ListCommand
185 class MockListCommand : public ListCommand {
187 MockListCommand(Lshal* lshal) : ListCommand(*lshal) {}
189 Status parseArgs(const Arg& arg) { return ListCommand::parseArgs(arg); }
190 Status main(const Arg& arg) { return ListCommand::main(arg); }
192 return ListCommand::forEachTable(f);
195 return ListCommand::forEachTable(f);
197 Status fetch() { return ListCommand::fetch(); }
199 return ListCommand::dumpVintf(out)
    [all...]
Lshal.cpp 29 #include "ListCommand.h"
49 mRegisteredCommands.push_back({std::make_unique<ListCommand>(*this)});
73 err() << std::endl << "If no command is specified, `" << ListCommand::GetName()
196 return selectCommand(ListCommand::GetName());
  /system/extras/simpleperf/
cmd_list.cpp 92 class ListCommand : public Command {
94 ListCommand()
119 bool ListCommand::Run(const std::vector<std::string>& args) {
161 void ListCommand::ShowFeatures() {
174 RegisterCommand("list", [] { return std::unique_ptr<Command>(new ListCommand); });
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
ListCommand.java 49 public class ListCommand extends Command {
55 public ListCommand(@Nonnull List<JCommander> commandAncestors) {
Main.java 88 ExtendedCommands.addExtendedCommand(jc, new ListCommand(commandHierarchy));

Completed in 186 milliseconds