HomeSort by relevance Sort by last modified time
    Searched refs:Tpm (Results 1 - 16 of 16) sorted by null

  /system/tpm/trunks/
trunks_factory.h 36 class Tpm;
45 // Returns a Tpm instance. The caller does not take ownership. All calls to
47 virtual Tpm* GetTpm() const = 0;
trunks_factory_impl.h 38 // Tpm* tpm = factory.GetTpm();
44 // transceiver is forwarded down to the Tpm instance maintained by
54 Tpm* GetTpm() const override;
68 std::unique_ptr<Tpm> tpm_;
trunks_factory_for_test.h 44 class Tpm;
64 Tpm* GetTpm() const override;
76 void set_tpm(Tpm* tpm) { tpm_ = tpm; }
106 Tpm* tpm_;
trunks_factory_impl.cc 57 tpm_.reset(new Tpm(transceiver_));
70 Tpm* TrunksFactoryImpl::GetTpm() const {
tpm_generated.cc     [all...]
tpm_generated_test.cc 111 Tpm tpm(&transceiver);
112 EXPECT_EQ(TPM_RC_SUCCESS, tpm.StartupSync(TPM_SU_CLEAR, &authorization));
134 Tpm tpm(&transceiver);
135 EXPECT_EQ(TPM_RC_FAILURE, tpm.StartupSync(TPM_SU_CLEAR, &authorization));
245 Tpm tpm(&transceiver);
246 TPM_RC rc = tpm.CreatePrimarySync(
345 Tpm tpm(&transceiver)
    [all...]
session_manager_impl.cc 68 LOG(WARNING) << "Error closing tpm session: " << GetErrorString(result);
100 // Then we use TPM2_StartAuthSession to start a HMAC session with the TPM.
101 // The tpm returns the tpm_nonce and the session_handle referencing the
117 Tpm* tpm = factory_.GetTpm(); local
121 TPM_RC tpm_result = tpm->StartAuthSessionSync(
mock_tpm.cc 28 MockTpm::MockTpm() : Tpm(nullptr) {
trunks_factory_for_test.cc 557 Tpm* TrunksFactoryForTest::GetTpm() const {
tpm_utility_impl.cc 46 // The below maximum is defined in TPM 2.0 Library Spec Part 2 Section 13.1
51 // handles use this name formula see Table 3 in the TPM 2.0 Library Spec Part 1
84 Tpm* tpm = factory_.GetTpm(); local
85 result = tpm->StartupSync(TPM_SU_CLEAR, nullptr);
91 result = tpm->SelfTestSync(YES /* Full test. */, nullptr);
117 << "that the TPM was already initialized.";
122 << ": Failed to clear the TPM: " << GetErrorString(result);
147 << ": WARNING: The last TPM shutdown was not orderly.";
150 LOG(WARNING) << __func__ << ": WARNING: The TPM is currently in lockout."
1509 Tpm* tpm = factory_.GetTpm(); local
    [all...]
mock_tpm.h 29 class MockTpm : public Tpm {
    [all...]
tpm_generated.h     [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Smm/
Tcg2Smm.inf 2 # Provides ACPI metholds for TPM 2.0 support
4 # This driver implements TPM 2.0 definition block in ACPI table and
35 Tpm.asl
59 gEfiTpmDeviceInstanceTpm20DtpmGuid ## PRODUCES ## GUID # TPM device identifier
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TcgSmm/
TcgSmm.inf 4 # This driver implements TPM definition block in ACPI table and registers SMI
35 Tpm.asl
64 gEfiTpmDeviceInstanceTpm12Guid ## PRODUCES ## GUID # TPM device identifier
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEESmm/
TrEESmm.inf 2 # Provides ACPI metholds for TPM 2.0 support
4 # This driver implements TPM 2.0 definition block in ACPI table and
35 Tpm.asl
64 gEfiTpmDeviceInstanceTpm20DtpmGuid ## PRODUCES ## GUID # TPM device identifier
  /external/tpm2/generator/
structure_generator.py 5 """A code generator for TPM 2.0 structures.
44 #include "Tpm.h"
118 """Represents a field in TPM structure or union.
245 Contains functions and string literals common to all TPM types.
252 # A function to marshal a TPM typedef.
261 # The function signature and unmarshaling call to the base type of a TPM
285 # A declaration for marshaling and unmarshaling functions for a TPM type.
369 """Write marshal declarations for TPM typedefs to |out_file|.
389 """Write marshal declarations for a TPM Structure or Union.
409 """Represents a TPM typedef
    [all...]

Completed in 93 milliseconds