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/ |
D | SocketHandlerTest.java | 36 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/ |
D | rpcserver_logging.py | 17 handler = logging.handlers.SocketHandler(
|
/external/autotest/site_utils/ |
D | log_socket_server_unittest.py | 29 socketHandler = logging.handlers.SocketHandler('localhost', port)
|
/external/autotest/site_utils/rpm_control_system/ |
D | rpm_logging_config.py | 93 socketHandler = logging.handlers.SocketHandler(
|
/external/python/cpython2/Lib/logging/ |
D | handlers.py | 432 class SocketHandler(logging.Handler): class 599 class DatagramHandler(SocketHandler): 614 SocketHandler.__init__(self, host, port)
|
/external/python/cpython2/Doc/library/ |
D | logging.handlers.rst | 289 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
|
D | logging.config.rst | 690 class=handlers.SocketHandler
|
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 485 class SocketHandler(logging.Handler): class 652 class DatagramHandler(SocketHandler): 667 SocketHandler.__init__(self, host, port)
|
/external/python/cpython3/Doc/library/ |
D | logging.handlers.rst | 412 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
|
D | logging.config.rst | 729 class=handlers.SocketHandler
|
/external/python/cpython2/Doc/howto/ |
D | logging-cookbook.rst | 328 :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
|
D | logging.rst | 887 #. :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/ |
D | logging-cookbook.rst | 334 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
|
D | logging.rst | 911 #. :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/ |
D | test_logging.py | 930 self.sock_hdlr = logging.handlers.SocketHandler('localhost', self.port)
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 1463 hcls = logging.handlers.SocketHandler
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1079 :class:`~logging.handlers.SocketHandler` and
|
/external/python/cpython2/Misc/ |
D | NEWS | 11243 - Patch #1695948: Added optional timeout parameter to SocketHandler. 11495 SocketHandler.createSocket. Now, only socket.error is trapped.
|
D | HISTORY | 4066 LogHandler easier to interact with DatagramHandler and SocketHandler.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 3941 - logging: added support for Unix domain sockets to SocketHandler and 21450 LogHandler easier to interact with DatagramHandler and SocketHandler.
|