Lines Matching refs:node
295 struct rt_list_node *node; in rt_susp_list_print() local
299 for (node = list->next; node != list; node = node->next) in rt_susp_list_print()
301 thread = RT_THREAD_LIST_NODE_ENTRY(node); in rt_susp_list_print()
304 if (node->next != list) in rt_susp_list_print()
847 rt_list_t *node = RT_NULL; in _thread_get_mutex_priority() local
851 rt_list_for_each(node, &(thread->taken_object_list)) in _thread_get_mutex_priority()
853 mutex = rt_list_entry(node, struct rt_mutex, taken_list); in _thread_get_mutex_priority()
3505 struct rt_mq_message *node, *prev_node = RT_NULL; in _rt_mq_send_wait() local
3506 for (node = mq->msg_queue_head; node != RT_NULL; node = node->next) in _rt_mq_send_wait()
3508 if (node->prio < msg->prio) in _rt_mq_send_wait()
3514 msg->next = node; in _rt_mq_send_wait()
3517 if (node->next == RT_NULL) in _rt_mq_send_wait()
3519 if (node != msg) in _rt_mq_send_wait()
3520 node->next = msg; in _rt_mq_send_wait()
3524 prev_node = node; in _rt_mq_send_wait()