Searched defs:handlers (Results 1 - 25 of 96) sorted by relevance

1234

/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)
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
H A Dcontrol.py30 from mapreduce import handlers namespace
114 return handlers.StartJobHandler._start_map(
H A Dmain.py21 handlers:
39 from mapreduce import handlers namespace
59 """Create new handlers map.
70 # Task queue handlers.
73 (r".*/worker_callback.*", handlers.MapperWorkerCallbackHandler),
74 (r".*/controller_callback.*", handlers.ControllerCallbackHandler),
75 (r".*/kickoffjob_callback.*", handlers.KickOffJobHandler),
76 (r".*/finalizejob_callback.*", handlers.FinalizeJobHandler),
79 # All JSON handlers should have /command/ prefix.
80 (r".*/command/start_job", handlers
[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')
H A Dinteractive_xmlrpc_server.py10 import logging.handlers namespace
226 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/client/cros/networking/
H A Dapmanager_xmlrpc_server.py8 import logging.handlers namespace
62 handler = logging.handlers.SysLogHandler(address='/dev/log')
/external/autotest/frontend/afe/
H A Drpcserver_logging.py1 import logging, logging.handlers, time, os namespace
17 handler = logging.handlers.SocketHandler(
H A Drpc_handler.py8 import traceback, pydoc, re, urllib, logging, logging.handlers, inspect namespace
151 @param request: django.core.handlers.wsgi.WSGIRequest object.
/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/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/autotest/client/common_lib/cros/fake_device_server/
H A Dserver.py15 import logging.handlers namespace
112 handler = logging.handlers.SysLogHandler(address='/dev/log')
/external/autotest/client/cros/tendo/n_faced_peerd/
H A Dn_faced_peerd_main.py12 import logging.handlers namespace
102 handler = logging.handlers.SysLogHandler(address='/dev/log')
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/simple_api/
H A Dsimple_api_parser.js19 var SimpleApiParser = module.exports = function (handlers, options) {
21 this.handlers = {
22 doctype: this._wrapHandler(handlers.doctype),
23 startTag: this._wrapHandler(handlers.startTag),
24 endTag: this._wrapHandler(handlers.endTag),
25 text: this._wrapHandler(handlers.text),
26 comment: this._wrapHandler(handlers.comment)
83 this.handlers.startTag(token.tagName, token.attrs, token.selfClosing);
86 this.handlers.endTag(token.tagName);
89 this.handlers
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DStdCatchBuilder.java144 CatchHandlerList handlers = handlersFor(block, addresses);
150 currentHandlers = handlers;
154 if (currentHandlers.equals(handlers)
157 * The block we are looking at now has the same handlers
167 * The block we are looking at now has incompatible handlers,
169 * one. Note: We only emit an entry if it has associated handlers.
180 currentHandlers = handlers;
267 * handlers.
271 * @param handlers {@code non-null;} the handlers fo
274 makeEntry(BasicBlock start, BasicBlock end, CatchHandlerList handlers, BlockAddresses addresses) argument
[all...]
H A DCatchTable.java102 /** {@code non-null;} list of catch handlers */
103 private final CatchHandlerList handlers; field in class:CatchTable.Entry
110 * @param handlers {@code non-null;} list of catch handlers
112 public Entry(int start, int end, CatchHandlerList handlers) { argument
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + 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/autotest/client/cros/bluetooth/
H A Dbluetooth_tester_xmlrpc_server.py10 import logging.handlers namespace
412 handler = logging.handlers.SysLogHandler(address = '/dev/log')
/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/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCatchStructs.java31 * List of exception handlers (tuples of covered range, catch type,
59 * length of the handlers header (encoded size), if known; used for
135 "too many catch handlers");
140 // Write out the handlers "header" consisting of its size in entries.
222 * Helper method to annotate or simply print the exception handlers.
248 CatchHandlerList handlers = entry.getHandlers();
251 String s2 = handlers.toHuman(subPrefix, "");
267 annotateTo.annotate(0, prefix + "handlers:");
297 * @param handlers {@code non-null;} handlers t
304 annotateAndConsumeHandlers(CatchHandlerList handlers, int offset, int size, String prefix, PrintWriter printTo, AnnotatedOutput annotateTo) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DURLHandler.java33 private static final Map<String, Method> handlers; field in class:URLHandler
100 handlers = h;
110 if (handlers != null) {
111 Method m = handlers.get(protocol);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DURLHandler.java29 private static final Map<String, Method> handlers; field in class:URLHandler
96 handlers = h;
106 if (handlers != null) {
107 Method m = handlers.get(protocol);
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DContextHandlerCollection.java42 * {@link org.eclipse.jetty.http.PathMap} to it's contained handlers based
44 * The contexts do not need to be directly contained, only children of the contained handlers.
76 Handler[] handlers=null;
80 handlers = new Handler[]{ branches[b] };
84 handlers = ((HandlerContainer)branches[b]).getChildHandlersByClass(ContextHandler.class);
89 for (int i=0;i<handlers.length;i++)
91 ContextHandler handler=(ContextHandler)handlers[i];
159 public void setHandlers(Handler[] handlers) argument
162 super.setHandlers(handlers);
183 Handler[] handlers
[all...]
/external/v8/src/ic/
H A Dic-compiler.cc66 CodeHandleList* handlers, KeyedAccessStoreMode store_mode) {
74 receiver_maps, transitioned_maps, handlers, store_mode);
80 CodeHandleList* handlers, KeyedAccessStoreMode store_mode) {
120 handlers->Add(cached_stub);
64 ComputeKeyedStorePolymorphicHandlers( MapHandleList* receiver_maps, MapHandleList* transitioned_maps, CodeHandleList* handlers, KeyedAccessStoreMode store_mode) argument
78 CompileKeyedStorePolymorphicHandlers( MapHandleList* receiver_maps, MapHandleList* transitioned_maps, CodeHandleList* handlers, KeyedAccessStoreMode store_mode) argument

Completed in 755 milliseconds

1234