Searched refs:Lshal (Results 1 – 9 of 9) sorted by relevance
/frameworks/native/cmds/lshal/ |
D | Lshal.cpp | 37 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 …]
|
D | Lshal.h | 35 class Lshal { 37 Lshal(); 38 virtual ~Lshal() {} in ~Lshal() 39 Lshal(std::ostream &out, std::ostream &err, 74 DISALLOW_COPY_AND_ASSIGN(Lshal);
|
D | Command.h | 25 class Lshal; variable 30 explicit Command(Lshal& lshal) : mLshal(lshal) {} in Command() 45 Lshal& mLshal;
|
D | HelpCommand.h | 30 class Lshal; variable 34 explicit HelpCommand(Lshal &lshal) : Command(lshal) {} in HelpCommand()
|
D | DebugCommand.h | 30 class Lshal; variable 34 explicit DebugCommand(Lshal &lshal) : Command(lshal) {} in DebugCommand()
|
D | main.cpp | 21 return Lshal{}.main(Arg{argc, argv}); in main()
|
D | test.cpp | 140 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;
|
D | ListCommand.h | 42 class Lshal; variable 60 explicit ListCommand(Lshal &lshal) : Command(lshal) {} in ListCommand()
|
D | Android.bp | 33 "Lshal.cpp",
|