Home
last modified time | relevance | path

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

12345678910>>...30

/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/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/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/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/clang/lib/CodeGen/
DCGObjCRuntime.cpp181 llvm::SmallVector<CatchHandler, 8> Handlers; in EmitTryCatchStmt() local
189 Handlers.push_back(CatchHandler()); in EmitTryCatchStmt()
190 CatchHandler &Handler = Handlers.back(); in EmitTryCatchStmt()
205 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size()); in EmitTryCatchStmt()
206 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) in EmitTryCatchStmt()
207 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block); in EmitTryCatchStmt()
220 // Emit the handlers. in EmitTryCatchStmt()
221 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) { in EmitTryCatchStmt()
222 CatchHandler &Handler = Handlers[I]; in EmitTryCatchStmt()
/external/wpa_supplicant/
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()
Dhtml_dialog_ui.cc47 std::vector<WebUIMessageHandler*> handlers; in RenderViewCreated() local
52 (*delegate)->GetWebUIMessageHandlers(&handlers); in RenderViewCreated()
57 for (std::vector<WebUIMessageHandler*>::iterator it = handlers.begin(); in RenderViewCreated()
58 it != handlers.end(); ++it) { in RenderViewCreated()
/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/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.
/external/webkit/Tools/TestResultServer/
Dmain.py36 from handlers import dashboardhandler
37 from handlers import menu
38 from handlers import testfilehandler
/external/chromium/chrome/browser/resources/sync_internals/
Dchrome_sync.js143 // TODO(akalin): Rewrite the C++ side to not need the handlers below.
145 // Sync service event handlers.
151 // Notification event handlers.
161 // Sync manager event handlers.
223 // Function reply handlers.
/external/clang/include/clang/Lex/
DPragma.h89 /// Handlers - This is a map of the handlers in this namespace with their name
92 llvm::StringMap<PragmaHandler*> Handlers; variable
113 return Handlers.empty(); in IsEmpty()
/external/clang/tools/scan-build/
Dsorttable.js382 // create a hash table of event handlers for each element/event pair
383 var handlers = element.events[type];
384 if (!handlers) {
385 handlers = element.events[type] = {};
388 handlers[0] = element["on" + type];
392 handlers[handler.$$guid] = handler;
415 // get a reference to the hash table of event handlers
416 var handlers = this.events[event.type];
418 for (var i in handlers) {
419 this.$$handleEvent = handlers[i];
/external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
Dsorttable.js379 // create a hash table of event handlers for each element/event pair
380 var handlers = element.events[type];
381 if (!handlers) {
382 handlers = element.events[type] = {};
385 handlers[0] = element["on" + type];
389 handlers[handler.$$guid] = handler;
412 // get a reference to the hash table of event handlers
413 var handlers = this.events[event.type];
415 for (var i in handlers) {
416 this.$$handleEvent = handlers[i];
/external/wpa_supplicant_8/src/radius/
Dradius_client.c63 * store registered RX handlers. These handlers are registered by calls to
202 * auth_handlers - Authentication message handlers
207 * num_auth_handlers - Number of handlers in auth_handlers
212 * acct_handlers - Accounting message handlers
217 * num_acct_handlers - Number of handlers in acct_handlers
266 * There can be multiple registered RADIUS message handlers. The handlers will
279 struct radius_rx_handler **handlers, *newh; in radius_client_register() local
283 handlers = &radius->acct_handlers; in radius_client_register()
286 handlers = &radius->auth_handlers; in radius_client_register()
290 newh = os_realloc(*handlers, in radius_client_register()
[all …]

12345678910>>...30