Lines Matching refs:channel_id
77 static int smt_get_secure(fwk_id_t channel_id, bool *secure) in smt_get_secure() argument
90 static int smt_get_max_payload_size(fwk_id_t channel_id, size_t *size) in smt_get_max_payload_size() argument
100 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_get_max_payload_size()
107 static int smt_get_message_header(fwk_id_t channel_id, uint32_t *header) in smt_get_message_header() argument
117 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_get_message_header()
128 static int smt_get_payload(fwk_id_t channel_id, in smt_get_payload() argument
140 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_get_payload()
155 static int smt_write_payload(fwk_id_t channel_id, in smt_write_payload() argument
163 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_write_payload()
182 static int smt_respond(fwk_id_t channel_id, const void *payload, size_t size) in smt_respond() argument
187 channel_ctx = &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_respond()
204 static int smt_transmit(fwk_id_t channel_id, uint32_t message_header, in smt_transmit() argument
214 channel_ctx = &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in smt_transmit()
278 int msg_signal_message(fwk_id_t channel_id, void *msg_in, size_t in_len, void *msg_out, size_t out_… in msg_signal_message() argument
283 &smt_ctx.channel_ctx_table[fwk_id_get_element_idx(channel_id)]; in msg_signal_message()
343 static int msg_channel_init(fwk_id_t channel_id, unsigned int slot_count, in msg_channel_init() argument
346 size_t elt_idx = fwk_id_get_element_idx(channel_id); in msg_channel_init()