Home
last modified time | relevance | path

Searched refs:priv (Results 51 – 75 of 98) sorted by relevance

1234

/Zephyr-latest/subsys/ipc/ipc_service/lib/
Dicmsg_me.c68 data->ept_cfg.priv = ctx; in icmsg_me_open()
71 data->ept_cfg.priv); in icmsg_me_open()
176 user_buffer_len, ept->priv); in icmsg_me_received_data()
/Zephyr-latest/subsys/ipc/ipc_service/backends/
Dipc_icmsg_me_follower.c123 ept->cb.bound(ept->priv); in bind_ept()
129 static void bound(void *priv) in bound() argument
131 const struct device *instance = priv; in bound()
137 static void received(const void *data, size_t len, void *priv) in received() argument
139 const struct device *instance = priv; in received()
Dipc_icmsg.c26 return icmsg_open(conf, dev_data, &cfg->cb, cfg->priv); in register_ept()
Dipc_icbmsg.c676 ept->cfg->cb.bound(ept->cfg->priv); in match_bound_msg()
796 ept->cfg->cb.bound(ept->cfg->priv); in ept_bound_process()
831 ept->cfg->cb.bound(ept->cfg->priv); in get_ept_and_rx_validate()
866 ept->cfg->cb.received(buffer, size, ept->cfg->priv); in received_data()
947 static void control_received(const void *data, size_t len, void *priv) in control_received() argument
949 const struct device *instance = priv; in control_received()
1003 static void control_bound(void *priv) in control_bound() argument
1005 const struct device *instance = priv; in control_bound()
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/remote/src/
Dmain.c28 static void ep_bound(void *priv) in ep_bound() argument
39 static void ep_recv(const void *data, size_t len, void *priv) in ep_recv() argument
/Zephyr-latest/include/zephyr/linker/
Dkobject-priv-stacks.ld23 #include <zephyr/linker-kobject-prebuilt-priv-stacks.h>
31 #include <zephyr/linker-kobject-prebuilt-priv-stacks.h>
Dcommon-noinit.ld28 #include "kobject-priv-stacks.ld"
/Zephyr-latest/subsys/shell/backends/
Dshell_rpmsg.c15 size_t len, uint32_t src, void *priv) in rpmsg_shell_cb() argument
17 const struct shell_transport *transport = (const struct shell_transport *)priv; in rpmsg_shell_cb()
79 sh_rpmsg->ept.priv = (void *)transport; in init()
/Zephyr-latest/drivers/bluetooth/hci/
Dipc.c283 static void hci_ept_bound(void *priv) in hci_ept_bound() argument
285 const struct device *dev = priv; in hci_ept_bound()
291 static void hci_ept_recv(const void *data, size_t len, void *priv) in hci_ept_recv() argument
293 const struct device *dev = priv; in hci_ept_recv()
397 .priv = (void *)DEVICE_DT_INST_GET(inst), \
/Zephyr-latest/drivers/usb/udc/
Dudc_skeleton.c375 struct udc_skeleton_data *priv = udc_get_private(dev); \
377 k_thread_create(&priv->thread_data, \
385 k_thread_name_set(&priv->thread_data, dev->name); \
406 .priv = &udc_priv_##n, \
/Zephyr-latest/drivers/usb/uhc/
Duhc_common.h28 return data->priv; in uhc_get_private()
/Zephyr-latest/include/zephyr/ipc/
Dipc_rpmsg.h62 void *priv; member
/Zephyr-latest/samples/subsys/ipc/ipc_service/icmsg/src/
Dmain.c32 static void ep_bound(void *priv) in ep_bound() argument
43 static void ep_recv(const void *data, size_t len, void *priv) in ep_recv() argument
/Zephyr-latest/modules/hal_nordic/nrf_802154/serialization/platform/
Dnrf_802154_spinel_backend_ipc.c36 static void endpoint_bound(void *priv) in endpoint_bound() argument
41 static void endpoint_received(const void *data, size_t len, void *priv) in endpoint_received() argument
/Zephyr-latest/drivers/serial/
Duart_hvc_xen.c29 static void hvc_uart_evtchn_cb(void *priv);
219 static void hvc_uart_evtchn_cb(void *priv) in hvc_uart_evtchn_cb() argument
221 struct hvc_xen_data *data = priv; in hvc_uart_evtchn_cb()
/Zephyr-latest/include/zephyr/usb/
Dusb_device.h356 typedef void (*usb_transfer_callback)(uint8_t ep, int tsize, void *priv);
389 usb_transfer_callback cb, void *priv);
Dusbd.h388 void *priv; member
447 return c_data->priv; in usbd_class_get_private()
734 .priv = class_priv, \
/Zephyr-latest/include/zephyr/sys/internal/
Dkobject_internal.h27 uint8_t *priv; member
/Zephyr-latest/samples/subsys/ipc/rpmsg_service/remote/src/
Dmain.c30 size_t len, uint32_t src, void *priv) in endpoint_cb() argument
/Zephyr-latest/samples/subsys/ipc/rpmsg_service/src/
Dmain.c29 size_t len, uint32_t src, void *priv) in endpoint_cb() argument
/Zephyr-latest/tests/subsys/ipc/ipc_service/src/
Dbackend.c40 data->cfg->cb.received(msg, sizeof(*msg), data->cfg->priv); in send()
/Zephyr-latest/doc/services/ipc/ipc_service/
Dipc_service.rst68 static void bound_cb(void *priv)
73 static void recv_cb(const void *data, size_t len, void *priv)
118 static void bound_cb(void *priv)
123 static void recv_cb_nocopy(const void *data, size_t len, void *priv)
/Zephyr-latest/subsys/bluetooth/mesh/
Dbeacon.c83 static struct bt_mesh_beacon *subnet_beacon_get_by_type(struct bt_mesh_subnet *sub, bool priv) in subnet_beacon_get_by_type() argument
86 return priv ? &sub->priv_beacon : &sub->secure_beacon; in subnet_beacon_get_by_type()
243 int bt_mesh_beacon_create(struct bt_mesh_subnet *sub, struct net_buf_simple *buf, bool priv) in bt_mesh_beacon_create() argument
246 if (priv) { in bt_mesh_beacon_create()
613 static void net_beacon_register(struct bt_mesh_beacon *beacon, bool priv) in net_beacon_register() argument
615 if (((priv && bt_mesh_priv_beacon_get() == BT_MESH_PRIV_GATT_PROXY_ENABLED) || in net_beacon_register()
/Zephyr-latest/drivers/firmware/scmi/
Dmailbox.h26 CONCAT(SCMI_TRANSPORT_CHAN_NAME(proto, idx), _, priv)
/Zephyr-latest/samples/subsys/dap/src/
Dmain.c261 static void dapusb_read_cb(uint8_t ep, int size, void *priv) in dapusb_read_cb() argument
263 struct usb_cfg_data *cfg = priv; in dapusb_read_cb()

1234