Lines Matching refs:instance

496 static void openthread_handle_received_frame(otInstance *instance,  in openthread_handle_received_frame()  argument
505 recv_frame.mChannel = platformRadioChannelGet(instance); in openthread_handle_received_frame()
519 otPlatDiagRadioReceiveDone(instance, &recv_frame, OT_ERROR_NONE); in openthread_handle_received_frame()
521 otPlatRadioReceiveDone(instance, &recv_frame, OT_ERROR_NONE); in openthread_handle_received_frame()
529 static otMessage *openthread_ip4_new_msg(otInstance *instance, otMessageSettings *settings) in openthread_ip4_new_msg() argument
531 return otIp4NewMessage(instance, settings); in openthread_ip4_new_msg()
534 static otError openthread_nat64_send(otInstance *instance, otMessage *message) in openthread_nat64_send() argument
536 return otNat64Send(instance, message); in openthread_nat64_send()
541 static otMessage *openthread_ip4_new_msg(otInstance *instance, otMessageSettings *settings) in openthread_ip4_new_msg() argument
546 static otError openthread_nat64_send(otInstance *instance, otMessage *message) in openthread_nat64_send() argument
553 static void openthread_handle_frame_to_send(otInstance *instance, struct net_pkt *pkt) in openthread_handle_frame_to_send() argument
566 message = is_ip6 ? otIp6NewMessage(instance, &settings) in openthread_handle_frame_to_send()
567 : openthread_ip4_new_msg(instance, &settings); in openthread_handle_frame_to_send()
588 error = is_ip6 ? otIp6Send(instance, message) : openthread_nat64_send(instance, message); in openthread_handle_frame_to_send()