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

  /external/python/cpython2/Lib/test/
test_telnetlib.py 60 telnet = telnetlib.Telnet(HOST, self.port)
61 telnet.sock.close()
67 telnet = telnetlib.Telnet(HOST, self.port)
70 self.assertEqual(telnet.sock.gettimeout(), 30)
71 telnet.sock.close()
78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
81 self.assertTrue(telnet.sock.gettimeout() is None
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_telnetlib.py 60 telnet = telnetlib.Telnet(HOST, self.port)
61 telnet.sock.close()
67 telnet = telnetlib.Telnet(HOST, self.port)
70 self.assertEqual(telnet.sock.gettimeout(), 30)
71 telnet.sock.close()
78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
81 self.assertTrue(telnet.sock.gettimeout() is None
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_telnetlib.py 60 telnet = telnetlib.Telnet(HOST, self.port)
61 telnet.sock.close()
67 telnet = telnetlib.Telnet(HOST, self.port)
70 self.assertEqual(telnet.sock.gettimeout(), 30)
71 telnet.sock.close()
78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
81 self.assertTrue(telnet.sock.gettimeout() is None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 60 telnet = telnetlib.Telnet(HOST, self.port)
61 telnet.sock.close()
67 telnet = telnetlib.Telnet(HOST, self.port)
70 self.assertEqual(telnet.sock.gettimeout(), 30)
71 telnet.sock.close()
78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
81 self.assertTrue(telnet.sock.gettimeout() is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_telnetlib.py 60 telnet = telnetlib.Telnet(HOST, self.port)
61 telnet.sock.close()
67 telnet = telnetlib.Telnet(HOST, self.port)
70 self.assertEqual(telnet.sock.gettimeout(), 30)
71 telnet.sock.close()
78 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
81 self.assertTrue(telnet.sock.gettimeout() is None
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_telnetlib.py 64 telnet = telnetlib.Telnet(HOST, self.port)
65 telnet.sock.close()
71 telnet = telnetlib.Telnet("localhost", self.port)
74 self.assertEqual(telnet.sock.gettimeout(), 30)
75 telnet.sock.close()
82 telnet = telnetlib.Telnet(HOST, self.port, timeout=None)
85 self.assertTrue(telnet.sock.gettimeout() is None)
    [all...]
  /external/autotest/client/cros/
power_strip.py 7 # Controls Server Technology CW-16V1-C20M switched CDUs over Telnet
33 tn = telnetlib.Telnet(self.host)
  /test/vts/utils/python/controllers/attenuator_lib/
_tnhelper.py 16 Helper module for common telnet capability to communicate with AttenuatorInstrument(s).
30 #This is an internal helper class for Telnet+SCPI command-based instruments.
48 self._tn = telnetlib.Telnet()
65 "Telnet connection not open for commands")
79 "Telnet command failed to return valid data")
  /tools/test/connectivity/acts/framework/acts/controllers/attenuator_lib/
_tnhelper.py 18 Helper module for common telnet capability to communicate with AttenuatorInstrument(s).
33 #This is an internal helper class for Telnet+SCPI command-based instruments.
48 self._tn = telnetlib.Telnet()
64 raise attenuator.InvalidOperationError("Telnet connection not open for commands")
77 raise attenuator.InvalidDataError("Telnet command failed to return valid data")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
41 __all__ = ["Telnet"]
46 # Telnet protocol defaults
49 # Telnet protocol characters (don't change)
70 # Telnet protocol options code (don't change)
71 # These ones all come from arpa/telnet.h
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary 162 VALUE Login-Service Telnet 0
  /external/python/cpython2/Lib/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
42 __all__ = ["Telnet"]
47 # Telnet protocol defaults
50 # Telnet protocol characters (don't change)
71 # Telnet protocol options code (don't change)
72 # These ones all come from arpa/telnet.
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
42 __all__ = ["Telnet"]
47 # Telnet protocol defaults
50 # Telnet protocol characters (don't change)
71 # Telnet protocol options code (don't change)
72 # These ones all come from arpa/telnet.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
42 __all__ = ["Telnet"]
47 # Telnet protocol defaults
50 # Telnet protocol characters (don't change)
71 # Telnet protocol options code (don't change)
72 # These ones all come from arpa/telnet.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
42 __all__ = ["Telnet"]
47 # Telnet protocol defaults
50 # Telnet protocol characters (don't change)
71 # Telnet protocol options code (don't change)
72 # These ones all come from arpa/telnet.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
telnetlib.py 1 r"""TELNET client class.
3 Based on RFC 854: TELNET Protocol Specification, by J. Postel and
8 >>> from telnetlib import Telnet
9 >>> tn = Telnet('www.python.org', 79) # connect to finger port
20 It is possible to pass a Telnet object to select.select() in order to
42 __all__ = ["Telnet"]
47 # Telnet protocol defaults
50 # Telnet protocol characters (don't change)
71 # Telnet protocol options code (don't change)
72 # These ones all come from arpa/telnet.
    [all...]

Completed in 648 milliseconds