Home
last modified time | relevance | path

Searched refs:IsPlatformHierarchyEnabled (Results 1 – 9 of 9) sorted by relevance

/system/tpm/trunks/
Dmock_tpm_state.h37 MOCK_METHOD0(IsPlatformHierarchyEnabled, bool());
Dtpm_state.h54 virtual bool IsPlatformHierarchyEnabled() = 0;
Dmock_tpm_state.cc30 ON_CALL(*this, IsPlatformHierarchyEnabled()).WillByDefault(Return(true)); in MockTpmState()
Dtpm_state_impl.h44 bool IsPlatformHierarchyEnabled() override;
Dtpm_state_test.cc167 EXPECT_DEATH_IF_SUPPORTED(tpm_state.IsPlatformHierarchyEnabled(), in TEST()
191 EXPECT_FALSE(tpm_state.IsPlatformHierarchyEnabled()); in TEST_F()
227 EXPECT_TRUE(tpm_state.IsPlatformHierarchyEnabled()); in TEST_F()
245 EXPECT_FALSE(tpm_state.IsPlatformHierarchyEnabled()); in TEST_F()
Dtpm_state_impl.cc160 bool TpmStateImpl::IsPlatformHierarchyEnabled() { in IsPlatformHierarchyEnabled() function in trunks::TpmStateImpl
179 return (!IsPlatformHierarchyEnabled() && in IsEnabled()
Dtrunks_client.cc113 state->IsPlatformHierarchyEnabled() ? "true" : "false"); in DumpStatus()
Dtrunks_factory_for_test.cc71 bool IsPlatformHierarchyEnabled() override { in IsPlatformHierarchyEnabled() function in trunks::TpmStateForwarder
72 return target_->IsPlatformHierarchyEnabled(); in IsPlatformHierarchyEnabled()
Dtpm_utility_impl.cc152 if (tpm_state->IsPlatformHierarchyEnabled()) { in InitializeTpm()