Lines Matching full:list
9 # notice, this list of conditions and the following disclaimer.
11 # notice, this list of conditions and the following disclaimer in the
35 from typing import Any, Callable, Optional, Union, List, Pattern
46 def execute_command(self, cmd: str, timeout: float) -> List[str]:
48 command output as a list of lines.
55 def execute_platform_command(self, cmd: str, timeout: float) -> List[str]:
57 return the command output as a list of lines.
67 def wait(self, duration: float) -> List[str]:
84 def shell(self, cmd: str, timeout: float) -> List[str]:
122 def execute_command(self, cmd, timeout=10) -> List[str]:
140 def execute_platform_command(self, cmd, timeout=10) -> List[str]:
143 def wait(self, duration: float) -> List[str]:
169 …pect_line(self, timeout: float, expect_line: Union[str, Pattern], asynchronous=False) -> List[str]:
259 def execute_command(self, cmd: str, timeout: float) -> List[str]:
275 def execute_platform_command(self, cmd, timeout=10) -> List[str]:
281 def shell(self, cmd: str, timeout: float) -> List[str]:
294 def wait(self, duration: float) -> List[str]:
311 def execute_command(self, cmd: str, timeout: float) -> List[str]:
325 def execute_platform_command(self, cmd: str, timeout: float = 10) -> List[str]:
328 def shell(self, cmd: str, timeout: float) -> List[str]:
335 def wait(self, duration: float) -> List[str]: