Lines Matching full:command
15 namespace command namespace
20 auto& command = commandTable[inCommand.command]; in registerCommand() local
22 if (command) in registerCommand()
24 lg2::debug("Already Registered: {COMMAND}", "COMMAND", in registerCommand()
25 inCommand.command); in registerCommand()
29 command = std::move(entry); in registerCommand()
42 CommandID command(inCommand); in executeCommand() local
48 … "Table: refuse to forward session-zero command: lun: {LUN}, netFn: {NETFN}, command: {COMMAND}", in executeCommand()
49 "LUN", command.lun(), "NETFN", command.netFn(), "COMMAND", in executeCommand()
50 command.cmd()); in executeCommand()
67 uint8_t lun = command.lun(); in executeCommand()
68 uint8_t netFn = command.netFn(); in executeCommand()
69 uint8_t cmd = command.cmd(); in executeCommand()
130 // If command time execution time exceeds 2 seconds, log a time in executeCommand()
134 lg2::error("IPMI command timed out: {DELAY}", "DELAY", in executeCommand()
146 // Check if the command qualifies to be run prior to establishing a session in executeCommand()
152 … "Table: Insufficient privilege for command: lun: {LUN}, netFn: {NETFN}, command: {COMMAND}", in executeCommand()
153 "LUN", command.lun(), "NETFN", command.netFn(), "COMMAND", in executeCommand()
154 command.cmd()); in executeCommand()
161 } // namespace command