Searched refs:handlers (Results 1 - 25 of 201) sorted by relevance

123456789

/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dlogging_util.py24 if logger.handlers and hasattr(logger.handlers[0], 'formatter'):
25 fh.formatter = logger.handlers[0].formatter
/external/webrtc/webrtc/modules/desktop_capture/x11/
H A Dshared_x_display.cc51 EventHandlersMap::iterator handlers = event_handlers_.find(type); local
52 if (handlers == event_handlers_.end())
56 std::remove(handlers->second.begin(), handlers->second.end(), handler);
57 handlers->second.erase(new_end, handlers->second.end());
59 // Check if no handlers left for this event.
60 if (handlers->second.empty())
61 event_handlers_.erase(handlers);
76 EventHandlersMap::iterator handlers local
[all...]
/external/lisa/
H A Dlogging.conf11 handlers=consoleHandler,fileHandler
28 handlers=consoleHandler,fileHandler
34 handlers=consoleHandler,fileHandler
40 handlers=consoleHandler,fileHandler
46 handlers=consoleHandler,fileHandler
52 handlers=consoleHandler,fileHandler
58 handlers=consoleHandler,fileHandler
64 handlers=consoleHandler,fileHandler
70 handlers=consoleHandler,fileHandler
76 handlers
[all...]
/external/autotest/client/cros/cellular/pseudomodem/
H A Dlogging_setup.py10 import logging.handlers namespace
52 for handler in root.handlers:
62 syslog_handler = logging.handlers.SysLogHandler(
64 facility=logging.handlers.SysLogHandler.LOG_DAEMON)
H A Drun_pseudomodem.py22 for handler in root.handlers:
/external/autotest/frontend/afe/
H A Drpcserver_logging.py1 import logging, logging.handlers, time, os namespace
17 handler = logging.handlers.SocketHandler(
/external/syslinux/gpxe/src/include/gpxe/
H A Dansiesc.h67 * and points to the list of escape sequence handlers.
70 /** Array of handlers
75 struct ansiesc_handler *handlers; member in struct:ansiesc_context
/external/clang/lib/AST/
H A DStmtCXX.cpp27 Stmt *tryBlock, ArrayRef<Stmt *> handlers) {
29 Size += ((handlers.size() + 1) * sizeof(Stmt *));
32 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers);
45 ArrayRef<Stmt *> handlers)
46 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) {
49 std::copy(handlers.begin(), handlers.end(), Stmts + 1);
26 Create(const ASTContext &C, SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt *> handlers) argument
44 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt *> handlers) argument
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
H A DSLF4JBridgeHandler.java57 * // Optionally remove existing handlers attached to j.u.l root logger
66 * handlers = org.slf4j.bridge.SLF4JBridgeHandler</pre>
137 Handler[] handlers = rootLogger.getHandlers();
138 for (int i = 0; i < handlers.length; i++) {
139 if (handlers[i] instanceof SLF4JBridgeHandler) {
140 rootLogger.removeHandler(handlers[i]);
153 Handler[] handlers = rootLogger.getHandlers();
154 for (int i = 0; i < handlers.length; i++) {
155 if (handlers[i] instanceof SLF4JBridgeHandler) {
163 * Invoking this method removes/unregisters/detaches all handlers currentl
[all...]
/external/autotest/client/common_lib/cros/
H A Ddark_resume_xmlrpc_server.py8 import logging.handlers namespace
47 handler = logging.handlers.SysLogHandler(address = '/dev/log')
/external/autotest/client/cros/
H A Ddark_resume_xmlrpc_server.py8 import logging.handlers namespace
47 handler = logging.handlers.SysLogHandler(address = '/dev/log')
/external/autotest/site_utils/stats/
H A Dlog_daemon_common.py4 from logging import handlers namespace
37 handler = handlers.RotatingFileHandler(
/external/autotest/client/cros/cellular/
H A Dcellular_logging.py26 log.handlers = [ch]
/external/autotest/site_utils/
H A Dlog_socket_server_unittest.py6 import logging.handlers namespace
28 logging.getLogger().handlers = []
29 socketHandler = logging.handlers.SocketHandler('localhost', port)
H A Drpc_logserver.py11 import logging.handlers namespace
65 # Clear all existing log handlers.
66 logging.getLogger().handlers = []
108 handler = logging.handlers.RotatingFileHandler(
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/impl/
H A DJDK14AdapterLoggerNameTest.java64 Handler[] handlers = logger.getHandlers();
65 for (int i = 0; i < handlers.length; i++) {
66 logger.removeHandler(handlers[i]);
/external/syslinux/gpxe/src/core/
H A Dansiesc.c34 * @v handlers List of escape sequence handlers
39 static void ansiesc_call_handler ( struct ansiesc_handler *handlers, argument
44 for ( handler = handlers ; handler->function ; handler++ ) {
111 ansiesc_call_handler ( ctx->handlers, ctx->function,
/external/vogar/src/vogar/
H A DOptionParser.java144 private static final HashMap<Class<?>, Handler> handlers = new HashMap<Class<?>, Handler>(); field in class:OptionParser
146 handlers.put(boolean.class, new BooleanHandler());
147 handlers.put(Boolean.class, new BooleanHandler());
149 handlers.put(byte.class, new ByteHandler());
150 handlers.put(Byte.class, new ByteHandler());
151 handlers.put(short.class, new ShortHandler());
152 handlers.put(Short.class, new ShortHandler());
153 handlers.put(int.class, new IntegerHandler());
154 handlers.put(Integer.class, new IntegerHandler());
155 handlers
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
H A DURLStreamHandlerRuntime.java36 private Map<String, URLStreamHandler> handlers; field in class:URLStreamHandlerRuntime
49 handlers = getHandlersReference();
50 handlers.put(protocol, handler);
55 final Field field = URL.class.getDeclaredField("handlers");
64 handlers.remove(protocol);
/external/python/cpython2/Lib/logging/
H A Dconfig.py31 import logging.handlers namespace
85 handlers = _install_handlers(cp, formatters)
86 _install_loggers(cp, handlers, disable_existing_loggers)
141 """Install and return handlers"""
142 hlist = cp.get("handlers", "keys")
147 handlers = {}
169 if issubclass(klass, logging.handlers.MemoryHandler):
176 handlers[hand] = h
177 #now all handlers are loaded, fixup inter-handler references...
179 h.setTarget(handlers[
[all...]
/external/autotest/client/cros/networking/
H A Dapmanager_xmlrpc_server.py8 import logging.handlers namespace
62 handler = logging.handlers.SysLogHandler(address='/dev/log')
/external/python/cpython3/Lib/logging/
H A Dconfig.py30 import logging.handlers namespace
84 handlers = _install_handlers(cp, formatters)
85 _install_loggers(cp, handlers, disable_existing_loggers)
130 """Install and return handlers"""
131 hlist = cp["handlers"]["keys"]
136 handlers = {}
154 if issubclass(klass, logging.handlers.MemoryHandler):
158 handlers[hand] = h
159 #now all handlers are loaded, fixup inter-handler references...
161 h.setTarget(handlers[
[all...]
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DLiveness.java78 BasicBlock.Catch handlers = tb.toCatch;
79 while (handlers != null) {
80 TypedBlock h = (TypedBlock)handlers.body;
86 handlers = handlers.next;
171 BasicBlock.Catch handlers = tb.toCatch;
173 while (handlers != null) {
174 TypedBlock h = (TypedBlock)handlers.body;
186 handlers = handlers
[all...]
/external/autotest/site_utils/rpm_control_system/
H A Drpm_logging_config.py6 import logging.handlers namespace
24 class SuspendableSMTPHandler(logging.handlers.SMTPHandler):
93 socketHandler = logging.handlers.SocketHandler(
/external/python/cpython3/Lib/test/
H A Dtest_logging.py23 import logging.handlers namespace
110 hlist = self.logger1.handlers + self.root_logger.handlers
111 raise AssertionError('Unexpected handlers: %s' % hlist)
113 hlist = self.logger2.handlers + self.root_logger.handlers
114 raise AssertionError('Unexpected handlers: %s' % hlist)
124 while self.root_logger.handlers:
125 h = self.root_logger.handlers[0]
332 handler = self.root_logger.handlers[
[all...]

Completed in 1934 milliseconds

123456789