Home
last modified time | relevance | path

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

/aosp12/frameworks/native/cmds/lshal/
H A DListCommand.cpp80 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 …]
H A 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);
H A Dtest.cpp217 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()
H A 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()
203 return selectCommand(ListCommand::GetName()); in selectCommand()
H A DAndroid.bp43 "ListCommand.cpp",
/aosp12/system/extras/simpleperf/
H A Dcmd_list.cpp125 class ListCommand : public Command { class
127 ListCommand() in ListCommand() function in simpleperf::__anon4a9dba0b0110::ListCommand
153 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()