Lines Matching refs:status

62 void  test_control_return(UINT status);
72 UINT status; in timer_entry() local
84 status = tx_timer_delete(&timer_0); in timer_entry()
87 if (status != TX_CALLER_ERROR) in timer_entry()
95 status = tx_timer_create(&timer_2, "timer 2", timer_0_expiration, 0x1234, in timer_entry()
99 if (status != TX_CALLER_ERROR) in timer_entry()
123 UINT status; in test_isr() local
126 status = tx_timer_delete(&timer_0); in test_isr()
129 if (status != TX_CALLER_ERROR) in test_isr()
137 status = tx_timer_create(&timer_2, "timer 2", timer_0_expiration, 0x1234, in test_isr()
141 if (status != TX_CALLER_ERROR) in test_isr()
162 UINT status; in test_application_define() local
171 status = tx_thread_create(&thread_0, "thread 0", thread_0_entry, 1, in test_application_define()
176 status += tx_thread_create(&thread_1, "thread 1", thread_1_entry, 1, in test_application_define()
182 if (status != TX_SUCCESS) in test_application_define()
189 status = tx_timer_create(&timer_0, "timer 0", timer_0_expiration, 0x1234, in test_application_define()
193 if (status != TX_SUCCESS) in test_application_define()
200 status = tx_timer_create(&timer_1, "timer 1", timer_1_expiration, 0x1234, in test_application_define()
204 if (status != TX_SUCCESS) in test_application_define()
227 UINT status; in thread_0_entry() local
241 status = tx_timer_create(&timer_memory.timer, "timer memory", timer_0_expiration, 0x1234, in thread_0_entry()
246 if ((status != TX_SUCCESS) || in thread_0_entry()
261 status = tx_timer_activate(TX_NULL); in thread_0_entry()
264 if (status != TX_TIMER_ERROR) in thread_0_entry()
274 status = tx_timer_activate(&timer_2); in thread_0_entry()
277 if (status != TX_TIMER_ERROR) in thread_0_entry()
289 status = tx_timer_activate(&timer_2); in thread_0_entry()
292 if (status != TX_ACTIVATE_ERROR) in thread_0_entry()
305 status = tx_timer_activate(&timer_2); in thread_0_entry()
308 if (status != TX_SUCCESS) in thread_0_entry()
319 status = tx_timer_deactivate(TX_NULL); in thread_0_entry()
322 if (status != TX_TIMER_ERROR) in thread_0_entry()
332 status = tx_timer_deactivate(&timer_2); in thread_0_entry()
335 if (status != TX_TIMER_ERROR) in thread_0_entry()
344 status = tx_timer_change(TX_NULL, 1, 1); in thread_0_entry()
347 if (status != TX_TIMER_ERROR) in thread_0_entry()
357 status = tx_timer_change(&timer_2, 1, 1); in thread_0_entry()
360 if (status != TX_TIMER_ERROR) in thread_0_entry()
369 status = tx_timer_change(&timer_0, 0, 1); in thread_0_entry()
372 if (status != TX_TICK_ERROR) in thread_0_entry()
381 status = tx_timer_delete(TX_NULL); in thread_0_entry()
384 if (status != TX_TIMER_ERROR) in thread_0_entry()
394 status = tx_timer_delete(&timer_2); in thread_0_entry()
397 if (status != TX_TIMER_ERROR) in thread_0_entry()
406 status = tx_timer_info_get(TX_NULL, TX_NULL, TX_NULL, TX_NULL, TX_NULL, TX_NULL); in thread_0_entry()
409 if (status != TX_TIMER_ERROR) in thread_0_entry()
419 status = tx_timer_info_get(&timer_2, TX_NULL, TX_NULL, TX_NULL, TX_NULL, TX_NULL); in thread_0_entry()
422 if (status != TX_TIMER_ERROR) in thread_0_entry()
431 status = tx_timer_create(TX_NULL, "timer 0", timer_0_expiration, 0x1234, in thread_0_entry()
435 if (status != TX_TIMER_ERROR) in thread_0_entry()
444 status = _txe_timer_create(&timer_3, "timer 3", timer_0_expiration, 0x1234, in thread_0_entry()
448 if (status != TX_TIMER_ERROR) in thread_0_entry()
457 status = tx_timer_create(&timer_0, "timer 0", timer_0_expiration, 0x1234, in thread_0_entry()
461 if (status != TX_TIMER_ERROR) in thread_0_entry()
470 status = tx_timer_create(&timer_2, "timer 2", timer_0_expiration, 0x1234, in thread_0_entry()
474 if (status != TX_TICK_ERROR) in thread_0_entry()
483 status = tx_timer_create(&timer_2, "timer 2", timer_0_expiration, 0x1234, in thread_0_entry()
487 if (status != TX_ACTIVATE_ERROR) in thread_0_entry()
510 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
513 if (status != TX_SUCCESS) in thread_0_entry()
534 status = tx_timer_change(&timer_0, 100, 1); in thread_0_entry()
537 if (status != TX_SUCCESS) in thread_0_entry()
549 status = tx_timer_activate(&timer_0); in thread_0_entry()
552 if (status != TX_SUCCESS) in thread_0_entry()
577 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
578 status += tx_timer_deactivate(&timer_1); in thread_0_entry()
579 status += tx_timer_change(&timer_0, 100, 100); in thread_0_entry()
580 status += tx_timer_change(&timer_1, 100, 100); in thread_0_entry()
581 status += tx_timer_activate(&timer_0); in thread_0_entry()
582 status += tx_timer_activate(&timer_1); in thread_0_entry()
583 status += tx_timer_delete(&timer_0); in thread_0_entry()
584 status += tx_timer_delete(&timer_1); in thread_0_entry()
587 if (status != TX_SUCCESS) in thread_0_entry()
625 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
626 status += tx_timer_delete(&timer_0); in thread_0_entry()
629 if (status != TX_SUCCESS) in thread_0_entry()
649 status = tx_timer_smp_core_exclude_get(TX_NULL, TX_NULL); in thread_0_entry()
652 if (status != TX_TIMER_ERROR) in thread_0_entry()
660 status = tx_timer_smp_core_exclude_get(&timer_0, TX_NULL); in thread_0_entry()
663 if (status != TX_TIMER_ERROR) in thread_0_entry()
672 status = tx_timer_smp_core_exclude(TX_NULL, 0); in thread_0_entry()
675 if (status != TX_TIMER_ERROR) in thread_0_entry()
683 status = tx_timer_smp_core_exclude(&timer_0, 0); in thread_0_entry()
686 if (status != TX_TIMER_ERROR) in thread_0_entry()
695 status = tx_timer_create(&timer_0, "timer 0", timer_0_expiration, 0x1234, in thread_0_entry()
699 if (status != TX_SUCCESS) in thread_0_entry()
707 status = tx_timer_create(&timer_1, "timer 1", timer_1_expiration, 0x1234, in thread_0_entry()
711 if (status != TX_SUCCESS) in thread_0_entry()
720 status = tx_timer_smp_core_exclude_get(&timer_0, TX_NULL); in thread_0_entry()
723 if (status != TX_PTR_ERROR) in thread_0_entry()
732 status = tx_timer_smp_core_exclude(&timer_0, 0x1); in thread_0_entry()
733 status += tx_timer_smp_core_exclude(&timer_1, 0x1); in thread_0_entry()
736 if (status != TX_SUCCESS) in thread_0_entry()
745 status = tx_timer_smp_core_exclude_get(&timer_0, &exclusion_map); in thread_0_entry()
748 if ((status != TX_SUCCESS) || (exclusion_map != 0x1)) in thread_0_entry()
764 status += tx_timer_activate(&timer_0); in thread_0_entry()
765 status = tx_timer_activate(&timer_1); in thread_0_entry()
771 if (status != TX_SUCCESS) in thread_0_entry()
783 status = tx_timer_deactivate(&timer_0); in thread_0_entry()
786 status += tx_timer_delete(&timer_0); in thread_0_entry()
787 status += tx_timer_delete(&timer_1); in thread_0_entry()
790 if ((status != TX_SUCCESS) || (timer_0_counter == 0) || (timer_1_counter != 0)) in thread_0_entry()