Searched refs:GetLockoutThreshold (Results 1 – 10 of 10) sorted by relevance
45 MOCK_METHOD0(GetLockoutThreshold, uint32_t());
79 virtual uint32_t GetLockoutThreshold() = 0;
38 ON_CALL(*this, GetLockoutThreshold()).WillByDefault(Return(0)); in MockTpmState()
52 uint32_t GetLockoutThreshold() override;
178 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()
127 printf("Lockout Threshold: %u\n", state->GetLockoutThreshold()); in DumpStatus()
205 uint32_t TpmStateImpl::GetLockoutThreshold() { in GetLockoutThreshold() function in trunks::TpmStateImpl
103 uint32_t GetLockoutThreshold() override { in GetLockoutThreshold() function in trunks::TpmStateForwarder104 return target_->GetLockoutThreshold(); in GetLockoutThreshold()
64 *threshold = trunks_tpm_state_->GetLockoutThreshold(); in GetDictionaryAttackInfo()
126 EXPECT_CALL(mock_tpm_state_, GetLockoutThreshold()) in TEST_F()