/linux-4.1.27/include/linux/ |
D | init.h | 193 #define __define_initcall(fn, id) \ argument 203 #define early_initcall(fn) __define_initcall(fn, early) argument 212 #define pure_initcall(fn) __define_initcall(fn, 0) argument 214 #define core_initcall(fn) __define_initcall(fn, 1) argument 215 #define core_initcall_sync(fn) __define_initcall(fn, 1s) argument 216 #define postcore_initcall(fn) __define_initcall(fn, 2) argument 217 #define postcore_initcall_sync(fn) __define_initcall(fn, 2s) argument 218 #define arch_initcall(fn) __define_initcall(fn, 3) argument 219 #define arch_initcall_sync(fn) __define_initcall(fn, 3s) argument 220 #define subsys_initcall(fn) __define_initcall(fn, 4) argument [all …]
|
D | stop_machine.h | 25 cpu_stop_fn_t fn; member 43 cpu_stop_fn_t fn; member 47 static inline int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg) in stop_one_cpu() 67 cpu_stop_fn_t fn, void *arg, in stop_one_cpu_nowait() 79 cpu_stop_fn_t fn, void *arg) in stop_cpus() 87 cpu_stop_fn_t fn, void *arg) in try_stop_cpus()
|
D | cpu.h | 122 #define cpu_notifier(fn, pri) { \ argument 128 #define __cpu_notifier(fn, pri) { \ argument 134 #define cpu_notifier(fn, pri) do { (void)(fn); } while (0) argument 135 #define __cpu_notifier(fn, pri) do { (void)(fn); } while (0) argument 180 #define cpu_notifier(fn, pri) do { (void)(fn); } while (0) argument 181 #define __cpu_notifier(fn, pri) do { (void)(fn); } while (0) argument 234 #define hotcpu_notifier(fn, pri) cpu_notifier(fn, pri) argument 235 #define __hotcpu_notifier(fn, pri) __cpu_notifier(fn, pri) argument 252 #define hotcpu_notifier(fn, pri) do { (void)(fn); } while (0) argument 253 #define __hotcpu_notifier(fn, pri) do { (void)(fn); } while (0) argument
|
D | kthread.h | 84 #define KTHREAD_WORK_INIT(work, fn) { \ argument 92 #define DEFINE_KTHREAD_WORK(work, fn) \ argument 117 #define init_kthread_work(work, fn) \ argument
|
D | timer.h | 152 #define setup_timer(timer, fn, data) \ argument 154 #define setup_timer_on_stack(timer, fn, data) \ argument 156 #define setup_deferrable_timer_on_stack(timer, fn, data) \ argument
|
D | of_iommu.h | 43 #define IOMMU_OF_DECLARE(name, compat, fn) \ argument
|
D | memory.h | 125 #define hotplug_memory_notifier(fn, pri) ({ \ argument 133 #define hotplug_memory_notifier(fn, pri) ({ 0; }) argument
|
D | dm-io.h | 51 io_notify_fn fn; /* Callback for asynchronous requests */ member
|
D | thread_info.h | 20 long (*fn)(struct restart_block *); member
|
D | suspend.h | 382 #define pm_notifier(fn, pri) { \ argument 438 #define pm_notifier(fn, pri) do { (void)(fn); } while (0) argument
|
D | clocksource.h | 247 #define CLOCKSOURCE_OF_DECLARE(name, compat, fn) \ argument
|
D | of.h | 927 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ argument 933 #define _OF_DECLARE(table, name, compat, fn, fn_type) \ argument 943 #define OF_DECLARE_1(table, name, compat, fn) \ argument 945 #define OF_DECLARE_2(table, name, compat, fn) \ argument
|
D | pm.h | 693 #define suspend_report_result(fn, ret) \ argument 732 #define suspend_report_result(fn, ret) do {} while (0) argument
|
/linux-4.1.27/arch/um/include/shared/ |
D | init.h | 91 #define __uml_initcall(fn) \ argument 94 #define __uml_exitcall(fn) \ argument 99 #define __uml_postsetup(fn) \ argument 109 #define __uml_setup(str, fn, help...) \ argument 115 #define __uml_setup(str, fn, help...) \ argument 119 #define __uml_help(fn, help...) \ argument 136 #define __define_initcall(level,fn) \ argument 143 #define __initcall(fn) __define_initcall("1", fn) argument 145 #define __exitcall(fn) static exitcall_t __exitcall_##fn __exit_call = fn argument
|
/linux-4.1.27/arch/arm/include/asm/ |
D | glue.h | 19 #define ____glue(name,fn) name##fn argument 21 #define ____glue(name,fn) name/**/fn argument 23 #define __glue(name,fn) ____glue(name,fn) argument
|
D | setup.h | 21 #define __tagtable(tag, fn) \ argument
|
D | traps.h | 15 int (*fn)(struct pt_regs *regs, unsigned int instr); member
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | machdep.h | 338 #define __define_machine_initcall(mach, fn, id) \ argument 345 #define machine_early_initcall(mach, fn) __define_machine_initcall(mach, fn, early) argument 346 #define machine_core_initcall(mach, fn) __define_machine_initcall(mach, fn, 1) argument 347 #define machine_core_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 1s) argument 348 #define machine_postcore_initcall(mach, fn) __define_machine_initcall(mach, fn, 2) argument 349 #define machine_postcore_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 2s) argument 350 #define machine_arch_initcall(mach, fn) __define_machine_initcall(mach, fn, 3) argument 351 #define machine_arch_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 3s) argument 352 #define machine_subsys_initcall(mach, fn) __define_machine_initcall(mach, fn, 4) argument 353 #define machine_subsys_initcall_sync(mach, fn) __define_machine_initcall(mach, fn, 4s) argument [all …]
|
D | bitops.h | 57 #define DEFINE_BITOP(fn, op, prefix) \ argument 102 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument
|
D | mpic_timer.h | 38 struct mpic_timer *mpic_request_timer(irq_handler_t fn, void *dev, in mpic_request_timer()
|
/linux-4.1.27/arch/arm/kernel/ |
D | psci.c | 87 u32 fn, power_state; in psci_cpu_suspend() local 98 u32 fn, power_state; in psci_cpu_off() local 109 u32 fn; in psci_cpu_on() local 119 u32 fn; in psci_migrate() local 130 u32 fn; in psci_affinity_info() local 140 u32 fn; in psci_migrate_info_type() local
|
D | traps.c | 394 int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL; in call_undef_hook() local 787 void __readwrite_bug(const char *fn) in __readwrite_bug()
|
/linux-4.1.27/kernel/ |
D | stop_machine.c | 116 int stop_one_cpu(unsigned int cpu, cpu_stop_fn_t fn, void *arg) in stop_one_cpu() 142 int (*fn)(void *); member 244 int stop_two_cpus(unsigned int cpu1, unsigned int cpu2, cpu_stop_fn_t fn, void *arg) in stop_two_cpus() 319 void stop_one_cpu_nowait(unsigned int cpu, cpu_stop_fn_t fn, void *arg, in stop_one_cpu_nowait() 331 cpu_stop_fn_t fn, void *arg, in queue_stop_cpus_work() 357 cpu_stop_fn_t fn, void *arg) in __stop_cpus() 395 int stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg) in stop_cpus() 424 int try_stop_cpus(const struct cpumask *cpumask, cpu_stop_fn_t fn, void *arg) in try_stop_cpus() 465 cpu_stop_fn_t fn = work->fn; in cpu_stopper_thread() local
|
/linux-4.1.27/drivers/md/bcache/ |
D | sysfs.h | 14 #define SHOW(fn) \ argument 18 #define STORE(fn) \ argument 22 #define SHOW_LOCKED(fn) \ argument 32 #define STORE_LOCKED(fn) \ argument
|
D | closure.h | 154 closure_fn *fn; member 238 static inline void set_closure_fn(struct closure *cl, closure_fn *fn, in set_closure_fn() 378 static inline void closure_call(struct closure *cl, closure_fn fn, in closure_call()
|
D | btree.h | 280 struct bkey *from, btree_map_nodes_fn *fn) in bch_btree_map_nodes() 288 btree_map_nodes_fn *fn) in bch_btree_map_leaf_nodes()
|
D | btree.c | 116 #define btree(fn, key, b, op, ...) \ argument 136 #define btree_root(fn, c, op, ...) \ argument 2270 btree_map_nodes_fn *fn, int flags) in bch_btree_map_nodes_recurse() 2298 struct bkey *from, btree_map_nodes_fn *fn, int flags) in __bch_btree_map_nodes() 2304 struct bkey *from, btree_map_keys_fn *fn, in bch_btree_map_keys_recurse() 2331 struct bkey *from, btree_map_keys_fn *fn, int flags) in bch_btree_map_keys()
|
/linux-4.1.27/drivers/pinctrl/sh-pfc/ |
D | sh_pfc.h | 166 #define PINMUX_IPSR_NOGP(ispr, fn) \ argument 168 #define PINMUX_IPSR_DATA(ipsr, fn) \ argument 170 #define PINMUX_IPSR_NOGM(ispr, fn, ms) \ argument 172 #define PINMUX_IPSR_NOFN(ipsr, fn, ms) \ argument 174 #define PINMUX_IPSR_MSEL(ipsr, fn, ms) \ argument 176 #define PINMUX_IPSR_MODSEL_DATA(ipsr, fn, ms) \ argument 183 #define PORT_GP_1(bank, pin, fn, sfx) fn(bank, pin, GP_##bank##_##pin, sfx) argument 185 #define PORT_GP_32(bank, fn, sfx) \ argument 203 #define PORT_GP_32_REV(bank, fn, sfx) \ argument 242 #define PORT_1(pn, fn, pfx, sfx) fn(pn, pfx, sfx) argument [all …]
|
/linux-4.1.27/arch/x86/include/asm/crypto/ |
D | glue_helper.h | 20 #define GLUE_FUNC_CAST(fn) ((common_glue_func_t)(fn)) argument 21 #define GLUE_CBC_FUNC_CAST(fn) ((common_glue_cbc_func_t)(fn)) argument 22 #define GLUE_CTR_FUNC_CAST(fn) ((common_glue_ctr_func_t)(fn)) argument 23 #define GLUE_XTS_FUNC_CAST(fn) ((common_glue_xts_func_t)(fn)) argument
|
/linux-4.1.27/net/ipv6/ |
D | ip6_fib.c | 145 struct fib6_node *fn; in node_alloc() local 152 static void node_free(struct fib6_node *fn) in node_free() 425 struct fib6_node *fn, *in, *ln; in fib6_add_1() local 664 static void fib6_purge_rt(struct rt6_info *rt, struct fib6_node *fn, in fib6_purge_rt() 691 static int fib6_add_rt2node(struct fib6_node *fn, struct rt6_info *rt, in fib6_add_rt2node() 904 struct fib6_node *fn, *pn = NULL; in fib6_add() local 1055 struct fib6_node *fn; in fib6_lookup_1() local 1118 struct fib6_node *fn; in fib6_lookup() local 1152 struct fib6_node *fn; in fib6_locate_1() local 1182 struct fib6_node *fn; in fib6_locate() local [all …]
|
D | ip6_icmp.c | 13 int inet6_register_icmp_sender(ip6_icmp_send_t *fn) in inet6_register_icmp_sender() 20 int inet6_unregister_icmp_sender(ip6_icmp_send_t *fn) in inet6_unregister_icmp_sender()
|
D | route.c | 650 static struct rt6_info *find_rr_leaf(struct fib6_node *fn, in find_rr_leaf() 669 static struct rt6_info *rt6_select(struct fib6_node *fn, int oif, int strict) in rt6_select() 773 static struct fib6_node* fib6_backtrack(struct fib6_node *fn, in fib6_backtrack() 794 struct fib6_node *fn; in ip6_pol_route_lookup() local 918 struct fib6_node *fn, *saved_fn; in ip6_pol_route() local 1208 struct fib6_node *fn; in __ip6_route_redirect() local 1793 struct fib6_node *fn; in ip6_route_del() local 1993 struct fib6_node *fn; in rt6_get_route_info() local
|
/linux-4.1.27/sound/ |
D | sound_firmware.c | 10 static int do_mod_firmware_load(const char *fn, char **fp) in do_mod_firmware_load() 67 int mod_firmware_load(const char *fn, char **fp) in mod_firmware_load()
|
/linux-4.1.27/drivers/sh/intc/ |
D | handle.c | 45 unsigned int fn, mode; in _intc_mask_data() local 113 unsigned int fn, n, mode, bit; in _intc_prio_data() local 179 unsigned int i, j, fn, mode; in intc_ack_data() local 211 unsigned long (*fn)(unsigned long, unsigned long, in intc_enable_disable() local 262 unsigned int i, j, fn, bit; in intc_get_sense_handle() local
|
D | balancing.c | 45 unsigned int i, j, fn, mode; in intc_dist_data() local
|
D | virq.c | 136 unsigned int fn = REG_FN_TEST_BASE + (subgroup->reg_width >> 3) - 1; in intc_subgroup_data() local
|
D | internals.h | 10 #define _INTC_MK(fn, mode, addr_e, addr_d, width, shift) \ argument
|
/linux-4.1.27/init/ |
D | main.c | 685 ctor_fn_t *fn = (ctor_fn_t *) __ctors_start; in do_ctors() local 723 static bool __init_or_module initcall_blacklisted(initcall_t fn) in initcall_blacklisted() 752 static bool __init_or_module initcall_blacklisted(initcall_t fn) in initcall_blacklisted() 759 static int __init_or_module do_one_initcall_debug(initcall_t fn) in do_one_initcall_debug() 777 int __init_or_module do_one_initcall(initcall_t fn) in do_one_initcall() 844 initcall_t *fn; in do_initcall_level() local 887 initcall_t *fn; in do_pre_smp_initcalls() local
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | soc.h | 539 #define omap_initcall(level, fn) \ argument 548 #define omap_early_initcall(fn) omap_initcall(early_initcall, fn) argument 549 #define omap_core_initcall(fn) omap_initcall(core_initcall, fn) argument 550 #define omap_postcore_initcall(fn) omap_initcall(postcore_initcall, fn) argument 551 #define omap_arch_initcall(fn) omap_initcall(arch_initcall, fn) argument 552 #define omap_subsys_initcall(fn) omap_initcall(subsys_initcall, fn) argument 553 #define omap_device_initcall(fn) omap_initcall(device_initcall, fn) argument 554 #define omap_late_initcall(fn) omap_initcall(late_initcall, fn) argument 555 #define omap_late_initcall_sync(fn) omap_initcall(late_initcall_sync, fn) argument
|
D | pdata-quirks.c | 31 void (*fn)(void); member
|
/linux-4.1.27/drivers/mmc/core/ |
D | sdio_ops.c | 68 static int mmc_io_rw_direct_host(struct mmc_host *host, int write, unsigned fn, in mmc_io_rw_direct_host() 114 int mmc_io_rw_direct(struct mmc_card *card, int write, unsigned fn, in mmc_io_rw_direct() 121 int mmc_io_rw_extended(struct mmc_card *card, int write, unsigned fn, in mmc_io_rw_extended()
|
D | sdio_cis.c | 240 unsigned char x, fn; in sdio_read_cis() local
|
D | sdio.c | 61 static int sdio_init_func(struct mmc_card *card, unsigned int fn) in sdio_init_func()
|
/linux-4.1.27/arch/arm64/kernel/ |
D | psci.c | 129 u32 fn, power_state; in psci_cpu_suspend() local 140 u32 fn, power_state; in psci_cpu_off() local 151 u32 fn; in psci_cpu_on() local 161 u32 fn; in psci_migrate() local 172 u32 fn; in psci_affinity_info() local 182 u32 fn; in psci_migrate_info_type() local
|
D | debug-monitors.c | 295 int (*fn)(struct pt_regs *regs, unsigned int esr) = NULL; in call_break_hook() local
|
D | traps.c | 289 int (*fn)(struct pt_regs *regs, u32 instr) = NULL; in call_undef_hook() local
|
/linux-4.1.27/net/dccp/ |
D | feat.c | 637 struct list_head *fn = dreq ? &dreq->dreq_featneg : &dp->dccps_featneg; in dccp_feat_insert_opts() local 700 static int __feat_register_nn(struct list_head *fn, u8 feat, in __feat_register_nn() 725 static int __feat_register_sp(struct list_head *fn, u8 feat, u8 is_local, in __feat_register_sp() 803 struct list_head *fn = &dccp_sk(sk)->dccps_featneg; in dccp_feat_signal_nn_change() local 942 static int dccp_feat_propagate_ccid(struct list_head *fn, u8 id, bool is_local) in dccp_feat_propagate_ccid() 970 struct list_head *fn = &dp->dccps_featneg; in dccp_feat_finalise_settings() local 1000 struct list_head *fn = &dreq->dreq_featneg; in dccp_feat_server_ccid_dependencies() local 1097 static u8 dccp_feat_change_recv(struct list_head *fn, u8 is_mandatory, u8 opt, in dccp_feat_change_recv() 1208 static u8 dccp_feat_confirm_recv(struct list_head *fn, u8 is_mandatory, u8 opt, in dccp_feat_confirm_recv() 1308 struct list_head *fn = &dccp_sk(sk)->dccps_featneg; in dccp_feat_handle_nn_established() local [all …]
|
/linux-4.1.27/arch/mips/pci/ |
D | ops-bridge.c | 49 int fn = PCI_FUNC(devfn); in pci_conf0_read_config() local 110 int fn = PCI_FUNC(devfn); in pci_conf1_read_config() local 182 int fn = PCI_FUNC(devfn); in pci_conf0_write_config() local 248 int fn = PCI_FUNC(devfn); in pci_conf1_write_config() local
|
D | pcie-octeon.c | 231 int dev, int fn, int reg) in __cvmx_pcie_build_config_addr() 268 int fn, int reg) in cvmx_pcie_config_read8() 290 int fn, int reg) in cvmx_pcie_config_read16() 312 int fn, int reg) in cvmx_pcie_config_read32() 332 static void cvmx_pcie_config_write8(int pcie_port, int bus, int dev, int fn, in cvmx_pcie_config_write8() 351 static void cvmx_pcie_config_write16(int pcie_port, int bus, int dev, int fn, in cvmx_pcie_config_write16() 370 static void cvmx_pcie_config_write32(int pcie_port, int bus, int dev, int fn, in cvmx_pcie_config_write32()
|
/linux-4.1.27/tools/lib/traceevent/ |
D | plugin_mac80211.c | 56 #define SF(fn) pevent_print_num_field(s, fn ":%d", event, fn, record, 0) argument 57 #define SFX(fn) pevent_print_num_field(s, fn ":%#x", event, fn, record, 0) argument
|
/linux-4.1.27/crypto/ |
D | cbc.c | 46 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_encrypt_segment() local 70 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_encrypt_inplace() local 118 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_decrypt_segment() local 144 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_cbc_decrypt_inplace() local
|
D | pcbc.c | 49 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_encrypt_segment() local 74 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_encrypt_inplace() local 127 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_decrypt_segment() local 154 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_pcbc_decrypt_inplace() local
|
D | ctr.c | 77 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_ctr_crypt_segment() local 103 void (*fn)(struct crypto_tfm *, u8 *, const u8 *) = in crypto_ctr_crypt_inplace() local
|
D | xts.c | 83 void (*fn)(struct crypto_tfm *, u8 *, const u8 *); member
|
D | lrw.c | 102 void (*fn)(struct crypto_tfm *, u8 *, const u8 *); member
|
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb/ |
D | vsc7326_reg.h | 70 #define REG_TEST(ie,fn) CRA(0x2,ie&1,0x00+fn) /* Mode & Test Register */ argument 71 #define REG_TOP_BOTTOM(ie,fn) CRA(0x2,ie&1,0x10+fn) /* FIFO Buffer Top & Bottom */ argument 72 #define REG_TAIL(ie,fn) CRA(0x2,ie&1,0x20+fn) /* FIFO Write Pointer */ argument 73 #define REG_HEAD(ie,fn) CRA(0x2,ie&1,0x30+fn) /* FIFO Read Pointer */ argument 74 #define REG_HIGH_LOW_WM(ie,fn) CRA(0x2,ie&1,0x40+fn) /* Flow Control Water Marks */ argument 75 #define REG_CT_THRHLD(ie,fn) CRA(0x2,ie&1,0x50+fn) /* Cut Through Threshold */ argument 76 #define REG_FIFO_DROP_CNT(ie,fn) CRA(0x2,ie&1,0x60+fn) /* Drop & CRC Error Counter */ argument 77 #define REG_DEBUG_BUF_CNT(ie,fn) CRA(0x2,ie&1,0x70+fn) /* Input Side Debug Counter */ argument 78 #define REG_BUCKI(fn) CRA(0x2,2,0x20+fn) /* Input Side Debug Counter */ argument 79 #define REG_BUCKE(fn) CRA(0x2,3,0x20+fn) /* Input Side Debug Counter */ argument
|
/linux-4.1.27/virt/kvm/ |
D | vfio.c | 37 struct vfio_group *(*fn)(struct file *); in kvm_vfio_group_get_external_user() local 52 void (*fn)(struct vfio_group *); in kvm_vfio_group_put_external_user() local 65 long (*fn)(struct vfio_group *, unsigned long); in kvm_vfio_group_is_coherent() local
|
/linux-4.1.27/tools/perf/bench/ |
D | mem-memcpy.c | 60 } fn; member 293 memcpy_t fn = r->fn.memcpy; in do_memcpy_cycle() local 315 memcpy_t fn = r->fn.memcpy; in do_memcpy_gettimeofday() local 359 memset_t fn = r->fn.memset; in do_memset_cycle() local 381 memset_t fn = r->fn.memset; in do_memset_gettimeofday() local
|
D | mem-memset-arch.h | 4 #define MEMSET_FN(fn, name, desc) \ argument
|
D | mem-memcpy-arch.h | 4 #define MEMCPY_FN(fn, name, desc) \ argument
|
/linux-4.1.27/arch/powerpc/crypto/ |
D | sha1-powerpc-asm.S | 102 #define STEPUP4(t, fn) \ argument 108 #define STEPUP20(t, fn) \ argument
|
/linux-4.1.27/drivers/usb/gadget/function/ |
D | f_uac2.c | 1002 afunc_bind(struct usb_configuration *cfg, struct usb_function *fn) in afunc_bind() 1143 afunc_set_alt(struct usb_function *fn, unsigned intf, unsigned alt) in afunc_set_alt() 1247 afunc_get_alt(struct usb_function *fn, unsigned intf) in afunc_get_alt() 1267 afunc_disable(struct usb_function *fn) in afunc_disable() 1280 in_rq_cur(struct usb_function *fn, const struct usb_ctrlrequest *cr) in in_rq_cur() 1321 in_rq_range(struct usb_function *fn, const struct usb_ctrlrequest *cr) in in_rq_range() 1364 ac_rq_in(struct usb_function *fn, const struct usb_ctrlrequest *cr) in ac_rq_in() 1375 out_rq_cur(struct usb_function *fn, const struct usb_ctrlrequest *cr) in out_rq_cur() 1388 setup_rq_inf(struct usb_function *fn, const struct usb_ctrlrequest *cr) in setup_rq_inf() 1410 afunc_setup(struct usb_function *fn, const struct usb_ctrlrequest *cr) in afunc_setup()
|
/linux-4.1.27/arch/arm/plat-samsung/ |
D | pm-check.c | 50 static void s3c_pm_run_res(struct resource *ptr, run_fn_t fn, u32 *arg) in s3c_pm_run_res() 68 static void s3c_pm_run_sysram(run_fn_t fn, u32 *arg) in s3c_pm_run_sysram()
|
/linux-4.1.27/fs/jffs2/ |
D | gc.c | 481 struct jffs2_full_dnode *fn = NULL; in jffs2_garbage_collect_live() local 739 struct jffs2_inode_info *f, struct jffs2_full_dnode *fn) in jffs2_garbage_collect_metadata() 994 struct jffs2_inode_info *f, struct jffs2_full_dnode *fn, in jffs2_garbage_collect_hole() 1145 struct jffs2_inode_info *f, struct jffs2_full_dnode *fn, in jffs2_garbage_collect_dnode()
|
D | write.c | 64 struct jffs2_full_dnode *fn; in jffs2_write_dnode() local 351 struct jffs2_full_dnode *fn; in jffs2_write_inode_range() local 445 struct jffs2_full_dnode *fn; in jffs2_do_create() local
|
D | dir.c | 285 struct jffs2_full_dnode *fn; in jffs2_symlink() local 447 struct jffs2_full_dnode *fn; in jffs2_mkdir() local 615 struct jffs2_full_dnode *fn; in jffs2_mknod() local
|
D | nodelist.c | 149 static struct jffs2_node_frag * new_fragment(struct jffs2_full_dnode *fn, uint32_t ofs, uint32_t si… in new_fragment() 363 …ll_dnode_to_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, struct jffs2_full_dnode *fn) in jffs2_add_full_dnode_to_inode()
|
D | file.c | 155 struct jffs2_full_dnode *fn; in jffs2_write_begin() local
|
D | debug.c | 81 struct jffs2_full_dnode *fn = frag->node; in __jffs2_dbg_fragtree_paranoia_check_nolock() local
|
/linux-4.1.27/block/ |
D | t10-pi.c | 49 static int t10_pi_generate(struct blk_integrity_iter *iter, csum_fn *fn, in t10_pi_generate() 73 static int t10_pi_verify(struct blk_integrity_iter *iter, csum_fn *fn, in t10_pi_verify()
|
D | blk-settings.c | 78 void blk_queue_softirq_done(struct request_queue *q, softirq_done_fn *fn) in blk_queue_softirq_done() 90 void blk_queue_rq_timed_out(struct request_queue *q, rq_timed_out_fn *fn) in blk_queue_rq_timed_out() 96 void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn) in blk_queue_lld_busy()
|
D | blk-mq-tag.c | 421 busy_iter_fn *fn, void *data, bool reserved) in bt_for_each() 441 void blk_mq_tag_busy_iter(struct blk_mq_hw_ctx *hctx, busy_iter_fn *fn, in blk_mq_tag_busy_iter()
|
/linux-4.1.27/drivers/staging/board/ |
D | board.h | 9 #define board_staging(str, fn) \ argument
|
/linux-4.1.27/fs/ntfs/ |
D | namei.c | 192 FILE_NAME_ATTR *fn; in ntfs_lookup() local 307 FILE_NAME_ATTR *fn; in ntfs_get_parent() local
|
/linux-4.1.27/arch/x86/kvm/ |
D | mmu_audit.c | 38 inspect_spte_fn fn, int level) in __mmu_spte_walk() 57 static void mmu_spte_walk(struct kvm_vcpu *vcpu, inspect_spte_fn fn) in mmu_spte_walk() 88 static void walk_all_active_sps(struct kvm *kvm, sp_handler fn) in walk_all_active_sps()
|
/linux-4.1.27/drivers/irqchip/ |
D | irqchip.h | 26 #define IRQCHIP_DECLARE(name, compat, fn) OF_DECLARE_2(irqchip, name, compat, fn) argument
|
/linux-4.1.27/arch/arm/mach-shmobile/ |
D | platsmp.c | 22 void shmobile_smp_hook(unsigned int cpu, unsigned long fn, unsigned long arg) in shmobile_smp_hook()
|
/linux-4.1.27/arch/s390/include/asm/ |
D | reset.h | 13 void (*fn)(void); member
|
D | appldata.h | 42 unsigned short fn, void *buffer, in appldata_asm()
|
/linux-4.1.27/tools/perf/util/ |
D | config.c | 127 static int get_value(config_fn_t fn, void *data, char *name, unsigned int len) in get_value() 214 static int perf_parse_file(config_fn_t fn, void *data) in perf_parse_file() 415 static int perf_config_from_file(config_fn_t fn, const char *filename, void *data) in perf_config_from_file() 457 int perf_config(config_fn_t fn, void *data) in perf_config()
|
D | record.c | 11 static int perf_do_probe_api(setup_probe_fn_t fn, int cpu, const char *str) in perf_do_probe_api() 57 static bool perf_probe_api(setup_probe_fn_t fn) in perf_probe_api()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_ioc32.c | 53 drm_ioctl_compat_t *fn = NULL; in nouveau_compat_ioctl() local
|
/linux-4.1.27/arch/mips/include/asm/ |
D | traps.h | 32 #define nmi_notifier(fn, pri) \ argument
|
D | cop2.h | 62 #define cu2_notifier(fn, pri) \ argument
|
D | cpu-info.h | 113 #define proc_cpuinfo_notifier(fn, pri) \ argument
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/ |
D | debug.c | 200 brcms_debugfs_add_entry(struct brcms_pub *drvr, const char *fn, in brcms_debugfs_add_entry() 232 #define __brcms_fn(fn) \ argument
|
D | mac80211_if.h | 39 void (*fn) (void *); /* function called upon expiration */ member
|
/linux-4.1.27/drivers/s390/cio/ |
D | device_pgid.c | 132 static void spid_build_cp(struct ccw_device *cdev, u8 fn) in spid_build_cp() 170 u8 fn; in pgid_wipeout_start() local 196 u8 fn; in spid_do() local 601 u8 fn; in ccw_device_disband_start() local
|
/linux-4.1.27/arch/arm64/include/asm/ |
D | debug-monitors.h | 112 int (*fn)(struct pt_regs *regs, unsigned int esr); member 122 int (*fn)(struct pt_regs *regs, unsigned int esr); member
|
D | traps.h | 31 int (*fn)(struct pt_regs *regs, u32 instr); member
|
/linux-4.1.27/arch/avr32/include/asm/ |
D | traps.h | 17 int (*fn)(struct pt_regs *regs, u32 insn); member
|
D | setup.h | 121 #define __tagtable(tag, fn) \ argument
|
/linux-4.1.27/drivers/md/ |
D | dm-kcopyd.c | 349 dm_kcopyd_notify_fn fn; member 441 dm_kcopyd_notify_fn fn = job->fn; in run_complete_job() local 703 unsigned int flags, dm_kcopyd_notify_fn fn, void *context) in dm_kcopyd_copy() 763 unsigned flags, dm_kcopyd_notify_fn fn, void *context) in dm_kcopyd_zero() 770 dm_kcopyd_notify_fn fn, void *context) in dm_kcopyd_prepare_callback()
|
D | dm-cache-policy-internal.h | 51 policy_walk_fn fn, void *context) in policy_walk_mappings()
|
D | dm-linear.c | 149 iterate_devices_callout_fn fn, void *data) in linear_iterate_devices()
|
D | dm-cache-metadata.c | 957 load_discard_fn fn, void *context) in __load_discards() 982 load_discard_fn fn, void *context) in dm_cache_load_discards() 1059 load_mapping_fn fn; member 1139 load_mapping_fn fn, void *context) in __load_mappings() 1155 load_mapping_fn fn, void *context) in dm_cache_load_mappings()
|
D | dm-io.c | 117 io_notify_fn fn = io->callback; in complete_io() local 439 io_notify_fn fn, void *context) in async_io()
|
D | dm-cache-policy.h | 81 policy_lock_fn fn; member
|
D | dm-flakey.c | 405 static int flakey_iterate_devices(struct dm_target *ti, iterate_devices_callout_fn fn, void *data) in flakey_iterate_devices()
|
D | dm-delay.c | 317 iterate_devices_callout_fn fn, void *data) in delay_iterate_devices()
|
D | dm-stripe.c | 390 iterate_devices_callout_fn fn, void *data) in stripe_iterate_devices()
|
D | dm-cache-policy-mq.c | 286 static void queue_iterate_tick(struct queue *q, iter_fn fn, void *context) in queue_iterate_tick() 1121 policy_walk_fn fn, void *context) in mq_save_hints() 1143 static int mq_walk_mappings(struct dm_cache_policy *p, policy_walk_fn fn, in mq_walk_mappings()
|
/linux-4.1.27/arch/x86/pci/ |
D | direct.c | 98 int dev, fn; in pci_conf2_read() local 140 int dev, fn; in pci_conf2_write() local
|
/linux-4.1.27/tools/perf/ |
D | builtin-bench.c | 33 bench_fn_t fn; member 154 static int run_bench(const char *coll_name, const char *bench_name, bench_fn_t fn, in run_bench()
|
D | builtin-data.c | 13 data_cmd_fn_t fn; member
|
D | perf.c | 33 int (*fn)(int, const char **, const char *); member
|
/linux-4.1.27/net/ipv4/ |
D | fou.c | 398 struct fou_net *fn = net_generic(net, fou_net_id); in fou_add_to_port_list() local 529 struct fou_net *fn = net_generic(net, fou_net_id); in fou_destroy() local 661 struct fou_net *fn = net_generic(net, fou_net_id); in fou_nl_cmd_get_port() local 703 struct fou_net *fn = net_generic(net, fou_net_id); in fou_nl_dump() local 940 struct fou_net *fn = net_generic(net, fou_net_id); in fou_init_net() local 949 struct fou_net *fn = net_generic(net, fou_net_id); in fou_exit_net() local
|
/linux-4.1.27/arch/s390/pci/ |
D | pci_insn.c | 47 static inline u8 __rpcit(u64 fn, u64 addr, u64 range, u8 *status) in __rpcit() 64 int zpci_refresh_trans(u64 fn, u64 addr, u64 range) in zpci_refresh_trans()
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/ |
D | debug.c | 258 const char *(*fn)(int bit) = is_subsys ? libcfs_debug_subsys2str : in libcfs_debug_mask2str() local 304 const char *(*fn)(int bit) = is_subsys ? libcfs_debug_subsys2str : in libcfs_debug_str2mask() local
|
/linux-4.1.27/scripts/dtc/ |
D | dtc-lexer.l | 75 char *line, *tmp, *fn; variable
|
/linux-4.1.27/drivers/hwmon/ |
D | vt1211.c | 354 int fn = sensor_attr_2->nr; in show_in() local 385 int fn = sensor_attr_2->nr; in set_in() local 428 int fn = sensor_attr_2->nr; in show_temp() local 459 int fn = sensor_attr_2->nr; in set_temp() local 504 int fn = sensor_attr_2->nr; in show_fan() local 535 int fn = sensor_attr_2->nr; in set_fan() local 610 int fn = sensor_attr_2->nr; in show_pwm() local 641 int fn = sensor_attr_2->nr; in set_pwm() local
|
D | dme1737.c | 816 int fn = sensor_attr_2->nr; in show_in() local 847 int fn = sensor_attr_2->nr; in set_in() local 894 int fn = sensor_attr_2->nr; in show_temp() local 931 int fn = sensor_attr_2->nr; in set_temp() local 982 int fn = sensor_attr_2->nr; in show_zone() local 1023 int fn = sensor_attr_2->nr; in set_zone() local 1096 int fn = sensor_attr_2->nr; in show_fan() local 1136 int fn = sensor_attr_2->nr; in set_fan() local 1212 int fn = sensor_attr_2->nr; in show_pwm() local 1275 int fn = sensor_attr_2->nr; in set_pwm() local
|
/linux-4.1.27/include/uapi/linux/netfilter/ |
D | x_tables.h | 128 #define XT_MATCH_ITERATE(type, e, fn, args...) \ argument 147 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \ argument 167 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \ argument
|
/linux-4.1.27/lib/ |
D | test-kstrtox.c | 26 #define TEST_FAIL(fn, type, fmt, test) \ argument 45 #define TEST_OK(fn, type, fmt, test) \ argument
|
D | percpu_ida.c | 341 int percpu_ida_for_each_free(struct percpu_ida *pool, percpu_ida_cb fn, in percpu_ida_for_each_free()
|
D | sha1.c | 54 #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \ argument
|
/linux-4.1.27/fs/ocfs2/dlm/ |
D | dlmast.c | 226 dlm_astlockfunc_t *fn; in dlm_do_local_ast() local 270 dlm_bastlockfunc_t *fn = lock->bast; in dlm_do_local_bast() local
|
/linux-4.1.27/drivers/gpu/host1x/ |
D | debug.h | 27 void (*fn)(void *ctx, const char *str, size_t len); member
|
/linux-4.1.27/include/linux/soc/ti/ |
D | knav_qmss.h | 64 knav_queue_notify_fn fn; member
|
/linux-4.1.27/drivers/bus/ |
D | mips_cdmm.c | 143 void *fn; member 157 void (*fn)(struct mips_cdmm_device *) = work->fn; in mips_cdmm_void_work() local 173 int (*fn)(struct mips_cdmm_device *) = work->fn; in mips_cdmm_int_work() local
|
/linux-4.1.27/arch/x86/crypto/ |
D | glue_helper.c | 92 static unsigned int __glue_cbc_encrypt_128bit(const common_glue_func_t fn, in __glue_cbc_encrypt_128bit() 117 int glue_cbc_encrypt_128bit(const common_glue_func_t fn, in glue_cbc_encrypt_128bit() 383 common_glue_func_t fn) in glue_xts_crypt_128bit_one()
|
D | cast5_avx_glue.c | 67 void (*fn)(struct cast5_ctx *ctx, u8 *dst, const u8 *src); in ecb_crypt() local
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
D | iwl-debug.c | 71 #define __iwl_fn(fn) \ argument
|
D | iwl-notif-wait.h | 104 bool (*fn)(struct iwl_notif_wait_data *notif_data, member
|
/linux-4.1.27/tools/perf/tests/ |
D | bp_signal.c | 60 static int bp_event(void *fn, int setup_signal) in bp_event()
|
/linux-4.1.27/fs/proc/ |
D | generic.c | 361 const char *fn; in __proc_create() local 549 const char *fn = name; in remove_proc_entry() local 583 const char *fn = name; in remove_proc_subtree() local
|
/linux-4.1.27/arch/x86/include/asm/ |
D | nmi.h | 48 #define register_nmi_handler(t, fn, fg, n, init...) \ argument
|
/linux-4.1.27/arch/tile/include/arch/ |
D | trio.h | 79 uint_reg_t fn : 3; member
|
/linux-4.1.27/include/uapi/linux/netfilter_bridge/ |
D | ebtables.h | 197 #define EBT_MATCH_ITERATE(e, fn, args...) \ argument 220 #define EBT_WATCHER_ITERATE(e, fn, args...) \ argument 243 #define EBT_ENTRY_ITERATE(entries, size, fn, args...) \ argument
|
/linux-4.1.27/arch/um/drivers/ |
D | chan_user.h | 46 #define __channel_help(fn, prefix) \ argument
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | debug.c | 97 int brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn, in brcmf_debugfs_add_entry()
|
D | bcmsdh.c | 252 static int brcmf_sdiod_request_data(struct brcmf_sdio_dev *sdiodev, u8 fn, in brcmf_sdiod_request_data() 469 static int brcmf_sdiod_buffrw(struct brcmf_sdio_dev *sdiodev, uint fn, in brcmf_sdiod_buffrw() 506 static int brcmf_sdiod_sglist_rw(struct brcmf_sdio_dev *sdiodev, uint fn, in brcmf_sdiod_sglist_rw() 871 int brcmf_sdiod_abort(struct brcmf_sdio_dev *sdiodev, uint fn) in brcmf_sdiod_abort()
|
D | debug.h | 129 int brcmf_debugfs_add_entry(struct brcmf_pub *drvr, const char *fn, in brcmf_debugfs_add_entry()
|
/linux-4.1.27/drivers/media/pci/cx18/ |
D | cx18-firmware.c | 101 static int load_cpu_fw_direct(const char *fn, u8 __iomem *mem, struct cx18 *cx) in load_cpu_fw_direct() 140 static int load_apu_fw_direct(const char *fn, u8 __iomem *dst, struct cx18 *cx, in load_apu_fw_direct()
|
D | cx18-dvb.c | 140 const char *fn = FWFILE; in yuan_mpc718_mt352_reqfw() local
|
/linux-4.1.27/tools/usb/usbip/src/ |
D | usbip.c | 48 int (*fn)(int argc, char *argv[]); member
|
/linux-4.1.27/include/scsi/ |
D | scsi_dh.h | 67 activate_complete fn, void *data) in scsi_dh_activate()
|
/linux-4.1.27/sound/soc/samsung/ |
D | s3c-i2s-v2.c | 50 static void dbg_showcon(const char *fn, u32 con) in dbg_showcon() 71 static inline void dbg_showcon(const char *fn, u32 con) in dbg_showcon()
|
/linux-4.1.27/arch/powerpc/kernel/ |
D | eeh_pe.c | 176 eeh_traverse_func fn, void *flag) in eeh_pe_traverse() 199 eeh_traverse_func fn, void *flag) in eeh_pe_dev_traverse()
|
/linux-4.1.27/include/net/ |
D | pkt_sched.h | 13 int (*fn)(struct Qdisc *, unsigned long cl, struct qdisc_walker *); member
|
D | ip6_fib.h | 72 #define FIB6_SUBTREE(fn) NULL argument 74 #define FIB6_SUBTREE(fn) ((fn)->subtree) argument
|
/linux-4.1.27/drivers/scsi/bfa/ |
D | bfa_hw_cb.c | 27 int fn = bfa_ioc_pcifn(&bfa->ioc); in bfa_hwcb_reginit() local
|
D | bfa_hw_ct.c | 37 int fn = bfa_ioc_pcifn(&bfa->ioc); in bfa_hwct_reginit() local
|
/linux-4.1.27/arch/blackfin/kernel/ |
D | pseudodbg.c | 160 int grp, fn, reg; in execute_pseudodbg() local
|
/linux-4.1.27/arch/x86/xen/ |
D | multicalls.c | 47 void (*fn)(void *); member
|
/linux-4.1.27/drivers/parisc/ |
D | superio.c | 343 int fn; in superio_fixup_irq() local
|
/linux-4.1.27/include/uapi/linux/netfilter_ipv4/ |
D | ip_tables.h | 60 #define IPT_MATCH_ITERATE(e, fn, args...) \ argument 64 #define IPT_ENTRY_ITERATE(entries, size, fn, args...) \ argument
|
/linux-4.1.27/drivers/media/pci/ivtv/ |
D | ivtv-firmware.c | 52 static int load_fw_direct(const char *fn, volatile u8 __iomem *mem, struct ivtv *itv, long size) in load_fw_direct()
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/linux/ |
D | linux-tracefile.c | 242 const char *fn) in cfs_print_to_console()
|
/linux-4.1.27/drivers/pci/host/ |
D | pcie-iproc.c | 77 unsigned fn = PCI_FUNC(devfn); in iproc_pcie_map_cfg_bus() local
|
/linux-4.1.27/samples/bpf/ |
D | test_maps.c | 218 static void do_work(int fn, void *data) in do_work()
|
/linux-4.1.27/include/xen/ |
D | grant_table.h | 58 void (*fn)(void *); member
|
/linux-4.1.27/include/uapi/linux/netfilter_ipv6/ |
D | ip6_tables.h | 55 #define IP6T_MATCH_ITERATE(e, fn, args...) \ argument 57 #define IP6T_ENTRY_ITERATE(entries, size, fn, args...) \ argument
|
/linux-4.1.27/fs/autofs4/ |
D | dev-ioctl.c | 586 ioctl_fn fn; in lookup_dev_ioctl() member 628 ioctl_fn fn = NULL; in _autofs_dev_ioctl() local
|
/linux-4.1.27/net/ieee802154/ |
D | core.c | 56 int (*fn)(struct wpan_phy *phy, void *data); member
|
/linux-4.1.27/arch/arm/mach-pxa/ |
D | pxa3xx.c | 120 void (*fn)(unsigned int) = (void __force *)(sram + 0x8000); in pxa3xx_cpu_standby() local
|
D | mfp-pxa2xx.c | 61 int fn = MFP_AF(c); in __mfp_config_gpio() local
|
/linux-4.1.27/drivers/md/persistent-data/ |
D | dm-space-map-metadata.c | 27 dm_sm_threshold_fn fn; member 38 dm_sm_threshold_fn fn, void *context) in set_threshold() 500 dm_sm_threshold_fn fn, in sm_metadata_register_threshold_callback()
|
D | dm-space-map.h | 147 dm_sm_threshold_fn fn, in dm_sm_register_threshold_callback()
|
/linux-4.1.27/drivers/gpu/drm/armada/ |
D | armada_drm.h | 43 void (*fn)(struct armada_crtc *, void *); member
|
/linux-4.1.27/arch/blackfin/include/asm/ |
D | pgtable.h | 60 #define PTE_BIT_FUNC(fn, op) \ argument
|
/linux-4.1.27/drivers/gpio/ |
D | gpio-wm8994.c | 121 static const char *wm8994_gpio_fn(u16 fn) in wm8994_gpio_fn()
|
D | gpio-wm831x.c | 115 int ret, fn; in wm831x_gpio_set_debounce() local
|
/linux-4.1.27/fs/ |
D | read_write.c | 253 loff_t (*fn)(struct file *, loff_t, int); in vfs_llseek() local 656 loff_t *ppos, iter_fn_t fn) in do_iter_readv_writev() 672 loff_t *ppos, io_fn_t fn) in do_loop_readv_writev() 783 io_fn_t fn; in do_readv_writev() local 957 io_fn_t fn; in compat_do_readv_writev() local
|
/linux-4.1.27/drivers/dma/ |
D | dmaengine.c | 503 dma_filter_fn fn, void *fn_param) in private_candidate() 605 dma_filter_fn fn, void *fn_param) in __dma_request_channel()
|
/linux-4.1.27/drivers/char/ |
D | sonypi.c | 660 static u8 sonypi_call2(u8 dev, u8 fn) in sonypi_call2() 672 static u8 sonypi_call3(u8 dev, u8 fn, u8 v) in sonypi_call3() 704 static void sonypi_set(u8 fn, u8 v) in sonypi_set()
|
D | ppdev.c | 145 size_t (*fn)(struct parport *, void *, size_t, int); in pp_read() local
|
/linux-4.1.27/drivers/scsi/device_handler/ |
D | scsi_dh_hp_sw.c | 292 activate_complete fn, void *data) in hp_sw_activate()
|
D | scsi_dh.c | 410 int scsi_dh_activate(struct request_queue *q, activate_complete fn, void *data) in scsi_dh_activate()
|
D | scsi_dh_emc.c | 534 activate_complete fn, void *data) in clariion_activate()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_ioc32.c | 204 drm_ioctl_compat_t *fn = NULL; in i915_compat_ioctl() local
|
/linux-4.1.27/drivers/gpu/drm/mga/ |
D | mga_ioc32.c | 211 drm_ioctl_compat_t *fn = NULL; in mga_compat_ioctl() local
|
/linux-4.1.27/arch/x86/kernel/ |
D | entry_32.S | 758 #define BUILD_INTERRUPT3(name, nr, fn) \ argument
|
/linux-4.1.27/arch/arm64/mm/ |
D | fault.c | 375 int (*fn)(unsigned long addr, unsigned int esr, struct pt_regs *regs); member
|
/linux-4.1.27/drivers/staging/unisys/uislib/ |
D | uislib.c | 958 uislib_cache_alloc(struct kmem_cache *cur_pool, char *fn, int ln) in uislib_cache_alloc() 974 uislib_cache_free(struct kmem_cache *cur_pool, void *p, char *fn, int ln) in uislib_cache_free()
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
D | ops.c | 206 int (*fn)(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb, member 640 int (*fn)(struct iwl_mvm *mvm, struct iwl_rx_cmd_buffer *rxb, member
|
/linux-4.1.27/drivers/scsi/ |
D | scsi_pm.c | 129 async_func_t fn; in scsi_bus_resume_common() local
|
/linux-4.1.27/arch/arm/mach-omap1/ |
D | lcd_dma.c | 139 unsigned long en, fn; in set_b1_regs() local
|
/linux-4.1.27/arch/xtensa/kernel/ |
D | setup.c | 105 #define __tagtable(tag, fn) static tagtable_t __tagtable_##fn \ argument
|
/linux-4.1.27/sound/soc/ |
D | soc-generic-dmaengine-pcm.c | 209 dma_filter_fn fn = NULL; in dmaengine_pcm_compat_request_channel() local
|
/linux-4.1.27/drivers/usb/core/ |
D | hcd-pci.c | 61 companion_fn fn) in for_each_companion()
|
D | usb.c | 238 int (*fn)(struct usb_device *, void *); member
|
/linux-4.1.27/arch/unicore32/mm/ |
D | fault.c | 405 int (*fn) (unsigned long addr, unsigned int fsr, struct pt_regs *regs); member
|
D | alignment.c | 466 unsigned int fn = COLS_FN_BITS(instr); in do_alignment() local
|
/linux-4.1.27/drivers/gpu/drm/r128/ |
D | r128_ioc32.c | 200 drm_ioctl_compat_t *fn = NULL; in r128_compat_ioctl() local
|
/linux-4.1.27/drivers/block/ |
D | nvme-core.c | 143 nvme_completion_fn fn; member 290 static void *cancel_cmd_info(struct nvme_cmd_info *cmd, nvme_completion_fn *fn) in cancel_cmd_info() 352 nvme_completion_fn *fn) in nvme_finish_cmd() 918 nvme_completion_fn fn; in nvme_process_cq() local 1265 nvme_completion_fn fn; in nvme_cancel_queue_ios() local 2481 kthread_work_func_t fn) in adapter_async_del_queue()
|
/linux-4.1.27/arch/um/kernel/ |
D | process.c | 116 int (*fn)(void *), n; in new_thread_handler() local
|
/linux-4.1.27/drivers/char/ipmi/ |
D | ipmi_watchdog.c | 226 action_fn fn = (action_fn) kp->arg; in set_param_str() local 250 action_fn fn = (action_fn) kp->arg; in get_param_str() local
|
/linux-4.1.27/drivers/acpi/ |
D | pci_root.c | 283 int dev, fn; in acpi_get_pci_dev() local
|
/linux-4.1.27/kernel/bpf/ |
D | syscall.c | 382 const struct bpf_func_proto *fn; in fixup_bpf_calls() local
|
/linux-4.1.27/arch/arm/mm/ |
D | fault.c | 515 int (*fn)(unsigned long addr, unsigned int fsr, struct pt_regs *regs); member
|
/linux-4.1.27/drivers/pinctrl/meson/ |
D | pinctrl-meson.h | 188 #define FUNCTION(fn) \ argument
|
/linux-4.1.27/drivers/leds/ |
D | leds-pm8941-wled.c | 226 u32 (*fn)(u32); member
|
/linux-4.1.27/drivers/tty/serial/8250/ |
D | 8250.h | 23 dma_filter_fn fn; member
|
/linux-4.1.27/drivers/base/ |
D | component.c | 26 int (*fn)(struct device *, void *); member
|
/linux-4.1.27/include/net/sctp/ |
D | sm.h | 81 sctp_state_fn_t *fn; member
|
/linux-4.1.27/drivers/iommu/ |
D | amd_iommu_init.c | 417 static int __init find_last_devid_on_pci(int bus, int dev, int fn, int cap_ptr) in find_last_devid_on_pci() 2283 unsigned int bus, dev, fn; in parse_ivrs_ioapic() local 2313 unsigned int bus, dev, fn; in parse_ivrs_hpet() local
|
/linux-4.1.27/kernel/gcov/ |
D | gcc_3_4.c | 227 static struct gcov_fn_info *get_fn_info(struct gcov_info *info, unsigned int fn) in get_fn_info()
|
/linux-4.1.27/drivers/vhost/ |
D | vhost.h | 20 vhost_work_fn_t fn; member
|
/linux-4.1.27/drivers/tty/serial/ |
D | samsung.h | 47 dma_filter_fn fn; member
|