HomeSort by relevance Sort by last modified time
    Searched refs:handlers (Results 1 - 25 of 440) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/firefighter/default/
main.py 7 from handlers import blank
8 from handlers import query
9 from handlers import trace
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
EncodedCatchHandler.java 23 public EncodedTypeAddrPair[] handlers; field in class:EncodedCatchHandler
31 handlers = new EncodedTypeAddrPair[absoluteSize];
33 (handlers[i] = new EncodedTypeAddrPair()).read(file);
44 if (handlers != null) {
45 for (EncodedTypeAddrPair encodedTypeAddrPair : handlers) {
56 if (handlers != null) {
57 for (EncodedTypeAddrPair handler : handlers) {
  /external/webrtc/webrtc/modules/desktop_capture/x11/
shared_x_display.cc 51 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 = event_handlers_.find(e.type) local
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
quick_exit.c 33 * Linked list of quick exit handlers. This is simpler than the atexit()
43 * Lock protecting the handlers list.
47 * Stack of cleanup handlers. These will be invoked in reverse order when
49 static struct quick_exit_handler *handlers; variable in typeref:struct:quick_exit_handler
62 h->next = handlers;
63 handlers = h;
77 for (h = handlers; NULL != h; h = h->next)
  /external/chromium-trace/catapult/firefighter/update/
main.py 7 from handlers import blank
8 from handlers import builds
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/echo/
app.yaml 23 handlers:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/hello/server/
app.yaml 23 handlers:
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
main.py 21 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.StartJobHandler)
    [all...]
  /frameworks/base/tools/preload2/src/com/android/preload/classdataretrieval/hprof/
GeneralHprofDumpHandler.java 27 private List<IHprofDumpHandler> handlers = new ArrayList<>(); field in class:GeneralHprofDumpHandler
30 synchronized (handlers) {
31 handlers.add(h);
36 synchronized (handlers) {
37 handlers.remove(h);
42 synchronized (handlers) {
43 return new ArrayList<>(handlers);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 102 /** {@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) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 101 /** {@code non-null;} list of catch handlers */
102 private final CatchHandlerList handlers; field in class:CatchTable.Entry
109 * @param handlers {@code non-null;} list of catch handlers
111 public Entry(int start, int end, CatchHandlerList handlers) {
120 if (handlers.isMutable()) {
121 throw new IllegalArgumentException("handlers.isMutable()");
126 this.handlers = handlers;
133 hash = (hash * 31) + handlers.hashCode()
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchTable.java 102 /** {@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) {
121 if (handlers.isMutable()) {
122 throw new IllegalArgumentException("handlers.isMutable()");
127 this.handlers = handlers;
134 hash = (hash * 31) + handlers.hashCode()
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/program/
MTryBlock.java 27 public List<MInsn> handlers; field in class:MTryBlock
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
HandlerList.java 46 Handler[] handlers = getHandlers(); local
48 if (handlers!=null && isStarted())
50 for (int i=0;i<handlers.length;i++)
52 handlers[i].handle(target,baseRequest, request, response);
HandlerCollection.java 35 /** A collection of handlers.
37 * The default implementations calls all handlers in list order,
40 * handlers.
65 * @return Returns the handlers.
75 * @param handlers The handlers to set.
77 public void setHandlers(Handler[] handlers)
83 _handlers = handlers;
87 for (int i=0;handlers!=null && i<handlers.length;i++
288 Handler[] handlers = getHandlers(); local
298 Handler[] handlers = getHandlers(); local
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/simple_api/
simple_api_parser.js 19 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.comment(token.data)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/quotas/backend/
app.yaml 23 handlers:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
app.yaml 23 handlers:
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/handlers/
StaticPortConfigHandler.java 17 package com.android.ide.eclipse.monitor.handlers;
24 import org.eclipse.ui.handlers.HandlerUtil;
  /external/autotest/client/cros/cellular/pseudomodem/
logging_setup.py 10 import logging.handlers namespace
52 for handler in root.handlers:
62 syslog_handler = logging.handlers.SysLogHandler(
64 facility=logging.handlers.SysLogHandler.LOG_DAEMON)
  /external/clang/lib/AST/
StmtCXX.cpp 27 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);
  /external/slf4j/jul-to-slf4j/src/main/java/org/slf4j/bridge/
SLF4JBridgeHandler.java 57 * // Optionally remove existing handlers attached to j.u.l root logger
66 * handlers = org.slf4j.bridge.SLF4JBridgeHandler</pre>
137 Handler[] handlers = rootLogger.getHandlers(); local
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(); local
154 for (int i = 0; i < handlers.length; i++) {
155 if (handlers[i] instanceof SLF4JBridgeHandler) {
163 * Invoking this method removes/unregisters/detaches all handlers currently attached to the root logge
168 java.util.logging.Handler[] handlers = rootLogger.getHandlers(); local
    [all...]
  /external/autotest/frontend/afe/
rpcserver_logging.py 1 import logging, logging.handlers, time, os namespace
17 handler = logging.handlers.SocketHandler(
  /external/autotest/client/cros/cellular/
cellular_logging.py 26 log.handlers = [ch]
  /external/autotest/site_utils/
log_socket_server_unittest.py 6 import logging.handlers namespace
28 logging.getLogger().handlers = []
29 socketHandler = logging.handlers.SocketHandler('localhost', port)

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 91011>>