HomeSort by relevance Sort by last modified time
    Searched full:sendline (Results 1 - 25 of 29) sorted by null

1 2

  /external/autotest/site_utils/rpm_control_system/
rpm_controller_unittest.py 71 self.ssh.sendline(password)
73 self.ssh.sendline('%s %s' % (new_state, self.powerunit_info.outlet))
75 self.ssh.sendline('logout')
89 self.ssh.sendline(password)
91 self.ssh.sendline('%s %s' % (new_state, self.powerunit_info.outlet))
94 self.ssh.sendline('logout')
187 self.mox.StubOutWithMock(pexpect.spawn, 'sendline')
192 pexpect.spawn.sendline(self.poe._username)
195 pexpect.spawn.sendline(self.poe._password)
213 pexpect.spawn.sendline('configure terminal'
    [all...]
rpm_controller.py 293 ssh.sendline(rpm_config.get('HYDRA', 'admin_password'))
295 ssh.sendline(RPMController.CLI_CMD)
304 ssh.sendline(RPMController.CLI_KILL_PREVIOUS)
306 ssh.sendline(RPMController.PORT_STATUS_CMD)
311 ssh.sendline(RPMController.SESSION_KILL_CMD_FORMAT % port_number)
336 ssh.sendline('')
345 ssh.sendline(rpm_config.get('HYDRA','password'))
346 ssh.sendline('')
430 ssh.sendline(self._username)
442 ssh.sendline(self._password
    [all...]
  /external/autotest/client/virt/tests/
yum_update.py 14 session.sendline(command)
22 session.sendline("y")
whql_submission.py 101 server_session.sendline(cmd)
119 server_session.sendline(params.get("test_device"))
123 server_session.sendline(params.get("job_filter", ".*"))
130 server_session.sendline(dd_params.get("dd_name"))
131 server_session.sendline(dd_params.get("dd_data"))
132 server_session.sendline()
139 server_session.sendline(desc_params.get("desc_path"))
140 server_session.sendline()
149 server_session.sendline(dp_params.get("dim_name"))
150 server_session.sendline(dp_params.get("dim_value")
    [all...]
guest_s4.py 31 session.sendline(test_s4_cmd)
47 session2.sendline(params.get("set_s4_cmd"))
shutdown.py 28 session.sendline(vm.get_params().get("shutdown_command"))
watchdog.py 29 session.sendline(crash_cmd)
kdump.py 42 session.sendline(crash_cmd)
mac_change.py 45 session_serial.sendline(dhclient_cmd)
netstress_kill_guest.py 109 session_serial.sendline(quest_netperf_cmd)
ethtool.py 126 session2.sendline(tcpdump_cmd)
vlan.py 62 session[dst].sendline(listen_cmd)
  /external/autotest/client/tests/kvm/tests/
nic_bonding.py 61 session_serial.sendline("ifenslave -d bond0 " + " ".join(ifnames))
62 session_serial.sendline("kill -9 `pgrep dhclient`")
migration.py 56 session.sendline(background_command)
nic_hotplug.py 119 session.sendline("dhclient %s &" %
timedrift.py 110 load_session.sendline(guest_load_command)
enospc.py 136 session_serial.sendline(cmd)
ksm_overcommit.py 30 session.sendline("python /tmp/ksm_overcommit_guest.py")
53 session.sendline(command)
174 session.sendline(a_cmd)
  /external/autotest/client/common_lib/
pxssh.py 42 s.sendline ('uptime') # run a command
45 s.sendline ('ls -l')
48 s.sendline ('df')
134 self.sendline()
138 self.sendline()
142 self.sendline()
146 self.sendline()
201 self.sendline("yes")
204 self.sendline(password)
207 self.sendline(terminal_type
    [all...]
pexpect.py 28 child.sendline (mypassword)
163 child.sendline (mypassword)
283 talk to. For normal use, see expect() and send() and sendline().
349 "Password:" prompt and then immediately call sendline() to send the
401 self.logfile_send = None # output to send (send, sendline)
697 p.sendline(mypassword)
736 p.sendline ('1234') # We will see this twice (once from tty echo and again from cat).
740 p.sendline ('abcd') # We will set this only once (echoed by cat).
741 p.sendline ('wxyz') # We will set this only once (echoed by cat)
749 p.sendline ('1234') # We will see this twice (once from tty echo and again from cat)
956 def sendline(self, s=''): member in class:spawn
    [all...]
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 131 sendLine(server, requestLine);
137 sendLine(connection, HTTP_OK);
158 sendLine(connection, HTTP_OK);
195 sendLine(server, outgoingRequestLine);
240 private void sendLine(Socket socket, String line) throws IOException {
278 sendLine(dst, "Connection: close");
281 sendLine(dst, "");
296 sendLine(dst, line);
  /external/autotest/client/site_tests/security_RootCA/
security_RootCA.py 65 child.sendline('foo')
67 child.sendline('foo')
75 nssmodutil.sendline('\n')
  /external/autotest/server/hosts/
ssh_host.py 290 host.sendline('mkdir -p ~/.ssh')
292 host.sendline('chmod 700 ~/.ssh')
294 host.sendline("echo '%s' >> ~/.ssh/authorized_keys; " %
297 host.sendline('chmod 600 ~/.ssh/authorized_keys')
  /external/autotest/client/virt/
aexpect.py 386 child process by sendline().
625 def sendline(self, str=""): member in class:Spawn
681 child process by sendline().
875 child process by sendline().
    [all...]
virt_test_utils.py 109 session.sendline(vm.get_params().get("reboot_command"))
705 session.sendline(session.status_test_command)

Completed in 694 milliseconds

1 2