HomeSort by relevance Sort by last modified time
    Searched refs:pexpect (Results 1 - 10 of 10) sorted by null

  /external/autotest/site_utils/rpm_control_system/
rpm_controller_unittest.py 7 import pexpect namespace
54 rpm_controller.pexpect.spawn = self.mox.CreateMockAnything()
55 rpm_controller.pexpect.spawn(mox.IgnoreArg()).AndReturn(self.ssh)
93 timeout=60).AndRaise(pexpect.TIMEOUT('Timed Out'))
185 self.mox.StubOutWithMock(pexpect.spawn, '_spawn')
186 self.mox.StubOutWithMock(pexpect.spawn, 'read_nonblocking')
187 self.mox.StubOutWithMock(pexpect.spawn, 'sendline')
189 pexpect.spawn._spawn(mox.IgnoreArg(), mox.IgnoreArg())
190 pexpect.spawn.read_nonblocking(
192 pexpect.spawn.sendline(self.poe._username
    [all...]
rpm_controller.py 10 import pexpect namespace
321 @param ssh: pexpect.spawn object used to communicate with the hydra
333 except pexpect.TIMEOUT:
341 except pexpect.ExceptionPexpect:
351 except pexpect.EOF:
354 except pexpect.TIMEOUT:
365 except pexpect.ExceptionPexpect:
387 @return: The connected pexpect.spawn instance if the login procedure is
400 ssh = pexpect.spawn(cmd)
401 except pexpect.ExceptionPexpect
    [all...]
  /external/v8/build/android/pylib/
pexpect.py 12 _PEXPECT_PATH = os.path.join(_CHROME_SRC, 'third_party', 'pexpect')
16 # pexpect is not available on all platforms. We allow this file to be imported
17 # on platforms without pexpect and only fail when pexpect is actually used.
19 from pexpect import * # pylint: disable=W0401,W0614
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
iprofiler_profiler.py 14 import pexpect # pylint: disable=import-error namespace
25 self._proc = pexpect.spawn(
55 except pexpect.ExceptionPexpect:
  /external/autotest/client/site_tests/security_RootCA/
security_RootCA.py 9 from autotest_lib.client.common_lib import pexpect namespace
63 child = pexpect.spawn('"%s" -N -d %s' % (NSSCERTUTIL, tmpdir))
73 nssmodutil = pexpect.spawn(cmd)
  /external/v8/build/android/
lighttpd_server.py 26 from pylib import pexpect namespace
96 self.process = pexpect.spawn(self.lighttpd_path,
140 ix = self.process.expect([pexpect.TIMEOUT, pexpect.EOF, '.+'],
install_emulator_deps.py 23 from pylib import pexpect namespace
179 update_process = pexpect.spawn(update_command_str)
  /external/v8/build/
install-build-deps-android.sh 58 sudo apt-get -y install lighttpd python-pexpect xvfb x11-utils
  /external/autotest/client/common_lib/
pxssh.py 1 """This class extends pexpect.spawn to specialize setting up SSH connections.
7 from pexpect import *
8 import pexpect namespace
20 """This class extends pexpect.spawn to specialize setting up SSH
88 self.UNIQUE_PROMPT = "\[PEXPECT\][\$\#] "
92 self.PROMPT_SET_SH = "PS1='[PEXPECT]\$ '"
93 self.PROMPT_SET_CSH = "set prompt='[PEXPECT]\$ '"
  /external/v8/build/android/pylib/utils/
emulator.py 22 from pylib import pexpect namespace
336 avd_process = pexpect.spawn(avd_cmd_str)

Completed in 204 milliseconds