Home
last modified time | relevance | path

Searched refs:SocketHandler (Results 1 – 12 of 12) sorted by relevance

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DSocketHandlerTest.java36 import java.util.logging.SocketHandler;
61 private SocketHandler h = null;
128 h = new SocketHandler(); in testConstructor_NoProperties()
134 h = new SocketHandler(null, 0); in testConstructor_NoProperties()
140 h = new SocketHandler("", 0); in testConstructor_NoProperties()
146 h = new SocketHandler("127.0.0.1", -1); in testConstructor_NoProperties()
152 h = new SocketHandler("127.0.0.1", Integer.MAX_VALUE); in testConstructor_NoProperties()
158 h = new SocketHandler("127.0.0.1", 66666); in testConstructor_NoProperties()
164 h = new SocketHandler("127.0.0.1", 0); in testConstructor_NoProperties()
174 h = new SocketHandler("127.0.0.1", 6666); in testConstructor_NoProperties()
[all …]
/external/autotest/frontend/afe/
Drpcserver_logging.py17 handler = logging.handlers.SocketHandler(
/external/autotest/site_utils/
Dlog_socket_server_unittest.py29 socketHandler = logging.handlers.SocketHandler('localhost', port)
/external/autotest/site_utils/rpm_control_system/
Drpm_logging_config.py93 socketHandler = logging.handlers.SocketHandler(
/external/python/cpython2/Lib/logging/
Dhandlers.py432 class SocketHandler(logging.Handler): class
599 class DatagramHandler(SocketHandler):
614 SocketHandler.__init__(self, host, port)
/external/python/cpython2/Doc/library/
Dlogging.handlers.rst289 SocketHandler chapter
292 The :class:`SocketHandler` class, located in the :mod:`logging.handlers` module,
296 .. class:: SocketHandler(host, port)
298 Returns a new instance of the :class:`SocketHandler` class intended to
377 module, inherits from :class:`SocketHandler` to support sending logging messages
398 The factory method of :class:`SocketHandler` is here overridden to create
Dlogging.config.rst690 class=handlers.SocketHandler
/external/python/cpython2/Doc/howto/
Dlogging-cookbook.rst328 :class:`SocketHandler` instance to the root logger at the sending end::
334 socketHandler = logging.handlers.SocketHandler('localhost',
454 the :meth:`~handlers.SocketHandler.makePickle` method and implementing your
631 to have all the processes log to a :class:`~handlers.SocketHandler`, and have a
Dlogging.rst887 #. :class:`~handlers.SocketHandler` instances send messages to TCP/IP
985 :class:`~handlers.SocketHandler` emits an event by pickling it and sending it
/external/python/cpython2/Lib/test/
Dtest_logging.py930 self.sock_hdlr = logging.handlers.SocketHandler('localhost', self.port)
/external/python/cpython2/Misc/
DNEWS11243 - Patch #1695948: Added optional timeout parameter to SocketHandler.
11495 SocketHandler.createSocket. Now, only socket.error is trapped.
DHISTORY4066 LogHandler easier to interact with DatagramHandler and SocketHandler.