Home
last modified time | relevance | path

Searched refs:SocketHandler (Results 1 – 20 of 20) 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/cpython3/Lib/logging/
Dhandlers.py485 class SocketHandler(logging.Handler): class
652 class DatagramHandler(SocketHandler):
667 SocketHandler.__init__(self, host, port)
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst412 SocketHandler chapter
415 The :class:`SocketHandler` class, located in the :mod:`logging.handlers` module,
419 .. class:: SocketHandler(host, port)
421 Returns a new instance of the :class:`SocketHandler` class intended to
503 module, inherits from :class:`SocketHandler` to support sending logging messages
527 The factory method of :class:`SocketHandler` is here overridden to create
Dlogging.config.rst729 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/cpython3/Doc/howto/
Dlogging-cookbook.rst334 handler can block: Even a :class:`SocketHandler` operation may do a
403 :class:`SocketHandler` instance to the root logger at the sending end::
409 socketHandler = logging.handlers.SocketHandler('localhost',
529 the :meth:`~handlers.SocketHandler.makePickle` method and implementing your
704 to have all the processes log to a :class:`~handlers.SocketHandler`, and have a
1183 via a :class:`~handlers.SocketHandler`, or in JSON form via an
Dlogging.rst911 #. :class:`~handlers.SocketHandler` instances send messages to TCP/IP
1016 :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/cpython3/Lib/test/
Dtest_logging.py1463 hcls = logging.handlers.SocketHandler
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1079 :class:`~logging.handlers.SocketHandler` and
/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.
/external/python/cpython3/Misc/
DHISTORY3941 - logging: added support for Unix domain sockets to SocketHandler and
21450 LogHandler easier to interact with DatagramHandler and SocketHandler.