Searched refs:ops (Results 76 - 100 of 2077) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/notify/
H A Dgroup.c39 if (group->ops->free_group_priv)
40 group->ops->free_group_priv(group);
77 struct fsnotify_group *fsnotify_alloc_group(const struct fsnotify_ops *ops) argument
101 group->ops = ops;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dlcd.h18 * lcd_device->ops_lock is an internal backlight lock protecting the ops
58 /* This protects the 'ops' field. If 'ops' is NULL, the driver that
63 struct lcd_ops *ops; member in struct:lcd_device
98 if (ld->ops && ld->ops->set_power)
99 ld->ops->set_power(ld, power);
104 struct device *parent, void *devdata, struct lcd_ops *ops);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-mmp/
H A Dclock.h18 const struct clkops *ops; member in struct:clk
35 .ops = &apbc_clk_ops, \
43 .ops = _ops, \
51 .ops = &apmu_clk_ops, \
59 .ops = _ops, \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/sh/
H A Dclk.c154 if (clkp->ops && clkp->ops->recalc)
155 clkp->rate = clkp->ops->recalc(clkp);
168 if (likely(clk->ops && clk->ops->disable))
169 clk->ops->disable(clk);
199 if (clk->ops && clk->ops->enable) {
200 ret = clk->ops->enable(clk);
245 if (clkp->ops
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/net/igb/
H A De1000_mbx.c48 if (mbx->ops.read)
49 ret_val = mbx->ops.read(hw, msg, size, mbx_id);
71 else if (mbx->ops.write)
72 ret_val = mbx->ops.write(hw, msg, size, mbx_id);
89 if (mbx->ops.check_for_msg)
90 ret_val = mbx->ops.check_for_msg(hw, mbx_id);
107 if (mbx->ops.check_for_ack)
108 ret_val = mbx->ops.check_for_ack(hw, mbx_id);
125 if (mbx->ops.check_for_rst)
126 ret_val = mbx->ops
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sched/
H A Dematch.c117 * @ops: ematch operations lookup table
120 * The given @ops must have kind set to a unique identifier and the
126 int tcf_em_register(struct tcf_ematch_ops *ops) argument
131 if (ops->match == NULL)
136 if (ops->kind == e->kind)
139 list_add_tail(&ops->link, &ematch_ops);
150 * @ops: ematch operations lookup table
153 * for examples when the module gets unloaded. The @ops parameter must be
158 void tcf_em_unregister(struct tcf_ematch_ops *ops) argument
161 list_del(&ops
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8187se/ieee80211/
H A Dieee80211_crypt.h73 struct ieee80211_crypto_ops *ops; member in struct:ieee80211_crypt_data
78 int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
79 int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192e/ieee80211/
H A Dieee80211_crypt.h73 struct ieee80211_crypto_ops *ops; member in struct:ieee80211_crypt_data
78 int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
79 int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192e/
H A Dieee80211_crypt.h73 struct ieee80211_crypto_ops *ops; member in struct:ieee80211_crypt_data
78 int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
79 int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192su/ieee80211/
H A Dieee80211_crypt.h73 struct ieee80211_crypto_ops *ops; member in struct:ieee80211_crypt_data
78 int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
79 int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_crypt.h73 struct ieee80211_crypto_ops *ops; member in struct:ieee80211_crypt_data
78 int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
79 int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/rtl8192u/
H A Dieee80211_crypt.h73 struct ieee80211_crypto_ops *ops; member in struct:ieee80211_crypt_data
78 int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
79 int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/
H A Dcompress.c38 struct compress_tfm *ops = &tfm->crt_compress; local
40 ops->cot_compress = crypto_compress;
41 ops->cot_decompress = crypto_decompress;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/macintosh/
H A Dwindfarm.h39 struct wf_control_ops *ops; member in struct:wf_control
65 s32 vmax = ct->ops->get_max(ct);
66 return ct->ops->set_value(ct, vmax);
71 s32 vmin = ct->ops->get_min(ct);
72 return ct->ops->set_value(ct, vmin);
89 struct wf_sensor_ops *ops; member in struct:wf_sensor
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/
H A Dpci_bind.c54 device->ops.bind = NULL;
55 device->ops.unbind = NULL;
86 device->ops.bind = acpi_pci_bind;
87 device->ops.unbind = acpi_pci_unbind;
116 device->ops.bind = acpi_pci_bind;
117 device->ops.unbind = acpi_pci_unbind;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sh/kernel/
H A Ddumpstack.c21 const struct stacktrace_ops *ops,
37 ops->address(data, ret_addr, 1);
44 const struct stacktrace_ops *ops,
51 unsigned long *sp, const struct stacktrace_ops *ops,
64 ops->address(data, addr, 1);
66 print_ftrace_graph_addr(addr, data, ops,
20 print_ftrace_graph_addr(unsigned long addr, void *data, const struct stacktrace_ops *ops, struct thread_info *tinfo, int *graph) argument
43 print_ftrace_graph_addr(unsigned long addr, void *data, const struct stacktrace_ops *ops, struct thread_info *tinfo, int *graph) argument
50 stack_reader_dump(struct task_struct *task, struct pt_regs *regs, unsigned long *sp, const struct stacktrace_ops *ops, void *data) argument
H A Dunwinder.c82 static int unwinder_enqueue(struct unwinder *ops) argument
90 if (o == ops)
93 if (o->rating >= ops->rating)
96 list_add(&ops->list, entry);
132 unsigned long *sp, const struct stacktrace_ops *ops,
162 curr_unwinder->dump(task, regs, sp, ops, data);
131 unwind_stack(struct task_struct *task, struct pt_regs *regs, unsigned long *sp, const struct stacktrace_ops *ops, void *data) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/media/
H A Dv4l2-device.h109 if ((cond) && sd->ops->o && sd->ops->o->f) \
110 sd->ops->o->f(sd , ##args); \
123 if ((cond) && sd->ops->o && sd->ops->o->f) \
124 err = sd->ops->o->f(sd , ##args); \
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Drtnetlink.h80 extern int __rtnl_link_register(struct rtnl_link_ops *ops);
81 extern void __rtnl_link_unregister(struct rtnl_link_ops *ops);
82 extern void rtnl_kill_links(struct net *net, struct rtnl_link_ops *ops);
84 extern int rtnl_link_register(struct rtnl_link_ops *ops);
85 extern void rtnl_link_unregister(struct rtnl_link_ops *ops);
89 char *ifname, const struct rtnl_link_ops *ops, struct nlattr *tb[]);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/nand/
H A Dsm_common.c41 struct mtd_oob_ops ops; local
50 ops.mode = MTD_OOB_PLACE;
51 ops.ooboffs = 0;
52 ops.ooblen = mtd->oobsize;
53 ops.oobbuf = (void *)&oob;
54 ops.datbuf = NULL;
57 ret = mtd->write_oob(mtd, ofs, &ops);
58 if (ret < 0 || ops.oobretlen != SM_OOB_SIZE) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/frontends/
H A Dcx24110.h44 if (fe->ops.write)
45 return fe->ops.write(fe, buf, 3);
H A Dmt352.h68 if (fe->ops.write)
69 r = fe->ops.write(fe, buf, len);
H A Dsi21xx.h32 if (fe->ops.write)
33 r = fe->ops.write(fe, buf, 2);
H A Dstb6100_proc.h27 if (&fe->ops)
28 frontend_ops = &fe->ops;
58 if (&fe->ops)
59 frontend_ops = &fe->ops;
87 if (&fe->ops)
88 frontend_ops = &fe->ops;
118 if (&fe->ops)
119 frontend_ops = &fe->ops;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dsmp-ops.h35 extern void register_smp_ops(struct plat_smp_ops *ops);
53 static inline void register_smp_ops(struct plat_smp_ops *ops) argument

Completed in 358 milliseconds

1234567891011>>