/external/llvm-project/lldb/test/API/benchmarks/expression/ |
D | TestRepeatedExprs.py | 63 child.sendline( 67 child.sendline('run') 76 child.sendline(expr_cmd1) 78 child.sendline(expr_cmd2) 80 child.sendline('process continue') 83 child.sendline('quit') 111 child.sendline('break %s:%d' % (self.source, self.line_to_break)) 113 child.sendline('run') 122 child.sendline(expr_cmd1) 124 child.sendline(expr_cmd2) [all …]
|
D | TestExpressionCmd.py | 61 child.sendline( 65 child.sendline('run') 71 child.sendline(expr_cmd1) 73 child.sendline(expr_cmd2) 76 child.sendline('quit')
|
/external/autotest/site_utils/rpm_control_system/ |
D | rpm_controller_unittest.py | 70 self.ssh.sendline(password) 72 self.ssh.sendline('%s %s' % (new_state, self.powerunit_info.outlet)) 74 self.ssh.sendline('logout') 88 self.ssh.sendline(password) 90 self.ssh.sendline('%s %s' % (new_state, self.powerunit_info.outlet)) 93 self.ssh.sendline('logout') 176 mock_ssh.sendline(mox.IgnoreArg()) 178 mock_ssh.sendline(mox.IgnoreArg()) 193 mock_ssh.sendline(sut.CONFIG) 195 mock_ssh.sendline(sut.CONFIG_IF % self.PORT) [all …]
|
D | rpm_controller.py | 290 ssh.sendline(rpm_config.get('HYDRA', 'admin_password')) 292 ssh.sendline(RPMController.CLI_CMD) 301 ssh.sendline(RPMController.CLI_KILL_PREVIOUS) 303 ssh.sendline(RPMController.PORT_STATUS_CMD) 308 ssh.sendline(RPMController.SESSION_KILL_CMD_FORMAT % port_number) 333 ssh.sendline('') 342 ssh.sendline(rpm_config.get('HYDRA','password')) 343 ssh.sendline('') 427 ssh.sendline(self._username) 439 ssh.sendline(self._password) [all …]
|
/external/llvm-project/lldb/test/API/commands/gui/breakpoints/ |
D | TestGuiBreakpoints.py | 25 self.child.sendline("breakpoint list") 32 self.child.sendline("gui") 41 self.child.sendline("breakpoint list") 43 self.child.sendline("gui") 52 self.child.sendline("breakpoint list") 55 self.child.sendline("gui") 65 self.child.sendline("breakpoint list") 67 self.child.sendline("gui")
|
/external/autotest/client/common_lib/ |
D | pxssh.py | 142 self.sendline() 146 self.sendline() 150 self.sendline() 154 self.sendline() 209 self.sendline("yes") 212 self.sendline(password) 215 self.sendline(terminal_type) 269 self.sendline("exit") 272 self.sendline("exit") 307 self.sendline ("unset PROMPT_COMMAND") [all …]
|
/external/llvm-project/lldb/test/API/terminal/ |
D | TestSTTYBeforeAndAfter.py | 57 child.sendline('set env(TERM) xterm') 59 child.sendline('set env(TERM) vt100') 61 child.sendline('puts $env(TERM)') 67 child.sendline('stty -a') 76 child.sendline(lldbtest_config.lldbExec) 80 child.sendline('quit') 85 child.sendline('stty -a') 88 child.sendline('exit')
|
/external/llvm-project/lldb/third_party/Python/module/pexpect-4.6/pexpect/ |
D | pxssh.py | 227 self.sendline() 236 self.sendline() 239 self.sendline() 242 self.sendline() 365 self.sendline(cmd) 376 self.sendline("yes") 379 self.sendline(password) 382 self.sendline(terminal_type) 442 self.sendline("exit") 445 self.sendline("exit") [all …]
|
D | replwrap.py | 62 self.child.sendline(prompt_change) 88 self.child.sendline(cmdlines[0]) 92 self.child.sendline(line)
|
D | fdpexpect.py | 104 def sendline(self, s): member in fdspawn
|
D | popen_spawn.py | 149 def sendline(self, s=''): member in PopenSpawn
|
D | pty_spawn.py | 548 def sendline(self, s=''): member in spawn
|
/external/llvm-project/lldb/test/API/benchmarks/turnaround/ |
D | TestCompileRunToBreakpointTurnaround.py | 59 child.sendline('breakpoint set -F %s' % function) 61 child.sendline('run') 78 self.child.sendline('quit') 102 child.sendline('break %s' % function) 104 child.sendline('run') 121 self.child.sendline('quit') 123 self.child.sendline('y')
|
/external/ltp/testcases/kernel/sched/clisrv/ |
D | pthcli.c | 66 char sendline[MAXLINE], recvline[MAXLINE + 1]; in str_cli() local 68 while (fgets(sendline, MAXLINE, fp) != NULL) { in str_cli() 69 n = strlen(sendline); in str_cli() 71 dprt("%s: str_cli(): sendline = %s", __FILE__, sendline); in str_cli() 73 if (writen(sockfd, sendline, n) != n) in str_cli()
|
/external/llvm-project/lldb/test/API/benchmarks/frame_variable/ |
D | TestFrameVariableResponse.py | 55 child.sendline('breakpoint set %s' % break_spec) 59 child.sendline('run') # Aka 'process launch'. 64 child.sendline('frame variable') 67 child.sendline('quit')
|
/external/llvm-project/lldb/test/API/benchmarks/stepping/ |
D | TestSteppingSpeed.py | 56 child.sendline('breakpoint set %s' % break_spec) 58 child.sendline('run') 66 child.sendline('next') # Aka 'thread step-over'. 69 child.sendline('quit')
|
/external/llvm-project/lldb/test/API/benchmarks/startup/ |
D | TestStartupDelays.py | 70 child.sendline('file %s' % exe) # Aka 'target create'. 75 child.sendline('breakpoint set %s' % break_spec) 80 child.sendline('run') 83 child.sendline('quit')
|
/external/llvm-project/lldb/test/API/commands/expression/multiline-navigation/ |
D | TestMultilineNavigation.py | 27 self.child.sendline("expr") 50 self.child.sendline("expr")
|
/external/llvm-project/lldb/test/API/commands/gui/basic/ |
D | TestGuiBasic.py | 29 self.child.sendline("gui") 39 self.child.sendline("gui")
|
/external/llvm-project/lldb/test/API/macosx/nslog/ |
D | TestDarwinNSLogOutput.py | 90 child.sendline('breakpoint set -f %s -l %d' % (source_file, line)) 92 child.sendline('run') 101 self.child.sendline(cmd)
|
/external/autotest/server/hosts/ |
D | ssh_host.py | 495 host.sendline('mkdir -p ~/.ssh') 497 host.sendline('chmod 700 ~/.ssh') 499 host.sendline("echo '%s' >> ~/.ssh/authorized_keys; " % 502 host.sendline('chmod 600 ~/.ssh/authorized_keys')
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | darwin_log.py | 121 child.sendline('breakpoint set -f %s -l %d' % (source_file, line)) 125 child.sendline('run') 137 self.child.sendline(cmd)
|
D | lldbpexpect.py | 56 self.child.sendline(cmd)
|
/external/llvm-project/lldb/test/API/commands/gui/basicdebug/ |
D | TestGuiBasicDebug.py | 28 self.child.sendline("gui")
|
/external/llvm-project/lldb/test/API/commands/gui/viewlarge/ |
D | TestGuiViewLarge.py | 33 self.child.sendline("gui")
|