Home
last modified time | relevance | path

Searched full:handlers (Results 1 – 25 of 781) sorted by relevance

12345678910>>...32

/external/webkit/Tools/QueueStatusServer/
Dmain.py36 from handlers.dashboard import Dashboard
37 from handlers.gc import GC
38 from handlers.nextpatch import NextPatch
39 from handlers.patch import Patch
40 from handlers.patchstatus import PatchStatus
41 from handlers.queuestatus import QueueStatus
42 from handlers.recentstatus import QueuesOverview
43 from handlers.releasepatch import ReleasePatch
44 from handlers.showresults import ShowResults
45 from handlers.statusbubble import StatusBubble
[all …]
/external/oprofile/daemon/
Dopd_extended.c58 && ext_feature_table[opd_ext_feat_index].handlers != NULL) in is_ext_enabled()
68 && ext_feature_table[opd_ext_feat_index].handlers != NULL in is_ext_sfile_enabled()
69 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile != NULL) in is_ext_sfile_enabled()
102 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_init(args); in opd_ext_initialize()
120 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_deinit(); in opd_ext_deinitialize()
129 && ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats != NULL) { in opd_ext_print_stats()
131 ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats(); in opd_ext_print_stats()
143 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create != NULL) in opd_ext_sfile_create()
144 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create(sf); in opd_ext_sfile_create()
152 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup != NULL) in opd_ext_sfile_dup()
[all …]
Dopd_extended.h28 // Feature handlers
29 struct opd_ext_handlers * handlers; member
33 * OProfile Extended handlers
42 // Extended sfile handlers
47 * OProfile Extended sub-handlers (sfile)
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DCatchTable.java102 /** {@code non-null;} list of catch handlers */
103 private final CatchHandlerList handlers; field in CatchTable.Entry
110 * @param handlers {@code non-null;} list of catch handlers
112 public Entry(int start, int end, CatchHandlerList handlers) { in Entry() argument
121 if (handlers.isMutable()) { in Entry()
122 throw new IllegalArgumentException("handlers.isMutable()"); in Entry()
127 this.handlers = handlers; in Entry()
134 hash = (hash * 31) + handlers.hashCode(); in hashCode()
162 return handlers.compareTo(other.handlers); in compareTo()
184 * Gets the handlers.
[all …]
DStdCatchBuilder.java144 CatchHandlerList handlers = handlersFor(block, addresses); in build() local
150 currentHandlers = handlers; in build()
154 if (currentHandlers.equals(handlers) in build()
157 * The block we are looking at now has the same handlers in build()
167 * The block we are looking at now has incompatible handlers, in build()
169 * one. Note: We only emit an entry if it has associated handlers. in build()
180 currentHandlers = handlers; in build()
267 * handlers.
271 * @param handlers {@code non-null;} the handlers for the range
275 BasicBlock end, CatchHandlerList handlers, in makeEntry() argument
[all …]
/external/chromium-trace/src/shared/js/cr/
Devent_target.js34 var handlers = this.listeners_[type];
35 if (handlers.indexOf(handler) < 0)
36 handlers.push(handler);
50 var handlers = this.listeners_[type];
51 var index = handlers.indexOf(handler);
54 if (handlers.length == 1)
57 handlers.splice(index, 1);
87 var handlers = this.listeners_[type].concat();
88 for (var i = 0, handler; handler = handlers[i]; i++) {
/external/chromium/chrome/browser/resources/shared/js/cr/
Devent_target.js34 var handlers = this.listeners_[type];
35 if (handlers.indexOf(handler) < 0)
36 handlers.push(handler);
50 var handlers = this.listeners_[type];
51 var index = handlers.indexOf(handler);
54 if (handlers.length == 1)
57 handlers.splice(index, 1);
87 var handlers = this.listeners_[type].concat();
88 for (var i = 0, handler; handler = handlers[i]; i++) {
/external/chromium/chrome/browser/custom_handlers/
Dprotocol_handler_registry.h22 // This is where handlers for protocols registered with
39 // Loads a user's registered protocol handlers.
42 // Saves a user's registered protocol handlers.
48 // Returns true if we allow websites to register handlers for the given
60 // Registers the preferences that we store registered protocol handlers in.
73 // Returns a JSON dictionary of protocols to protocol handlers. The caller is
83 // Map from protocols (strings) to protocol handlers.
/external/webkit/Tools/Scripts/webkitpy/common/system/
Dlogutils.py129 """Return a list of the default logging handlers to use.
159 handlers=None): argument
163 A list of references to the logging handlers added to the root
164 logger. This allows the caller to later remove the handlers
176 handlers. The stream must define an "encoding" data attribute,
178 handlers: A list of logging.Handler instances to add to the logger
197 if handlers is None:
198 handlers = _default_handlers(stream)
202 for handler in handlers:
207 return handlers
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
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"); in encode()
140 // Write out the handlers "header" consisting of its size in entries. in encode()
222 * Helper method to annotate or simply print the exception handlers.
248 CatchHandlerList handlers = entry.getHandlers(); in annotateEntries() local
251 String s2 = handlers.toHuman(subPrefix, ""); in annotateEntries()
267 annotateTo.annotate(0, prefix + "handlers:"); in annotateEntries()
297 * @param handlers {@code non-null;} handlers to annotate
299 * @param size {@code >= 1;} the number of bytes the handlers consume
[all …]
/external/guava/guava/src/com/google/common/eventbus/
DEventBus.java74 * <p>When {@code post} is called, all registered handlers for an event are run
75 * in sequence, so handlers should be reasonably quick. If an event may trigger
82 * <p>Handlers should not, in general, throw. If they do, the EventBus will
94 * If an event is posted, but no registered handlers can accept it, it is
112 * All registered event handlers, indexed by event type.
235 * Posts an event to all registered handlers. This method will return
236 * successfully after the event has been posted to all handlers, and
237 * regardless of any exceptions thrown by handlers.
239 * <p>If no handlers have been subscribed for {@code event}'s class, and
321 * Retrieves a mutable set of the currently registered handlers for
[all …]
/external/bluetooth/glib/gobject/
Dgsignal.h336 /* --- signal handlers --- */
456 * @instance: The instance to remove handlers from.
457 * @func: The C closure callback of the handlers (useless for non-C closures).
458 * @data: The closure data of the handlers' closures.
460 * Disconnects all handlers on an instance that match @func and @data.
462 * Returns: The number of handlers that matched.
470 * @instance: The instance to block handlers from.
471 * @func: The C closure callback of the handlers (useless for non-C closures).
472 * @data: The closure data of the handlers' closures.
474 * Blocks all handlers on an instance that match @func and @data.
[all …]
Dgsignal.c66 * provided handlers are frequently connected and disconnected to/from a certain
75 * 2 - Invocation of normal user-provided signal handlers (<emphasis>after</emphasis> flag %FALSE)
81 …* 4 - Invocation of user provided signal handlers, connected with an <emphasis>after</emphasis> f…
87 * The user-provided signal handlers are called in the order they were
89 * All handlers may prematurely stop a signal emission, and any number of
90 * handlers may be connected, disconnected, blocked or unblocked during
92 * There are certain criteria for skipping user handlers in stages 2 and 4
94 * First, user handlers may be <emphasis>blocked</emphasis>, blocked handlers are omitted
101 * Specification of no detail argument for signal handlers (omission of the
239 Handler *handlers; member
[all …]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DTryListBuilder.java41 /*TODO: add logic to merge adjacent, identical try blocks, and remove superflous handlers
61 public LinkedList<Handler> handlers; field in TryListBuilder.TryRange
68 this.handlers = new LinkedList<Handler>(); in TryRange()
108 tryRange.handlers.addAll(this.handlers); in split()
117 handlers.addLast(handler); in appendHandler()
121 handlers.addFirst(handler); in prependHandler()
142 … ArrayList<CodeItem.EncodedCatchHandler> handlers = new ArrayList<CodeItem.EncodedCatchHandler>(); in encodeTries() local
151 new CodeItem.EncodedTypeAddrPair[tryRange.handlers.size()]; in encodeTries()
154 for (Handler handler: tryRange.handlers) { in encodeTries()
167 handlers.add(encodedCatchHandler); in encodeTries()
[all …]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
DCodeItem.java71 * @param encodedCatchHandlers an array of the exception handlers defined for this code/method
105 …* @param encodedCatchHandlers a list of the exception handlers defined for this code/method or nul…
170 …//we need to read in the catch handlers first, so save the offset to the try items for future refe… in readItem()
174 //read in the encoded catch handlers in readItem()
618 for (EncodedTypeAddrPair handler: encodedCatchHandler.handlers) { in replaceInstructionAtAddress()
815 * An array of the individual exception handlers
817 public final EncodedTypeAddrPair[] handlers; field in CodeItem.EncodedCatchHandler
830 * @param handlers an array of the individual exception handlers
834 public EncodedCatchHandler(EncodedTypeAddrPair[] handlers, int catchAllHandlerAddress) { in EncodedCatchHandler() argument
835 this.handlers = handlers; in EncodedCatchHandler()
[all …]
/external/chromium/chrome/common/
Dworker_thread_ticker.cc22 TickHandlerListType* handlers = &ticker_->tick_handler_list_; in Run() local
23 for (TickHandlerListType::const_iterator i = handlers->begin(); in Run()
24 i != handlers->end(); ++i) { in Run()
48 // You cannot change the list of handlers when the timer is running. in RegisterTickHandler()
59 // You cannot change the list of handlers when the timer is running. in UnregisterTickHandler()
/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/libnl-headers/netlink/
Dhandlers.h2 * netlink/handlers.c default netlink message handlers
73 /** Default handlers (quiet) */
75 /** Verbose default handlers (error messages printed) */
77 /** Debug handlers for debugging */
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
Deloop.h79 * @user_data: Pointer to global data passed as eloop_ctx to signal handlers
84 * passed as eloop_ctx parameter to signal handlers.
236 * with other handlers. The global user_data pointer registered with
237 * eloop_init() will be used as eloop_ctx for signal handlers.
255 * with other handlers. The global user_data pointer registered with
256 * eloop_init() will be used as eloop_ctx for signal handlers.
261 * registers handlers for SIGINT and SIGTERM.
279 * with other handlers. The global user_data pointer registered with
280 * eloop_init() will be used as eloop_ctx for signal handlers.
294 * registered event handlers. This function is run after event loop has been
/external/chromium/chrome/browser/ui/webui/
Dconstrained_html_ui.cc31 std::vector<WebUIMessageHandler*> handlers; in RenderViewCreated() local
32 dialog_delegate->GetWebUIMessageHandlers(&handlers); in RenderViewCreated()
35 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin(); in RenderViewCreated()
36 it != handlers.end(); ++it) { in RenderViewCreated()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
DAbstractControlActionsManager.java31 import org.eclipse.ui.handlers.IHandlerActivation;
32 import org.eclipse.ui.handlers.IHandlerService;
38 * Manager for installing/unistalling global handlers for {@link Control} actions commands.
89 // Handlers
122 * Activates the handlers for list of commands (see COMMAND_HANDLERS) with:<br>
168 * Deactivates all handlers and clears handlers collection.
/external/chromium/chrome/browser/resources/shared/js/
Di18n_template.js9 * It currently supports two handlers:
28 * This provides the handlers for the templating engine. The key is used as
33 var handlers = { variable
96 for (var key in handlers) {
111 handlers[name](element, att, obj);
/external/chromium-trace/src/shared/js/
Di18n_template.js9 * It currently supports two handlers:
28 * This provides the handlers for the templating engine. The key is used as
33 var handlers = { variable
96 for (var key in handlers) {
111 handlers[name](element, att, obj);
/external/valgrind/main/docs/internals/
Dnotes.txt54 sigcontext offered to the handler. That means handlers which
145 System call handlers
148 the syscall args from wherever they live, and handlers proper, which
149 do whatever pre/post checks/hanldling is needed. The handlers are
151 handlers from details of knowing how to get hold of syscall arg/result
155 The syscall handlers assume that the result register (RES) does not
157 blithely referring to ARGn in the post-handlers. This should be fixed
/external/chromium/net/ocsp/
Dnss_ocsp.h18 // Initializes OCSP handlers for NSS. This must be called before any
20 // handlers will only ever be initialized once. ShutdownOCSP() must be called
27 // Set URLRequestContext for OCSP handlers.

12345678910>>...32