Searched refs:ListCommand (Results 1 – 6 of 6) sorted by relevance
80 std::string ListCommand::GetName() { in GetName()205 bool ListCommand::getPidInfo( in getPidInfo()257 void ListCommand::postprocess() { in postprocess()484 Status ListCommand::dump() { in dump()485 auto dump = mVintf ? &ListCommand::dumpVintf : &ListCommand::dumpTable; in dump()707 Status ListCommand::fetchManifestHals() { in fetchManifestHals()738 Status ListCommand::fetchLazyHals() { in fetchLazyHals()795 Status ListCommand::fetch() { in fetch()819 void ListCommand::initFetchTypes() { in initFetchTypes()847 void ListCommand::registerAllOptions() { in registerAllOptions()[all …]
55 class ListCommand : public Command {57 explicit ListCommand(Lshal &lshal) : Command(lshal) {} in ListCommand() function58 virtual ~ListCommand() = default;76 std::function<Status(ListCommand* thiz, const char* arg)> op;201 DISALLOW_COPY_AND_ASSIGN(ListCommand);
217 class MockListCommand : public ListCommand {219 explicit MockListCommand(Lshal* lshal) : ListCommand(*lshal) {} in MockListCommand()221 Status parseArgs(const Arg& arg) { return ListCommand::parseArgs(arg); } in parseArgs()222 Status main(const Arg& arg) { return ListCommand::main(arg); } in main()224 return ListCommand::forEachTable(f); in forEachTable()227 return ListCommand::forEachTable(f); in forEachTable()229 Status fetch() { return ListCommand::fetch(); } in fetch()231 return ListCommand::dumpVintf(out); in dumpVintf()233 void internalPostprocess() { ListCommand::postprocess(); } in internalPostprocess()235 return ListCommand::getPidInfoCached(serverPid); in getPidInfoCached()
51 mRegisteredCommands.push_back({std::make_unique<ListCommand>(*this)}); in Lshal()77 err() << std::endl << "If no command is specified, `" << ListCommand::GetName() in usage()203 return selectCommand(ListCommand::GetName()); in selectCommand()
43 "ListCommand.cpp",
125 class ListCommand : public Command { class127 ListCommand() in ListCommand() function in simpleperf::__anon4a9dba0b0110::ListCommand153 bool ListCommand::Run(const std::vector<std::string>& args) { in Run()202 void ListCommand::ShowFeatures() { in ShowFeatures()217 RegisterCommand("list", [] { return std::unique_ptr<Command>(new ListCommand); }); in RegisterListCommand()