Lines Matching refs:command
21 def execute_thread(command, reply): argument
22 cmd = ' '.join(command)
27 buf = subprocess.check_output(command, stderr=err, bufsize=0).decode()
66 def local_execute(self, command): argument
67 logger.debug("execute: " + str(command))
71 buf = subprocess.check_output(command, stderr=err)
82 def execute(self, command): argument
84 return self.local_execute(command)
86 cmd = ["ssh", self.user + "@" + self.host, ' '.join(command)]
104 def thread_run(self, command, res, use_reaper=True): argument
109 _command = [filename] + command
112 _command = command
170 def proc_run(self, command): argument
174 _command = [filename] + command
245 def execute_and_wait_event(self, command, events, timeout=10): argument
250 proc = self.proc_run(command)