Lines Matching refs:channel_id
77 static int smt_get_secure(fwk_id_t channel_id, bool *secure) in smt_get_secure() argument
87 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_get_secure()
96 static int smt_get_max_payload_size(fwk_id_t channel_id, size_t *size) in smt_get_max_payload_size() argument
106 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_get_max_payload_size()
113 static int smt_get_message_header(fwk_id_t channel_id, uint32_t *header) in smt_get_message_header() argument
123 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_get_message_header()
134 static int smt_get_payload(fwk_id_t channel_id, in smt_get_payload() argument
146 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_get_payload()
162 static int smt_write_payload(fwk_id_t channel_id, in smt_write_payload() argument
170 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_write_payload()
190 static int smt_respond(fwk_id_t channel_id, const void *payload, size_t size) in smt_respond() argument
195 channel_ctx = &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_respond()
217 static int smt_transmit(fwk_id_t channel_id, uint32_t message_header, in smt_transmit() argument
227 channel_ctx = &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_transmit()
333 static int smt_signal_message(fwk_id_t channel_id) in smt_signal_message() argument
338 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_signal_message()
393 static int mailbox_channel_init(fwk_id_t channel_id, unsigned int slot_count, in mailbox_channel_init() argument
396 size_t elt_idx = fwk_id_get_element_idx(channel_id); in mailbox_channel_init()
419 channel_ctx->id = channel_id; in mailbox_channel_init()