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

  /system/tpm/trunks/
tpm_state.h 45 virtual bool IsLockoutPasswordSet() = 0;
mock_tpm_state.cc 28 ON_CALL(*this, IsLockoutPasswordSet()).WillByDefault(Return(true));
mock_tpm_state.h 34 MOCK_METHOD0(IsLockoutPasswordSet, bool());
tpm_state_impl.h 44 bool IsLockoutPasswordSet() override;
tpm_state_impl.cc 79 bool TpmStateImpl::IsLockoutPasswordSet() {
87 IsLockoutPasswordSet());
tpm_state_test.cc 126 EXPECT_DEATH_IF_SUPPORTED(tpm_state.IsLockoutPasswordSet(), "Check failed");
157 EXPECT_FALSE(tpm_state.IsLockoutPasswordSet());
174 EXPECT_TRUE(tpm_state.IsLockoutPasswordSet());
trunks_client.cc 116 state->IsLockoutPasswordSet() ? "true" : "false");
trunks_factory_for_test.cc 58 bool IsLockoutPasswordSet() override {
59 return target_->IsLockoutPasswordSet();
tpm_utility_test.cc 285 EXPECT_CALL(mock_tpm_state_, IsLockoutPasswordSet())
313 EXPECT_CALL(mock_tpm_state_, IsLockoutPasswordSet())
353 EXPECT_CALL(mock_tpm_state_, IsLockoutPasswordSet())
    [all...]
tpm_utility_impl.cc 294 if (!tpm_state->IsLockoutPasswordSet()) {
    [all...]

Completed in 106 milliseconds