Lines Matching refs:cmd
125 cmd = f'{self._OT_CLI_FTD}{radios} --time-speed={self._SPEED_UP_FACTOR} '
129 cmd = cmd + f'--log-file={log_file_name} '
131 cmd = cmd + f'{self._index}'
136 self._cli_process = pexpect.popen_spawn.PopenSpawn(cmd)
159 cmd = ' '.join([f'{arg}' for arg in args if arg is not None]).strip()
164 self._cli_process.send(cmd + '\n')
170 if not self._is_ot_logg_line(line) if not line.strip().endswith(cmd)
194 def _cli_no_output(self, cmd, *args): argument
195 outputs = self.cli(cmd, *args)
198 def _cli_single_output(self, cmd, *args, expected_outputs=None): argument
199 outputs = self.cli(cmd, *args)