Lines Matching refs:total_time

200 EXECUTION_TIME              total_time;  in _tx_execution_thread_enter()  local
236 total_time = _tx_execution_idle_time_total; in _tx_execution_thread_enter()
239 new_total_time = total_time + delta_time; in _tx_execution_thread_enter()
242 if (new_total_time < total_time) in _tx_execution_thread_enter()
302 EXECUTION_TIME total_time; in _tx_execution_thread_exit() local
344 total_time = thread_ptr -> tx_thread_execution_time_total; in _tx_execution_thread_exit()
347 new_total_time = total_time + delta_time; in _tx_execution_thread_exit()
350 if (new_total_time < total_time) in _tx_execution_thread_exit()
431 EXECUTION_TIME total_time; in _tx_execution_isr_enter() local
484 total_time = thread_ptr -> tx_thread_execution_time_total; in _tx_execution_isr_enter()
487 new_total_time = total_time + delta_time; in _tx_execution_isr_enter()
490 if (new_total_time < total_time) in _tx_execution_isr_enter()
538 total_time = _tx_execution_idle_time_total; in _tx_execution_isr_enter()
541 new_total_time = total_time + delta_time; in _tx_execution_isr_enter()
544 if (new_total_time < total_time) in _tx_execution_isr_enter()
608 EXECUTION_TIME total_time; in _tx_execution_isr_exit() local
645 total_time = _tx_execution_isr_time_total; in _tx_execution_isr_exit()
648 new_total_time = total_time + delta_time; in _tx_execution_isr_exit()
651 if (new_total_time < total_time) in _tx_execution_isr_exit()
945 UINT _tx_execution_thread_time_get(TX_THREAD *thread_ptr, EXECUTION_TIME *total_time) in _tx_execution_thread_time_get() argument
949 *total_time = thread_ptr -> tx_thread_execution_time_total; in _tx_execution_thread_time_get()
993 UINT _tx_execution_thread_total_time_get(EXECUTION_TIME *total_time) in _tx_execution_thread_total_time_get() argument
997 *total_time = _tx_execution_thread_time_total; in _tx_execution_thread_total_time_get()
1041 UINT _tx_execution_isr_time_get(EXECUTION_TIME *total_time) in _tx_execution_isr_time_get() argument
1045 *total_time = _tx_execution_isr_time_total; in _tx_execution_isr_time_get()
1089 UINT _tx_execution_idle_time_get(EXECUTION_TIME *total_time) in _tx_execution_idle_time_get() argument
1093 *total_time = _tx_execution_idle_time_total; in _tx_execution_idle_time_get()