Home
last modified time | relevance | path

Searched refs:tpm_status (Results 1 – 7 of 7) sorted by relevance

/external/vboot_reference/firmware/lib/
Dvboot_api_firmware.c29 uint32_t tpm_status = 0; in VbSelectFirmware() local
85 tpm_status = in VbSelectFirmware()
87 if (0 != tpm_status) { in VbSelectFirmware()
97 tpm_status = RollbackFirmwareLock(); in VbSelectFirmware()
98 if (0 != tpm_status) { in VbSelectFirmware()
111 tpm_status = SetTPMBootModeState(is_dev, is_rec, in VbSelectFirmware()
114 if (0 != tpm_status) { in VbSelectFirmware()
Dvboot_api_init.c32 uint32_t tpm_status = 0; in VbInit() local
196 tpm_status = RollbackFirmwareSetup(is_hw_dev, in VbInit()
202 if (0 != tpm_status) { in VbInit()
204 "firmware version (0x%x)\n", tpm_status)); in VbInit()
206 if (TPM_E_MUST_REBOOT == tpm_status) { in VbInit()
237 tpm_status); in VbInit()
Dvboot_api_kernel.c974 uint32_t tpm_status = 0; in VbSelectAndLoadKernel() local
1027 tpm_status = RollbackKernelRead(&shared->kernel_version_tpm); in VbSelectAndLoadKernel()
1028 if (0 != tpm_status) { in VbSelectAndLoadKernel()
1135 tpm_status = RollbackKernelWrite( in VbSelectAndLoadKernel()
1137 if (0 != tpm_status) { in VbSelectAndLoadKernel()
1161 tpm_status = RollbackKernelLock(shared->recovery_reason); in VbSelectAndLoadKernel()
1162 if (0 != tpm_status) { in VbSelectAndLoadKernel()
/external/autotest/client/common_lib/cros/
Dtpm_utils.py93 tpm_status = TPMStatus(client)
94 logging.info('TPM status: %s', tpm_status)
95 if tpm_status['is_owned']:
103 tpm_status = TPMStatus(client)
104 logging.info('TPM status: %s', tpm_status)
105 if tpm_status['is_owned']:
/external/autotest/server/site_tests/platform_CryptohomeTpmLiveTestServer/
Dplatform_CryptohomeTpmLiveTestServer.py21 tpm_status = tpm_utils.TPMStatus(self.client)
22 if 'is_enabled' not in tpm_status:
24 'returned by cryptohome: ' + str(tpm_status))
25 if not tpm_status['is_enabled']:
/external/autotest/server/site_tests/firmware_Cr50VirtualNVRamServer/
Dfirmware_Cr50VirtualNVRamServer.py23 tpm_status = tpm_utils.TPMStatus(self.client)
24 if 'is_enabled' not in tpm_status:
26 'returned by cryptohome: ' + str(tpm_status))
27 if not tpm_status['is_enabled']:
/external/autotest/client/site_tests/platform_CryptohomeTPMReOwn/
Dplatform_CryptohomeTPMReOwn.py18 tpm_status = cryptohome.get_tpm_status()
19 if tpm_status['Ready'] == True: