Lines Matching refs:t
555 TEE_Time t = { }; in test_time() local
564 TEE_GetREETime(&t); in test_time()
565 printf("REE time %u.%03u\n", (unsigned int)t.seconds, in test_time()
566 (unsigned int)t.millis); in test_time()
568 res = TEE_GetTAPersistentTime(&t); in test_time()
571 printf("Stored TA time %u.%03u\n", (unsigned int)t.seconds, in test_time()
572 (unsigned int)t.millis); in test_time()
576 (unsigned int)t.seconds, (unsigned int)t.millis); in test_time()
594 res = TEE_GetTAPersistentTime(&t); in test_time()
599 printf("TA time %u.%03u\n", (unsigned int)t.seconds, in test_time()
600 (unsigned int)t.millis); in test_time()
606 if (t.seconds > 1 || t.millis >= 1000) { in test_time()
608 (unsigned int)t.seconds, (unsigned int)t.millis); in test_time()
622 res = TEE_GetTAPersistentTime(&t); in test_time()
627 printf("TA time %u.%03u\n", (unsigned int)t.seconds, in test_time()
628 (unsigned int)t.millis); in test_time()
630 if (t.seconds > sys_t.seconds) { in test_time()
632 (unsigned int)t.seconds, (unsigned int)t.millis, in test_time()