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

1 2 3

  /system/core/nexus/
LoopController.cpp 23 IControllerHandler *handlers) :
24 Controller("loop", propmngr, handlers) {
OpenVpnController.h 31 OpenVpnController(PropertyManager *propmngr, IControllerHandler *handlers);
DhcpListener.h 31 DhcpListener(Controller *c, int socket, IDhcpEventHandlers *handlers);
SupplicantListener.h 34 SupplicantListener(ISupplicantEventHandler *handlers,
TiwlanWifiController.h 31 TiwlanWifiController(PropertyManager *propmngr, IControllerHandler *handlers, char *modpath, char *modname, char *modargs);
OpenVpnController.cpp 34 IControllerHandler *handlers) :
35 VpnController(propmngr, handlers) {
DhcpClient.h 43 DhcpClient(IDhcpEventHandlers *handlers);
Controller.h 48 IControllerHandler *handlers);
DhcpListener.cpp 31 DhcpListener::DhcpListener(Controller *c, int socket, IDhcpEventHandlers *handlers) :
33 mHandlers = handlers;
TiwlanWifiController.cpp 38 IControllerHandler *handlers,
41 WifiController(propmngr, handlers, modpath, modname,
VpnController.cpp 29 IControllerHandler *handlers) :
30 Controller("vpn", propmngr, handlers) {
Controller.cpp 39 IControllerHandler *handlers) {
42 mHandlers = handlers;
DhcpClient.cpp 59 DhcpClient::DhcpClient(IDhcpEventHandlers *handlers) :
60 mState(DhcpState::INIT), mHandlers(handlers) {
SupplicantListener.cpp 36 SupplicantListener::SupplicantListener(ISupplicantEventHandler *handlers,
39 mHandlers = handlers;
Supplicant.h 45 Supplicant(WifiController *wc, ISupplicantEventHandler *handlers);
  /external/oprofile/daemon/
opd_extended.c 58 && ext_feature_table[opd_ext_feat_index].handlers != NULL)
68 && ext_feature_table[opd_ext_feat_index].handlers != NULL
69 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile != NULL)
102 ret = ext_feature_table[opd_ext_feat_index].handlers->ext_init(args);
115 && ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats != NULL) {
117 ext_feature_table[opd_ext_feat_index].handlers->ext_print_stats();
129 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create != NULL)
130 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->create(sf);
138 && ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup != NULL)
139 ext_feature_table[opd_ext_feat_index].handlers->ext_sfile->dup(to, from)
    [all...]
opd_extended.h 28 // Feature handlers
29 struct opd_ext_handlers * handlers; member in struct:opd_ext_feature
33 * OProfile Extended handlers
40 // Extended sfile handlers
45 * OProfile Extended sub-handlers (sfile)
opd_trans.h 61 extern handler_t handlers[];
  /external/webkit/WebKitTools/QueueStatusServer/
main.py 36 from handlers.dashboard import Dashboard
37 from handlers.gc import GC
38 from handlers.patch import Patch
39 from handlers.patchstatus import PatchStatus
40 from handlers.recentstatus import RecentStatus
41 from handlers.showresults import ShowResults
42 from handlers.statusbubble import StatusBubble
43 from handlers.updatestatus import UpdateStatus
  /dalvik/dx/src/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...]
StdCatchBuilder.java 144 CatchHandlerList handlers = handlersFor(block, addresses); local
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 for the rang
    [all...]
  /bootable/bootloader/legacy/libboot/
tags.c 34 void tags_parse(void *_tags, struct tag_handler *handlers, unsigned count)
54 struct tag_handler *h = handlers + n;
  /external/kernel-headers/original/linux/
omap_csmi.h 63 int omap_csmi_install_mailbox_handlers(int mailbox, omap_csmi_mailbox_handlers_t handlers);
64 int omap_csmi_uninstall_mailbox_handlers(int mailbox, omap_csmi_mailbox_handlers_t handlers);
  /frameworks/base/tools/preload/
sorttable.js 382 // 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]
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
CatchStructs.java 33 * List of exception handlers (tuples of covered range, catch type,
61 * length of the handlers header (encoded size), if known; used for
137 "too many catch handlers");
142 // Write out the handlers "header" consisting of its size in entries.
224 * Helper method to annotate or simply print the exception handlers.
250 CatchHandlerList handlers = entry.getHandlers(); local
253 String s2 = handlers.toHuman(subPrefix, "");
269 annotateTo.annotate(0, prefix + "handlers:");
299 * @param handlers {@code non-null;} handlers to annotat
    [all...]

Completed in 725 milliseconds

1 2 3