Home | History | Annotate | Download | only in tpm_lite

Lines Matching refs:deactivated

6 /* Testing: ForceClear and behavior of disable and permanent deactivated flags.
8 * ForceClear sets the permanent disable and deactivated flags to their default
22 uint8_t disable, deactivated;
29 TPM_CHECK(TlclGetFlags(&disable, &deactivated, NULL));
30 printf("disable is %d, deactivated is %d\n", disable, deactivated);
34 TPM_CHECK(TlclGetFlags(&disable, &deactivated, NULL));
35 printf("disable is %d, deactivated is %d\n", disable, deactivated);
36 VbAssert(disable == 1 && deactivated == 1);
39 TPM_CHECK(TlclGetFlags(&disable, &deactivated, NULL));
40 printf("disable is %d, deactivated is %d\n", disable, deactivated);
41 VbAssert(disable == 0 && deactivated == 0);