Home
last modified time | relevance | path

Searched refs:fn (Results 1 - 25 of 50) sorted by relevance

12

/device/soc/rockchip/common/sdk_linux/init/
H A Dmain.c1108 ctor_fn_t *fn = (ctor_fn_t *)__ctors_start; in do_ctors() local
1110 for (; fn < (ctor_fn_t *)__ctors_end; fn++) { in do_ctors()
1111 (*fn)(); in do_ctors()
1150 static bool __init_or_module initcall_blacklisted(initcall_t fn) in initcall_blacklisted() argument
1160 addr = (unsigned long)dereference_function_descriptor(fn); in initcall_blacklisted()
1164 * fn will be "function_name [module_name]" where [module_name] is not in initcall_blacklisted()
1186 static bool __init_or_module initcall_blacklisted(initcall_t fn) in initcall_blacklisted() argument
1193 static __init_or_module void trace_initcall_start_cb(void *data, initcall_t fn) in trace_initcall_start_cb() argument
1197 printk(KERN_DEBUG "calling %pS @ %i\n", fn, task_pid_n in trace_initcall_start_cb()
1201 trace_initcall_finish_cb(void *data, initcall_t fn, int ret) trace_initcall_finish_cb() argument
1227 do_trace_initcall_start(initcall_t fn) do_trace_initcall_start() argument
1234 do_trace_initcall_finish(initcall_t fn, int ret) do_trace_initcall_finish() argument
1243 do_one_initcall(initcall_t fn) do_one_initcall() argument
1301 initcall_entry_t *fn; do_initcall_level() local
1351 initcall_entry_t *fn; do_pre_smp_initcalls() local
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/priv/
H A Dtcpip_priv.h95 err_t tcpip_send_msg_wait_sem(tcpip_callback_fn fn, void *apimsg, sys_sem_t *sem);
108 err_t tcpip_api_call(tcpip_api_call_fn fn, struct tcpip_api_call_data *call);
110 err_t tcpip_linklayer_event_call(tcpip_api_call_fn fn, struct tcpip_api_call_data *call);
119 tcpip_netifapi_priority(tcpip_api_call_fn fn, struct tcpip_api_call_data *call);
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/include/
H A Dbcmsdh.h95 extern int bcmsdh_intr_reg(void *sdh, bcmsdh_cb_fn_t fn, void *argh);
108 extern int bcmsdh_devremove_reg(void *sdh, bcmsdh_cb_fn_t fn, void *argh);
111 * fn: function number
124 * fn: function whose CIS is being requested (0 is common CIS)
148 * fn: function number
160 extern int bcmsdh_send_buf(void *sdh, uint32 addr, uint fn, uint flags,
163 extern int bcmsdh_recv_buf(void *sdh, uint32 addr, uint fn, uint flags,
193 extern int bcmsdh_abort(void *sdh, uint fn);
H A Dhnd_pktq.h139 /* fn(pkt, arg). return true if pkt belongs to bsscfg */
151 * filter fn has taken ownership of the pkt
169 * call the user supplied defer_free_pkt fn on the packet.
172 * filter fn took ownership (or deleted) the pkt.
205 extern void pktq_filter(struct pktq *pq, pktq_filter_t fn, void* arg,
208 extern void pktq_pfilter(struct pktq *pq, int prec, pktq_filter_t fn, void* arg,
237 extern void *pktq_pdeq_with_fn(struct pktq *pq, int prec, ifpkt_cb_t fn, int arg);
H A Dbcmsdbus.h108 extern SDIOH_API_RC sdioh_interrupt_register(sdioh_info_t *si, sdioh_cb_fn_t fn, void *argh);
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dbcmsdh.c266 bcmsdh_intr_reg(void *sdh, bcmsdh_cb_fn_t fn, void *argh) in bcmsdh_intr_reg() argument
276 status = sdioh_interrupt_register(bcmsdh->sdioh, fn, argh); in bcmsdh_intr_reg()
307 bcmsdh_devremove_reg(void *sdh, bcmsdh_cb_fn_t fn, void *argh) in bcmsdh_devremove_reg() argument
611 bcmsdh_recv_buf(void *sdh, uint32 addr, uint fn, uint flags, in bcmsdh_recv_buf() argument
625 __FUNCTION__, fn, addr, nbytes)); in bcmsdh_recv_buf()
643 SDIOH_READ, fn, addr, width, nbytes, buf, pkt); in bcmsdh_recv_buf()
649 bcmsdh_send_buf(void *sdh, uint32 addr, uint fn, uint flags, in bcmsdh_send_buf() argument
663 __FUNCTION__, fn, addr, nbytes)); in bcmsdh_send_buf()
681 SDIOH_WRITE, fn, addr, width, nbytes, buf, pkt); in bcmsdh_send_buf()
707 bcmsdh_abort(void *sdh, uint fn) in bcmsdh_abort() argument
[all...]
H A Ddhd_wlfc.c1530 bool dir, f_processpkt_t fn, void *arg, q_type_t q_type) in _dhd_wlfc_pktq_flush()
1552 if (fn == NULL || (*fn)(p, arg)) { in _dhd_wlfc_pktq_flush()
1625 if (fn == NULL) in _dhd_wlfc_pktq_flush()
1632 _dhd_wlfc_pktq_pdeq_with_fn(struct pktq *pq, int prec, f_processpkt_t fn, void *arg) in _dhd_wlfc_pktq_pdeq_with_fn() argument
1643 if (fn == NULL || (*fn)(p, arg)) { in _dhd_wlfc_pktq_pdeq_with_fn()
1681 _dhd_wlfc_cleanup_txq(dhd_pub_t *dhd, f_processpkt_t fn, void *arg) in _dhd_wlfc_cleanup_txq() argument
1692 while ((pkt = _dhd_wlfc_pktq_pdeq_with_fn(txq, prec, fn, arg))) { in _dhd_wlfc_cleanup_txq()
1742 _dhd_wlfc_cleanup(dhd_pub_t *dhd, f_processpkt_t fn, voi argument
1529 _dhd_wlfc_pktq_flush(athost_wl_status_info_t* ctx, struct pktq *pq, bool dir, f_processpkt_t fn, void *arg, q_type_t q_type) _dhd_wlfc_pktq_flush() argument
1815 _dhd_wlfc_mac_entry_update(athost_wl_status_info_t* ctx, wlfc_mac_descriptor_t* entry, uint8 action, uint8 ifid, uint8 iftype, uint8* ea, f_processpkt_t fn, void *arg) _dhd_wlfc_mac_entry_update() argument
2493 _dhd_wlfc_suppress_txq(dhd_pub_t *dhd, f_processpkt_t fn, void *arg) _dhd_wlfc_suppress_txq() argument
3707 dhd_wlfc_cleanup_txq(dhd_pub_t *dhd, f_processpkt_t fn, void *arg) dhd_wlfc_cleanup_txq() argument
3732 dhd_wlfc_cleanup(dhd_pub_t *dhd, f_processpkt_t fn, void *arg) dhd_wlfc_cleanup() argument
[all...]
H A Ddhd_sdio.c539 static int dhd_bcmsdh_recv_buf(dhd_bus_t *bus, uint32 addr, uint fn, uint flags,
542 static int dhd_bcmsdh_send_buf(dhd_bus_t *bus, uint32 addr, uint fn, uint flags,
4799 DHD_ERROR(("%s: fail on fn %d %s get\n", in dhd_bus_iovar_op()
4802 DHD_INFO(("%s: noted fn %d %s update, value now %d\n", in dhd_bus_iovar_op()
7858 dhd_dump_cis(uint fn, uint8 *cis) in dhd_dump_cis() argument
7861 DHD_INFO(("Function %d CIS:\n", fn)); in dhd_dump_cis()
8151 uint fn, numfn; in dhdsdio_probe_attach() local
8203 for (fn = 0; fn <= numfn; fn in dhdsdio_probe_attach()
9343 dhd_bcmsdh_recv_buf(dhd_bus_t *bus, uint32 addr, uint fn, uint flags, uint8 *buf, uint nbytes, void *pkt, bcmsdh_cmplt_fn_t complete_fn, void *handle) dhd_bcmsdh_recv_buf() argument
9359 dhd_bcmsdh_send_buf(dhd_bus_t *bus, uint32 addr, uint fn, uint flags, uint8 *buf, uint nbytes, void *pkt, bcmsdh_cmplt_fn_t complete_fn, void *handle, int max_retry) dhd_bcmsdh_send_buf() argument
[all...]
/device/soc/rockchip/rk3588/kernel/include/linux/
H A Dandroid_debug_symbols.h53 void android_debug_for_each_module(int (*fn)(const char *mod_name, void *mod_addr, void *data),
67 static inline void android_debug_for_each_module(int (*fn)(const char *mod_name, void *mod_addr, in android_debug_for_each_module()
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/linuxkpi/include/linux/
H A Ddevice.h306 INT32 (*fn)(struct device_driver *, VOID *));
308 INT32 (*fn)(struct device *, VOID *));
364 INT32 (*fn)(struct device *, VOID *));
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/
H A Dmali_kbase_tlstream.h103 void __kbase_tlstream_tl_summary_new_lpu(void *lpu, u32 nr, u32 fn);
201 * @fn: property describing this LPU's functional abilities
208 #define KBASE_TLSTREAM_TL_SUMMARY_NEW_LPU(lpu, nr, fn) __TRACE_IF_ENABLED(tl_summary_new_lpu, lpu, nr, fn)
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/
H A Dmali_kbase_tlstream.h111 void __kbase_tlstream_tl_summary_new_lpu(void *lpu, u32 nr, u32 fn);
214 * @fn: property describing this LPU's functional abilities
221 #define KBASE_TLSTREAM_TL_SUMMARY_NEW_LPU(lpu, nr, fn) \
222 __TRACE_IF_ENABLED(tl_summary_new_lpu, lpu, nr, fn)
/device/qemu/riscv32_virt/liteos_m/board/driver/
H A Dvirtmmio.c88 static bool Negotiate(struct VirtmmioDev *baseDev, uint32_t nth, VirtioFeatureFn fn, void *dev) in Negotiate() argument
99 if (!fn(features, &supported, dev)) { in Negotiate()
/device/qemu/drivers/virtio/
H A Dvirtmmio.c83 static bool Negotiate(struct VirtmmioDev *baseDev, uint32_t nth, VirtioFeatureFn fn, void *dev) in Negotiate() argument
94 if (!fn(features, &supported, dev)) { in Negotiate()
/device/soc/rockchip/common/sdk_linux/include/drm/bridge/
H A Ddw_hdmi.h227 int dw_hdmi_set_plugged_cb(struct dw_hdmi *hdmi, hdmi_codec_plugged_cb fn, struct device *codec_dev);
267 int dw_hdmi_qp_set_plugged_cb(struct dw_hdmi_qp *hdmi, hdmi_codec_plugged_cb fn, struct device *codec_dev);
/device/soc/rockchip/common/vendor/drivers/gpu/drm/bridge/synopsys/
H A Ddw-hdmi-qp-i2s-audio.c187 static int dw_hdmi_qp_i2s_hook_plugged_cb(struct device *dev, void *data, hdmi_codec_plugged_cb fn, in dw_hdmi_qp_i2s_hook_plugged_cb() argument
193 return dw_hdmi_qp_set_plugged_cb(hdmi, fn, codec_dev); in dw_hdmi_qp_i2s_hook_plugged_cb()
/device/soc/rockchip/rk3588/kernel/drivers/gpu/drm/bridge/synopsys/
H A Ddw-hdmi-qp-i2s-audio.c194 hdmi_codec_plugged_cb fn, in dw_hdmi_qp_i2s_hook_plugged_cb()
200 return dw_hdmi_qp_set_plugged_cb(hdmi, fn, codec_dev); in dw_hdmi_qp_i2s_hook_plugged_cb()
193 dw_hdmi_qp_i2s_hook_plugged_cb(struct device *dev, void *data, hdmi_codec_plugged_cb fn, struct device *codec_dev) dw_hdmi_qp_i2s_hook_plugged_cb() argument
/device/soc/rockchip/common/sdk_linux/include/linux/
H A Ddmaengine.h113 * size_dst := fn(op, size_src), so doesn't mean much for destination.
746 * @param: opaque parameter to pass to struct dma_filter.fn
757 * @fn: filter function callback
762 dma_filter_fn fn; member
1451 struct dma_chan *__dma_request_channel(const dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param,
1475 static inline struct dma_chan *__dma_request_channel(const dma_cap_mask_t *mask, dma_filter_fn fn, void *fn_param, in __dma_request_channel() argument
1553 static inline struct dma_chan *dma_request_slave_channel_compat(const dma_cap_mask_t mask, dma_filter_fn fn, in dma_request_slave_channel_compat() argument
1563 if (!fn || !fn_param) { in dma_request_slave_channel_compat()
1567 return __dma_request_channel(&mask, fn, fn_param, NULL); in dma_request_slave_channel_compat()
H A Dclk-provider.h1066 #define CLK_OF_DECLARE(name, compat, fn) OF_DECLARE_1(clk, name, compat, fn)
1072 #define CLK_OF_DECLARE_DRIVER(name, compat, fn) \
1076 fn(np); \
/device/soc/rockchip/common/sdk_linux/kernel/bpf/
H A Dverifier.c4410 const struct bpf_func_proto *fn) in check_func_arg()
4414 enum bpf_arg_type arg_type = fn->arg_type[arg]; in check_func_arg()
4454 err = check_reg_type(env, regno, arg_type, fn->arg_btf_id[arg]); in check_func_arg()
4865 static bool check_raw_mode_ok(const struct bpf_func_proto *fn) in check_raw_mode_ok() argument
4869 if (fn->arg1_type == ARG_PTR_TO_UNINIT_MEM) { in check_raw_mode_ok()
4872 if (fn->arg2_type == ARG_PTR_TO_UNINIT_MEM) { in check_raw_mode_ok()
4875 if (fn->arg3_type == ARG_PTR_TO_UNINIT_MEM) { in check_raw_mode_ok()
4878 if (fn->arg4_type == ARG_PTR_TO_UNINIT_MEM) { in check_raw_mode_ok()
4881 if (fn->arg5_type == ARG_PTR_TO_UNINIT_MEM) { in check_raw_mode_ok()
4898 static bool check_arg_pair_ok(const struct bpf_func_proto *fn) in check_arg_pair_ok() argument
4409 check_func_arg(struct bpf_verifier_env *env, u32 arg, struct bpf_call_arg_meta *meta, const struct bpf_func_proto *fn) check_func_arg() argument
4916 check_refcount_ok(const struct bpf_func_proto *fn, int func_id) check_refcount_ok() argument
4949 check_btf_id_ok(const struct bpf_func_proto *fn) check_btf_id_ok() argument
4966 check_func_proto(const struct bpf_func_proto *fn, int func_id) check_func_proto() argument
5308 const struct bpf_func_proto *fn = NULL; check_helper_call() local
11229 const struct bpf_func_proto *fn; fixup_bpf_calls() local
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/mmc/core/
H A Dsdio.c71 static int sdio_init_func(struct mmc_card *card, unsigned int fn) in sdio_init_func() argument
76 if (WARN_ON(fn > SDIO_MAX_FUNCS)) { in sdio_init_func()
85 func->num = fn; in sdio_init_func()
103 card->sdio_func[fn - 1] = func; in sdio_init_func()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Dnetifapi.h146 netif_ext_callback_fn fn; member
1019 * @param[in] fn The callback function pointer.
1025 err_t netifapi_netif_add_ext_callback(netif_ext_callback_t *callback, netif_ext_callback_fn fn);
H A Dnetif.h1106 void netif_add_ext_callback(netif_ext_callback_t *callback, netif_ext_callback_fn fn);
1111 #define netif_add_ext_callback(callback, fn)
/device/soc/rockchip/common/sdk_linux/drivers/tty/serial/8250/
H A D8250_dma.c293 dma->rxchan = dma_request_slave_channel_compat(mask, dma->fn, dma->rx_param, p->port.dev, "rx"); in serial8250_request_dma()
328 dma->txchan = dma_request_slave_channel_compat(mask, dma->fn, dma->tx_param, p->port.dev, "tx"); in serial8250_request_dma()
H A D8250_dw.c490 data->data.dma.fn = dw8250_idma_filter; in dw8250_quirks()
539 data->data.dma.fn = dw8250_fallback_dma_filter; in dw8250_probe()

Completed in 56 milliseconds

12