Home
last modified time | relevance | path

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

/frameworks/native/cmds/lshal/
DLshal.cpp39 Lshal::Lshal() in Lshal() function in android::lshal::Lshal
40 : Lshal(std::cout, std::cerr, ::android::hardware::defaultServiceManager(), in Lshal()
44 Lshal::Lshal(std::ostream &out, std::ostream &err, in Lshal() function in android::lshal::Lshal
57 void Lshal::forEachCommand(const std::function<void(const Command* c)>& f) const { in forEachCommand()
61 void Lshal::usage() { in usage()
101 Status Lshal::emitDebugInfo( in emitDebugInfo()
170 Status Lshal::parseArgs(const Arg &arg) { in parseArgs()
199 Command* Lshal::selectCommand(const std::string& command) const { in selectCommand()
211 Status Lshal::main(const Arg &arg) { in main()
243 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,
82 DISALLOW_COPY_AND_ASSIGN(Lshal);
DCommand.h24 class Lshal; variable
29 explicit Command(Lshal& lshal) : mLshal(lshal) {} in Command()
44 Lshal& mLshal;
DHelpCommand.h29 class Lshal; variable
33 explicit HelpCommand(Lshal &lshal) : Command(lshal) {} in HelpCommand()
DWaitCommand.h29 class Lshal; variable
33 explicit WaitCommand(Lshal &lshal) : Command(lshal) {} in WaitCommand()
DDebugCommand.h30 class Lshal; variable
34 explicit DebugCommand(Lshal &lshal) : Command(lshal) {} in DebugCommand()
Dmain.cpp22 _exit(Lshal{}.main(Arg{argc, argv})); in main()
DListCommand.h42 class Lshal; variable
57 explicit ListCommand(Lshal &lshal) : Command(lshal) {} in ListCommand()
Dtest.cpp163 lshal = std::make_unique<Lshal>(out, err, serviceManager, serviceManager); in SetUp()
171 std::unique_ptr<Lshal> lshal;
232 class MockLshal : public Lshal {
243 explicit MockListCommand(Lshal* lshal) : ListCommand(*lshal) {} in MockListCommand()
381 lshal = std::make_unique<Lshal>(out, err, serviceManager, passthruManager); in SetUp()
449 std::unique_ptr<Lshal> lshal;
1124 lshal = std::make_unique<Lshal>(out, err, new MockServiceManager() /* serviceManager */, in SetUp()
1130 std::unique_ptr<Lshal> lshal;
DAndroid.bp42 "Lshal.cpp",