Home
last modified time | relevance | path

Searched refs:handlers (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/external/webrtc/webrtc/modules/desktop_capture/x11/
Dshared_x_display.cc51 EventHandlersMap::iterator handlers = event_handlers_.find(type); in RemoveEventHandler() local
52 if (handlers == event_handlers_.end()) in RemoveEventHandler()
56 std::remove(handlers->second.begin(), handlers->second.end(), handler); in RemoveEventHandler()
57 handlers->second.erase(new_end, handlers->second.end()); in RemoveEventHandler()
60 if (handlers->second.empty()) in RemoveEventHandler()
61 event_handlers_.erase(handlers); in RemoveEventHandler()
76 EventHandlersMap::iterator handlers = event_handlers_.find(e.type); in ProcessPendingXEvents() local
77 if (handlers == event_handlers_.end()) in ProcessPendingXEvents()
79 for (std::vector<XEventHandler*>::iterator it = handlers->second.begin(); in ProcessPendingXEvents()
80 it != handlers->second.end(); ++it) { in ProcessPendingXEvents()
/external/vogar/src/vogar/
DOptionParser.java144 private static final HashMap<Class<?>, Handler> handlers = new HashMap<Class<?>, Handler>(); field in OptionParser
146 handlers.put(boolean.class, new BooleanHandler()); in handlers.put()
147 handlers.put(Boolean.class, new BooleanHandler()); in handlers.put()
149 handlers.put(byte.class, new ByteHandler()); in handlers.put()
150 handlers.put(Byte.class, new ByteHandler()); in handlers.put()
151 handlers.put(short.class, new ShortHandler()); in handlers.put()
152 handlers.put(Short.class, new ShortHandler()); in handlers.put()
153 handlers.put(int.class, new IntegerHandler()); in handlers.put()
154 handlers.put(Integer.class, new IntegerHandler()); in handlers.put()
155 handlers.put(long.class, new LongHandler()); in handlers.put()
[all …]
/external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
DSLF4JBridgeHandler.java137 Handler[] handlers = rootLogger.getHandlers(); in uninstall() local
138 for (int i = 0; i < handlers.length; i++) { in uninstall()
139 if (handlers[i] instanceof SLF4JBridgeHandler) { in uninstall()
140 rootLogger.removeHandler(handlers[i]); in uninstall()
153 Handler[] handlers = rootLogger.getHandlers(); in isInstalled() local
154 for (int i = 0; i < handlers.length; i++) { in isInstalled()
155 if (handlers[i] instanceof SLF4JBridgeHandler) { in isInstalled()
168 java.util.logging.Handler[] handlers = rootLogger.getHandlers(); in removeHandlersForRootLogger() local
169 for (int i = 0; i < handlers.length; i++) { in removeHandlersForRootLogger()
170 rootLogger.removeHandler(handlers[i]); in removeHandlersForRootLogger()
/external/clang/lib/AST/
DStmtCXX.cpp27 Stmt *tryBlock, ArrayRef<Stmt *> handlers) { in Create() argument
29 Size += ((handlers.size() + 1) * sizeof(Stmt *)); in Create()
32 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers); in Create()
45 ArrayRef<Stmt *> handlers) in CXXTryStmt() argument
46 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
49 std::copy(handlers.begin(), handlers.end(), Stmts + 1); in CXXTryStmt()
/external/autotest/client/cros/cellular/pseudomodem/
Dlogging_setup.py10 import logging.handlers
52 for handler in root.handlers:
62 syslog_handler = logging.handlers.SysLogHandler(
64 facility=logging.handlers.SysLogHandler.LOG_DAEMON)
/external/javassist/src/main/javassist/bytecode/stackmap/
DLiveness.java78 BasicBlock.Catch handlers = tb.toCatch; in computeLiveness1() local
79 while (handlers != null) { in computeLiveness1()
80 TypedBlock h = (TypedBlock)handlers.body; in computeLiveness1()
86 handlers = handlers.next; in computeLiveness1()
171 BasicBlock.Catch handlers = tb.toCatch; in computeLiveness2except() local
173 while (handlers != null) { in computeLiveness2except()
174 TypedBlock h = (TypedBlock)handlers.body; in computeLiveness2except()
186 handlers = handlers.next; in computeLiveness2except()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
DStructuredLockingTest.java103 List<TryCatchBlockNode> handlers = analyzer.getHandlers(i); in assertStructuredLocking() local
104 if (handlers == null || handlers.isEmpty()) { in assertStructuredLocking()
116 List<TryCatchBlockNode> handlers = analyzer.getHandlers(i); in assertStructuredLocking() local
117 if (handlers != null) { in assertStructuredLocking()
118 for (TryCatchBlockNode node : handlers) { in assertStructuredLocking()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DURLStreamHandlerRuntime.java36 private Map<String, URLStreamHandler> handlers; field in URLStreamHandlerRuntime
49 handlers = getHandlersReference(); in startup()
50 handlers.put(protocol, handler); in startup()
64 handlers.remove(protocol); in shutdown()
/external/v8/src/ic/
Dic-compiler.cc30 CodeHandleList* handlers, KeyedAccessStoreMode store_mode) { in ComputeKeyedStorePolymorphicHandlers() argument
38 receiver_maps, transitioned_maps, handlers, store_mode); in ComputeKeyedStorePolymorphicHandlers()
44 CodeHandleList* handlers, KeyedAccessStoreMode store_mode) { in CompileKeyedStorePolymorphicHandlers() argument
78 handlers->Add(cached_stub); in CompileKeyedStorePolymorphicHandlers()
/external/syslinux/gpxe/src/core/
Dansiesc.c39 static void ansiesc_call_handler ( struct ansiesc_handler *handlers, in ansiesc_call_handler() argument
44 for ( handler = handlers ; handler->function ; handler++ ) { in ansiesc_call_handler()
111 ansiesc_call_handler ( ctx->handlers, ctx->function, in ansiesc_process()
/external/slf4j/slf4j-jdk14/src/test/java/org/slf4j/impl/
DJDK14AdapterLoggerNameTest.java64 Handler[] handlers = logger.getHandlers(); in removeHandlers() local
65 for (int i = 0; i < handlers.length; i++) { in removeHandlers()
66 logger.removeHandler(handlers[i]); in removeHandlers()
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
Dcustomhandlers.py68 self.handlers = [
81 self.handlers.append(
92 for prefix, handler in self.handlers:
155 self.handlers.append(
/external/autotest/site_utils/
Dlog_socket_server_unittest.py6 import logging.handlers
28 logging.getLogger().handlers = []
29 socketHandler = logging.handlers.SocketHandler('localhost', port)
/external/libnfnetlink/src/
Drtnl.c36 for (h = rtnl_handle->handlers; h; h = h->next) { in find_handler()
65 hdlr->next = rtnl_handle->handlers; in rtnl_handler_register()
66 rtnl_handle->handlers = hdlr; in rtnl_handler_register()
81 for (h = rtnl_handle->handlers; h; h = h->next) { in rtnl_handler_unregister()
86 rtnl_handle->handlers = h->next; in rtnl_handler_unregister()
/external/clang/tools/scan-build-py/libscanbuild/resources/
Dsorttable.js383 var handlers = element.events[type];
384 if (!handlers) {
385 handlers = element.events[type] = {};
388 handlers[0] = element["on" + type];
392 handlers[handler.$$guid] = handler;
416 var handlers = this.events[event.type];
418 for (var i in handlers) {
419 this.$$handleEvent = handlers[i];
/external/clang/tools/scan-build/share/scan-build/
Dsorttable.js383 var handlers = element.events[type];
384 if (!handlers) {
385 handlers = element.events[type] = {};
388 handlers[0] = element["on" + type];
392 handlers[handler.$$guid] = handler;
416 var handlers = this.events[event.type];
418 for (var i in handlers) {
419 this.$$handleEvent = handlers[i];
/external/mockftpserver/tags/1.0/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/branches/1.x_Branch/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/tags/1.2.3/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/tags/1.1/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/tags/1.2.2/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/tags/2.1/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/tags/2.0/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.
/external/mockftpserver/tags/2.2/src/site/apt/
Dstubftpserver-features.apt15 …* Easy to configure command handlers for individual FTP server commands to return success/failure …
19 * Easy to implement command handlers for other commands or replace existing command handlers.

12345678910>>...13