Home
last modified time | relevance | path

Searched refs:endpoint_id (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/include/zephyr/ipc/
Drpmsg_service.h54 int rpmsg_service_send(int endpoint_id, const void *data, size_t len);
68 bool rpmsg_service_endpoint_is_bound(int endpoint_id);
/Zephyr-latest/subsys/ipc/rpmsg_service/
Drpmsg_service.c152 bool rpmsg_service_endpoint_is_bound(int endpoint_id) in rpmsg_service_endpoint_is_bound() argument
154 return endpoints[endpoint_id].bound; in rpmsg_service_endpoint_is_bound()
157 int rpmsg_service_send(int endpoint_id, const void *data, size_t len) in rpmsg_service_send() argument
159 return rpmsg_send(&endpoints[endpoint_id].ep, data, len); in rpmsg_service_send()