Searched refs:handlers (Results 1 - 25 of 28) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sh/cchips/hd6446x/hd64465/
H A Dgpio.c86 } handlers[GPIO_NPORTS * 8]; variable in typeref:struct:__anon3781
99 if (handlers[portpin].func != 0)
100 handlers[portpin].func(portpin, handlers[portpin].dev);
125 handlers[portpin].func = handler;
126 handlers[portpin].dev = dev;
162 handlers[portpin].func = 0;
163 handlers[portpin].dev = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/powermac/
H A Dpfunc_core.c107 #define PMF_PARSE_CALL(name, cmd, handlers, p...) \
111 if (handlers == NULL) \
113 if (handlers->name) \
114 return handlers->name(cmd->func, cmd->instdata, \
525 struct pmf_handlers *handlers; member in struct:pmf_device
563 struct pmf_handlers *handlers,
579 handlers ? "executing" : "parsing");
604 rc = pmf_parsers[ccode](&cmd, handlers);
613 if (handlers == NULL)
685 struct pmf_handlers *handlers,
562 pmf_parse_one(struct pmf_function *func, struct pmf_handlers *handlers, void *instdata, struct pmf_args *args) argument
684 pmf_register_driver(struct device_node *np, struct pmf_handlers *handlers, void *driverdata) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/os-Linux/
H A Dsignal.c37 /* These are used by both the signal handlers and
118 void (*handlers[_NSIG])(int sig, struct sigcontext *sc); variable
147 (*handlers[sig])(sig, sc);
169 handlers[sig] = (void (*)(int, struct sigcontext *)) handler;
249 * handlers expect them off when they are called. They will
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/cgi-bin/
H A Dsorttable.js424 // create a hash table of event handlers for each element/event pair
425 var handlers = element.events[type];
426 if (!handlers) {
427 handlers = element.events[type] = {};
430 handlers[0] = element["on" + type];
434 handlers[handler.$$guid] = handler;
457 // get a reference to the hash table of event handlers
458 var handlers = this.events[event.type];
460 for (var i in handlers) {
461 this.$$handleEvent = handlers[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/script/
H A Dsorttable.js424 // create a hash table of event handlers for each element/event pair
425 var handlers = element.events[type];
426 if (!handlers) {
427 handlers = element.events[type] = {};
430 handlers[0] = element["on" + type];
434 handlers[handler.$$guid] = handler;
457 // get a reference to the hash table of event handlers
458 var handlers = this.events[event.type];
460 for (var i in handlers) {
461 this.$$handleEvent = handlers[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/cxgb3/
H A Dcxgb3_offload.c628 t3c_tid->client->handlers &&
629 t3c_tid->client->handlers[CPL_ACT_OPEN_RPL]) {
630 return t3c_tid->client->handlers[CPL_ACT_OPEN_RPL] (dev, skb,
647 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
648 t3c_tid->client->handlers[p->opcode]) {
649 return t3c_tid->client->handlers[p->opcode] (dev, skb,
665 if (t3c_tid && t3c_tid->ctx && t3c_tid->client->handlers &&
666 t3c_tid->client->handlers[p->opcode]) {
667 return t3c_tid->client->handlers[p->opcode]
683 if (t3c_tid->ctx && t3c_tid->client->handlers
[all...]
H A Dcxgb3_offload.h73 cxgb3_cpl_handler_func *handlers; member in struct:cxgb3_client
108 /* Flags for return value of CPL message handlers */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/ipmi/
H A Dipmi_si_intf.c127 struct si_sm_handlers *handlers; member in struct:smi_info
320 err = smi_info->handlers->start_transaction(
345 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
356 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 2);
369 smi_info->handlers->start_transaction(smi_info->si_sm, msg, 3);
421 smi_info->handlers->start_transaction(
440 smi_info->handlers->start_transaction(
469 = smi_info->handlers->get_result(
488 len = smi_info->handlers->get_result(smi_info->si_sm, msg, 4);
510 smi_info->handlers
1048 static struct ipmi_smi_handlers handlers = variable in typeref:struct:ipmi_smi_handlers
[all...]
H A Dipmi_msghandler.c220 struct ipmi_smi_handlers *handlers; member in struct:ipmi_smi
850 if (!try_module_get(intf->handlers->owner)) {
855 if (intf->handlers->inc_usecount) {
856 rv = intf->handlers->inc_usecount(intf->send_info);
858 module_put(intf->handlers->owner);
863 /* Hold the lock so intf->handlers is guaranteed to be good
935 if (intf->handlers) {
936 module_put(intf->handlers->owner);
937 if (intf->handlers->dec_usecount)
938 intf->handlers
1321 struct ipmi_smi_handlers *handlers; local
2627 ipmi_register_smi(struct ipmi_smi_handlers *handlers, void *send_info, struct ipmi_device_id *device_id, struct device *si_dev, const char *sysfs_name, unsigned char slave_addr) argument
2897 struct ipmi_smi_handlers *handlers; local
3585 struct ipmi_smi_handlers *handlers; local
3718 struct ipmi_smi_handlers *handlers; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dxattr.c515 #define for_each_xattr_handler(handlers, handler) \
516 for ((handler) = *(handlers)++; \
518 (handler) = *(handlers)++)
524 xattr_resolve_name(struct xattr_handler **handlers, const char **name) argument
531 for_each_xattr_handler(handlers, handler) {
564 struct xattr_handler *handler, **handlers = inode->i_sb->s_xattr; local
568 for_each_xattr_handler(handlers, handler)
573 for_each_xattr_handler(handlers, handler) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dipmi_smi.h176 upper layer until the start_processing() function in the handlers
179 int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
H A Dreiserfs_xattr.h43 struct list_head handlers; member in struct:reiserfs_xattr_handler
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/reiserfs/
H A Dxattr.c1090 xah = list_entry(p, struct reiserfs_xattr_handler, handlers);
1106 xah = list_entry(p, struct reiserfs_xattr_handler, handlers);
1129 /* Add the handlers */
1130 list_add_tail(&user_handler.handlers, &xattr_handlers);
1131 list_add_tail(&trusted_handler.handlers, &xattr_handlers);
1133 list_add_tail(&security_handler.handlers, &xattr_handlers);
1136 list_add_tail(&posix_acl_access_handler.handlers, &xattr_handlers);
1137 list_add_tail(&posix_acl_default_handler.handlers, &xattr_handlers);
1142 xah = list_entry(p, struct reiserfs_xattr_handler, handlers);
1152 /* Clean up other handlers, i
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dencoding.c1229 * Char encoding handlers *
1236 static xmlCharEncodingHandlerPtr *handlers = NULL; variable
1335 if (handlers != NULL) return;
1337 handlers = (xmlCharEncodingHandlerPtr *)
1347 if (handlers == NULL) {
1386 * unregisters all the encoding handlers and the aliases.
1392 if (handlers == NULL) return;
1396 if (handlers[nbCharEncodingHandler] != NULL) {
1397 if (handlers[nbCharEncodingHandler]->name != NULL)
1398 xmlFree(handlers[nbCharEncodingHandle
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dencoding.c1229 * Char encoding handlers *
1236 static xmlCharEncodingHandlerPtr *handlers = NULL; variable
1335 if (handlers != NULL) return;
1337 handlers = (xmlCharEncodingHandlerPtr *)
1347 if (handlers == NULL) {
1386 * unregisters all the encoding handlers and the aliases.
1392 if (handlers == NULL) return;
1396 if (handlers[nbCharEncodingHandler] != NULL) {
1397 if (handlers[nbCharEncodingHandler]->name != NULL)
1398 xmlFree(handlers[nbCharEncodingHandle
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dencoding.c1229 * Char encoding handlers *
1236 static xmlCharEncodingHandlerPtr *handlers = NULL; variable
1335 if (handlers != NULL) return;
1337 handlers = (xmlCharEncodingHandlerPtr *)
1347 if (handlers == NULL) {
1386 * unregisters all the encoding handlers and the aliases.
1392 if (handlers == NULL) return;
1396 if (handlers[nbCharEncodingHandler] != NULL) {
1397 if (handlers[nbCharEncodingHandler]->name != NULL)
1398 xmlFree(handlers[nbCharEncodingHandle
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/cxgb3/
H A Diwch.c59 .handlers = t3c_handlers,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dx_store.S6 | Used by underflow and overflow handlers.
54 | handlers restore fp0-fp3 from there.
H A Dfpsp.h16 | All FPSP handlers begin by executing:
48 | On exit, the handlers execute:
59 | type that was generated. Some handlers may omit the "frestore"
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dpmac_pfunc.h32 * A driver capable of interpreting commands provides a handlers
33 * structure filled with whatever handlers are implemented by this
34 * driver. Non implemented handlers are left NULL.
37 * and that gets passed back to the various handlers.
170 * Register/Unregister a function-capable driver and its handlers
173 struct pmf_handlers *handlers,
189 * Called by the handlers when an irq happens
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libads/
H A Dldap.c1612 } handlers[] = { local
1627 for (i=0; handlers[i].name; i++) {
1628 if (StrCaseCmp(handlers[i].name, field) == 0) {
1630 return handlers[i].string;
1631 handlers[i].handler(field, (struct berval **) values);
1635 if (!handlers[i].name) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/serial/
H A Dsh-sci.c831 irqreturn_t (*handlers[4])(int irq, void *ptr) = {
850 for (i = 0; i < ARRAY_SIZE(handlers); i++) {
853 if (request_irq(port->irqs[i], handlers[i],
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v10/kernel/
H A Dentry.S570 ;; from the other interrupt handlers.
653 ;; special handlers for breakpoint and NMI
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/message/fusion/
H A Dmptbase.c436 devtverboseprintk((MYIOC_s_WARN_FMT "Called %d event handlers, sum results = %d\n",
1614 int handlers; local
1891 rc = handlers = 0;
1897 handlers++;
1904 handlers++;
6170 * ProcessEventNotification - Route EventNotificationReply to all event handlers
6173 * @evHandlers: Pointer to integer, number of event handlers
6176 * event handlers.
6177 * Returns sum of event handlers return values.
6187 int handlers local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/kernel/
H A Dentry-armv.S56 * Invalid mode handlers
84 @ common_invalid - generic code for failed exception (re-entrant version of handlers)
100 * SVC mode handlers
316 * User mode handlers
564 * This is the return code to user mode for abort handlers

Completed in 320 milliseconds

12