Home
last modified time | relevance | path

Searched refs:FileHandler (Results 1 – 25 of 52) sorted by relevance

123

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DFileHandlerTest.java31 import java.util.logging.FileHandler;
59 FileHandler handler;
73 handler = new FileHandler(); in setUp()
109 new FileHandler("%h/log_NoUsrHome.log"); in testConstructor_NoUsrHome()
124 new FileHandler("%t/log_NoTmpDir.log"); in testConstructor_NoTmpDir()
140 new FileHandler("%t/log_NoTmpDir_NoUsrHome.log"); in testConstructor_NoTmpDir_NoUsrHome()
157 FileHandler h = new FileHandler(); in testLock()
179 handler = new FileHandler(); in testFileHandler()
194 handler = new FileHandler(); in testDefaultValue()
205 handler = new FileHandler(); in testDefaultValue()
[all …]
DXMLFormatterTest.java27 import java.util.logging.FileHandler;
187 logger.addHandler(new FileHandler(logFile));
/external/caliper/caliper/src/main/java/com/google/caliper/config/
DLoggingConfigLoader.java33 import java.util.logging.FileHandler;
95 FileHandler fileHandler = new FileHandler(String.format("%s%c%s.%s.log", in maybeLoadDefaultLogConfiguration()
/external/caliper/caliper/src/test/java/com/google/caliper/config/
DLoggingConfigLoaderTest.java42 import java.util.logging.FileHandler;
80 FileHandler fileHandler = (FileHandler) handlerCaptor.getValue(); in testLoadDefaultLogConfiguration()
/external/autotest/client/common_lib/
Dlogging_config.py111 handler = logging.FileHandler(file_path)
171 if isinstance(handler, logging.FileHandler):
/external/v8/tools/
Dadb-d8.py30 class FileHandler(SocketServer.BaseRequestHandler): class
60 return FileHandler
/external/python/cpython2/Lib/logging/
Dhandlers.py52 class BaseRotatingHandler(logging.FileHandler):
64 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
78 logging.FileHandler.emit(self, record)
370 class WatchedFileHandler(logging.FileHandler):
391 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
430 logging.FileHandler.emit(self, record)
D__init__.py898 class FileHandler(StreamHandler): class
1554 hdlr = FileHandler(filename, mode)
/external/python/cpython3/Lib/logging/
Dhandlers.py44 class BaseRotatingHandler(logging.FileHandler):
54 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
70 logging.FileHandler.emit(self, record)
413 class WatchedFileHandler(logging.FileHandler):
434 logging.FileHandler.__init__(self, filename, mode, encoding, delay)
479 logging.FileHandler.emit(self, record)
/external/python/cpython2/Lib/
Durllib2.py495 FTPHandler, FileHandler, HTTPErrorProcessor]
1327 class FileHandler(BaseHandler): class
1341 if FileHandler.names is None:
1343 FileHandler.names = tuple(
1347 FileHandler.names = (socket.gethostbyname('localhost'),)
1348 return FileHandler.names
/external/python/cpython3/PC/layout/support/
Dlogging.py44 handler = logging.FileHandler(ns.log, encoding="utf-8", delay=True)
/external/vogar/src/vogar/
DOptionParser.java164 handlers.put(File.class, new FileHandler()); in handlers.put() argument
518 static class FileHandler extends Handler { class in OptionParser
/external/curl/tests/
Ddictserver.py111 handler = logging.FileHandler(options.logfile, mode="w")
Dnegtelnetserver.py292 handler = logging.FileHandler(options.logfile, mode="w")
Dsmbserver.py340 handler = logging.FileHandler(options.logfile, mode="w")
/external/autotest/client/tests/iozone/
Dpostprocessing.py225 foutput = logging.FileHandler(foutput_path)
244 routput = logging.FileHandler(routput_path)
/external/toolchain-utils/automation/common/
Dlogger.py129 class CompressedFileHandler(logging.FileHandler):
/external/testng/src/main/java/org/testng/internal/
DUtils.java23 import java.util.logging.FileHandler;
455 FileHandler fh = new FileHandler(outputLogPath); in initLogger()
/external/python/cpython2/Doc/library/
Dlogging.handlers.rst27 the handlers (:class:`StreamHandler`, :class:`FileHandler` and
65 FileHandler chapter
68 The :class:`FileHandler` class, located in the core :mod:`logging` package,
73 .. class:: FileHandler(filename, mode='a', encoding=None, delay=False)
75 Returns a new instance of the :class:`FileHandler` class. The specified file is
136 module, is a :class:`FileHandler` which watches the file it is logging to. If
/external/ImageMagick/MagickCore/
Dlog.c84 FileHandler = 0x0008, enumerator
168 { "File", FileHandler },
1334 if ((log_info->handler_mask & FileHandler) != 0) in LogMagickEventList()
/external/python/cpython3/Lib/urllib/
Drequest.py587 FTPHandler, FileHandler, HTTPErrorProcessor,
1442 class FileHandler(BaseHandler): class
1456 if FileHandler.names is None:
1458 FileHandler.names = tuple(
1462 FileHandler.names = (socket.gethostbyname('localhost'),)
1463 return FileHandler.names
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst26 the handlers (:class:`StreamHandler`, :class:`FileHandler` and
84 FileHandler chapter
87 The :class:`FileHandler` class, located in the core :mod:`logging` package,
92 .. class:: FileHandler(filename, mode='a', encoding=None, delay=False)
94 Returns a new instance of the :class:`FileHandler` class. The specified file is
154 module, is a :class:`FileHandler` which watches the file it is logging to. If
210 The parameters are as for :class:`FileHandler`. The attributes are:
/external/python/cpython3/Doc/howto/
Dlogging-cookbook.rst32 fh = logging.FileHandler('spam.log')
173 fh = logging.FileHandler('spam.log')
727 file from your processes. The existing :class:`FileHandler` and subclasses do
901 'class': 'logging.FileHandler',
907 'class': 'logging.FileHandler',
913 'class': 'logging.FileHandler',
1591 'class': 'logging.FileHandler',
1597 'class': 'logging.FileHandler',
1603 'class': 'logging.FileHandler',
1801 return logging.FileHandler(filename, mode, encoding)
[all …]
/external/fonttools/Lib/fontTools/misc/
DloggingTools.py149 h = logging.FileHandler(filename, mode)
/external/python/cpython2/Doc/howto/
Dlogging-cookbook.rst32 fh = logging.FileHandler('spam.log')
169 fh = logging.FileHandler('spam.log')
642 file from your processes. The existing :class:`FileHandler` and subclasses do
919 return logging.FileHandler(filename, mode, encoding)
965 return logging.FileHandler(filename, mode, encoding)
1036 :class:`~logging.FileHandler` - for example, one of the rotating file handlers,
1148 fh = logging.FileHandler('output.txt', 'w')

123