Home
last modified time | relevance | path

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

/aosp_15_r20/bootable/recovery/install/
H A Dadb_install.cpp158 const std::map<MinadbdCommand, CommandFunction>& command_map) { in HandleMessageFromMinadbd() argument
170 if (!command_map.contains(command_type)) { in HandleMessageFromMinadbd()
178 const auto& command_func = command_map.at(command_type); in HandleMessageFromMinadbd()
191 const std::map<MinadbdCommand, CommandFunction>& command_map) { in ListenAndExecuteMinadbdCommands() argument
238 if (!HandleMessageFromMinadbd(socket_fd.get(), command_map)) { in ListenAndExecuteMinadbdCommands()
280 RecoveryUI* ui, const std::map<MinadbdCommand, CommandFunction>& command_map, in CreateMinadbdServiceAndExecuteCommands() argument
321 std::move(recovery_socket), std::ref(command_map)); in CreateMinadbdServiceAndExecuteCommands()
351 std::map<MinadbdCommand, CommandFunction> command_map{ in ApplyFromAdb() local
371 command_map.emplace(MinadbdCommand::kWipeData, [&device]() { in ApplyFromAdb()
375 command_map.emplace(MinadbdCommand::kNoOp, []() { return std::make_pair(true, true); }); in ApplyFromAdb()
[all …]
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dcxx0x-initializer-constructor.cpp249 struct command_map struct
251 command_map(std::initializer_list<command_pair>);
256 generator_pair(const command_map);
/aosp_15_r20/device/google/cuttlefish/host/libs/control_env/
Dgrpc_service_handler.cc319 auto command_map = in HandleCmds()
327 CF_EXPECT(Contains(command_map, cmd), cmd << " isn't supported"); in HandleCmds()
329 auto command_output = CF_EXPECT(command_map[cmd](server_address_list, args)); in HandleCmds()
/aosp_15_r20/bootable/deprecated-ota/updater/
H A Dblockimg.cpp1628 const CommandMap& command_map, bool dryrun) { in PerformBlockImageUpdate() argument
1843 const CommandFunction& performer = command_map.at(cmd_type); in PerformBlockImageUpdate()
2027 const CommandMap command_map{ in BlockImageVerifyFn() local
2041 CHECK_EQ(static_cast<size_t>(Command::Type::LAST), command_map.size()); in BlockImageVerifyFn()
2044 return PerformBlockImageUpdate(name, state, argv, command_map, true); in BlockImageVerifyFn()
2049 const CommandMap command_map{ in BlockImageUpdateFn() local
2063 CHECK_EQ(static_cast<size_t>(Command::Type::LAST), command_map.size()); in BlockImageUpdateFn()
2065 return PerformBlockImageUpdate(name, state, argv, command_map, false); in BlockImageUpdateFn()
/aosp_15_r20/system/extras/simpleperf/
H A Dcommand.cpp173 static std::map<std::string, callback_t> command_map; in CommandMap() local
174 return command_map; in CommandMap()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/Interpreter/
DCommandInterpreter.h689 const CommandObject::CommandMap &command_map);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/Interpreter/
DCommandInterpreter.h696 const CommandObject::CommandMap &command_map);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/Interpreter/
DCommandInterpreter.h696 const CommandObject::CommandMap &command_map);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/Interpreter/
DCommandInterpreter.h696 const CommandObject::CommandMap &command_map);
/aosp_15_r20/external/python/bumble/bumble/
Dhci.py2164 def command_map(symbols: Dict[str, Any]) -> Dict[int, str]: member in HCI_Command
2173 cls.command_names.update(cls.command_map(symbols))