Home
last modified time | relevance | path

Searched refs:active_commands_ (Results 1 – 2 of 2) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/model/setup/
Dtest_command_handler.cc41 active_commands_[command_name] = [this](const vector<std::string>& param) { method(param); }; in TestCommandHandler()
92 if (active_commands_.count(name) == 0) { in HandleCommand()
97 active_commands_[name](args); in HandleCommand()
Dtest_command_handler.h87 …:unordered_map<std::string, std::function<void(const std::vector<std::string>&)>> active_commands_; variable