OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsEndorsementPasswordSet
(Results
1 - 10
of
10
) sorted by null
/system/tpm/trunks/
tpm_state.h
42
virtual bool
IsEndorsementPasswordSet
() = 0;
mock_tpm_state.h
33
MOCK_METHOD0(
IsEndorsementPasswordSet
, bool());
mock_tpm_state.cc
27
ON_CALL(*this,
IsEndorsementPasswordSet
()).WillByDefault(Return(true));
tpm_state_impl.h
40
bool
IsEndorsementPasswordSet
() override;
tpm_state_impl.cc
138
bool TpmStateImpl::
IsEndorsementPasswordSet
() {
151
IsEndorsementPasswordSet
() &&
tpm_state_test.cc
162
EXPECT_DEATH_IF_SUPPORTED(tpm_state.
IsEndorsementPasswordSet
(),
187
EXPECT_FALSE(tpm_state.
IsEndorsementPasswordSet
());
223
EXPECT_TRUE(tpm_state.
IsEndorsementPasswordSet
());
trunks_client.cc
105
state->
IsEndorsementPasswordSet
() ? "true" : "false");
trunks_factory_for_test.cc
55
bool
IsEndorsementPasswordSet
() override {
56
return target_->
IsEndorsementPasswordSet
();
tpm_utility_test.cc
291
EXPECT_CALL(mock_tpm_state_,
IsEndorsementPasswordSet
())
335
EXPECT_CALL(mock_tpm_state_,
IsEndorsementPasswordSet
())
353
EXPECT_CALL(mock_tpm_state_,
IsEndorsementPasswordSet
())
367
EXPECT_CALL(mock_tpm_state_,
IsEndorsementPasswordSet
())
[
all
...]
tpm_utility_impl.cc
283
if (!tpm_state->
IsEndorsementPasswordSet
()) {
[
all
...]
Completed in 54 milliseconds