Lines Matching +full:remote +full:- +full:endpoint
4 * SPDX-License-Identifier: Apache-2.0
24 * @brief Register IPC endpoint
26 * Registers IPC endpoint to enable communication with a remote device.
27 * The endpoint is created when the slave device registers it.
31 * @param name String containing the name of the endpoint. Must be identical
33 * @param cb Callback executed when data are available on given endpoint
35 * @retval >=0 id of registered endpoint on success;
36 * @retval -EINPROGRESS when requested to register an endpoint after endpoints
38 * @retval -ENOMEM when there is not enough slots to register the endpoint;
44 * @brief Send data using given IPC endpoint
46 * @param endpoint_id Id of registered endpoint, obtained by
57 * @brief Check if endpoint is bound.
59 * Checks if remote endpoint has been created
60 * and the master has bound its endpoint to it.
62 * @param endpoint_id Id of registered endpoint, obtained by
65 * @retval true endpoint is bound
66 * @retval false endpoint not bound