Home
last modified time | relevance | path

Searched refs:Lshal (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/cmds/lshal/
DLshal.cpp37 Lshal::Lshal() in Lshal() function in android::lshal::Lshal
38 : Lshal(std::cout, std::cerr, ::android::hardware::defaultServiceManager(), in Lshal()
42 Lshal::Lshal(std::ostream &out, std::ostream &err, in Lshal() function in android::lshal::Lshal
54 void Lshal::forEachCommand(const std::function<void(const Command* c)>& f) const { in forEachCommand()
58 void Lshal::usage() { in usage()
97 Status Lshal::emitDebugInfo( in emitDebugInfo()
165 Status Lshal::parseArgs(const Arg &arg) { in parseArgs()
194 Command* Lshal::selectCommand(const std::string& command) const { in selectCommand()
206 Status Lshal::main(const Arg &arg) { in main()
233 NullableOStream<std::ostream> Lshal::err() const { in err()
[all …]
DLshal.h35 class Lshal {
37 Lshal();
38 virtual ~Lshal() {} in ~Lshal()
39 Lshal(std::ostream &out, std::ostream &err,
74 DISALLOW_COPY_AND_ASSIGN(Lshal);
DCommand.h25 class Lshal; variable
30 explicit Command(Lshal& lshal) : mLshal(lshal) {} in Command()
45 Lshal& mLshal;
DHelpCommand.h30 class Lshal; variable
34 explicit HelpCommand(Lshal &lshal) : Command(lshal) {} in HelpCommand()
DDebugCommand.h30 class Lshal; variable
34 explicit DebugCommand(Lshal &lshal) : Command(lshal) {} in DebugCommand()
Dmain.cpp21 return Lshal{}.main(Arg{argc, argv}); in main()
Dtest.cpp140 lshal = std::make_unique<Lshal>(out, err, serviceManager, serviceManager); in SetUp()
148 std::unique_ptr<Lshal> lshal;
183 class MockLshal : public Lshal {
194 explicit MockListCommand(Lshal* lshal) : ListCommand(*lshal) {} in MockListCommand()
332 lshal = std::make_unique<Lshal>(out, err, serviceManager, passthruManager); in SetUp()
400 std::unique_ptr<Lshal> lshal;
826 lshal = std::make_unique<Lshal>(out, err, new MockServiceManager() /* serviceManager */, in SetUp()
832 std::unique_ptr<Lshal> lshal;
DListCommand.h42 class Lshal; variable
60 explicit ListCommand(Lshal &lshal) : Command(lshal) {} in ListCommand()
DAndroid.bp33 "Lshal.cpp",