Home
last modified time | relevance | path

Searched refs:GetLockoutThreshold (Results 1 – 10 of 10) sorted by relevance

/system/tpm/trunks/
Dmock_tpm_state.h45 MOCK_METHOD0(GetLockoutThreshold, uint32_t());
Dtpm_state.h79 virtual uint32_t GetLockoutThreshold() = 0;
Dmock_tpm_state.cc38 ON_CALL(*this, GetLockoutThreshold()).WillByDefault(Return(0)); in MockTpmState()
Dtpm_state_impl.h52 uint32_t GetLockoutThreshold() override;
Dtpm_state_test.cc178 EXPECT_DEATH_IF_SUPPORTED(tpm_state.GetLockoutThreshold(), "Check failed"); in TEST()
199 EXPECT_EQ(0u, tpm_state.GetLockoutThreshold()); in TEST_F()
235 EXPECT_EQ(lockout_threshold, tpm_state.GetLockoutThreshold()); in TEST_F()
Dtrunks_client.cc127 printf("Lockout Threshold: %u\n", state->GetLockoutThreshold()); in DumpStatus()
Dtpm_state_impl.cc205 uint32_t TpmStateImpl::GetLockoutThreshold() { in GetLockoutThreshold() function in trunks::TpmStateImpl
Dtrunks_factory_for_test.cc103 uint32_t GetLockoutThreshold() override { in GetLockoutThreshold() function in trunks::TpmStateForwarder
104 return target_->GetLockoutThreshold(); in GetLockoutThreshold()
/system/tpm/tpm_manager/server/
Dtpm2_status_impl.cc64 *threshold = trunks_tpm_state_->GetLockoutThreshold(); in GetDictionaryAttackInfo()
Dtpm2_status_test.cc126 EXPECT_CALL(mock_tpm_state_, GetLockoutThreshold()) in TEST_F()