Lines Matching refs:status
22 void test_control_return(UINT status);
34 UINT status; in test_application_define() local
44 status = tx_thread_create(&thread_0, "thread 0", thread_0_entry, 1, in test_application_define()
50 if (status != TX_SUCCESS) in test_application_define()
57 status = tx_timer_create(&timer_0, "timer 0", timer_0_expiration, 0x1234, in test_application_define()
61 if (status != TX_SUCCESS) in test_application_define()
76 UINT status; in thread_0_entry() local
85 status = tx_timer_activate(&timer_0); in thread_0_entry()
88 if (status != TX_SUCCESS) in thread_0_entry()
100 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
103 if (status != TX_SUCCESS) in thread_0_entry()
111 status = tx_timer_activate(&timer_0); in thread_0_entry()
114 if (status != TX_SUCCESS) in thread_0_entry()
126 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
129 if (status != TX_SUCCESS) in thread_0_entry()
137 status = tx_timer_activate(&timer_0); in thread_0_entry()
140 if (status != TX_SUCCESS) in thread_0_entry()
152 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
155 if (status != TX_SUCCESS) in thread_0_entry()
163 status = tx_timer_activate(&timer_0); in thread_0_entry()
166 if (status != TX_SUCCESS) in thread_0_entry()
178 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
181 if (status != TX_SUCCESS) in thread_0_entry()
189 status = tx_timer_activate(&timer_0); in thread_0_entry()
192 if (status != TX_SUCCESS) in thread_0_entry()
204 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
207 if (status != TX_SUCCESS) in thread_0_entry()
215 status = tx_timer_activate(&timer_0); in thread_0_entry()
218 if (status != TX_SUCCESS) in thread_0_entry()
230 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
233 if (status != TX_SUCCESS) in thread_0_entry()
241 status = tx_timer_activate(&timer_0); in thread_0_entry()
244 if ((status != TX_SUCCESS) || (timer_0_counter)) in thread_0_entry()
256 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
262 if ((status != TX_SUCCESS) || (timer_0_counter != 1)) in thread_0_entry()