Home
last modified time | relevance | path

Searched refs:command_queue (Results 1 – 3 of 3) sorted by relevance

/test/testfwk/xdevice/src/xdevice/_core/command/
Dconsole.py408 Scheduler.command_queue.append(args)
446 if isinstance(Scheduler.command_queue[-1], str):
447 Scheduler.command_queue.pop()
493 Scheduler.command_queue[-1] = history_command
588 for command_info in Scheduler.command_queue[:-1]:
601 for command_info in Scheduler.command_queue[:-1]:
682 if len(Scheduler.command_queue) < 2:
685 Scheduler.command_queue[-2]
704 for command_tuple in Scheduler.command_queue[:-1]:
770 run_command = Scheduler.command_queue.pop()
[all …]
/test/testfwk/xdevice/src/xdevice/_core/executor/
Dscheduler.py100 command_queue = [] variable in Scheduler
130 if Scheduler.command_queue:
131 LOG.debug("Run command: {}".format(convert_mac(Scheduler.command_queue[-1])))
132 run_command = Scheduler.command_queue.pop()
134 Scheduler.command_queue.append((task_id, run_command,
136 if len(Scheduler.command_queue) > self.max_command_num:
137 Scheduler.command_queue.pop(0)
/test/testfwk/xdevice/src/xdevice/_core/report/
Dresult_reporter.py829 if not Scheduler.command_queue:
831 _, command, report_path = Scheduler.command_queue[-1]