OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsEndorsementHierarchyEnabled
(Results
1 - 8
of
8
) sorted by null
/system/tpm/trunks/
tpm_state.h
60
virtual bool
IsEndorsementHierarchyEnabled
() = 0;
mock_tpm_state.h
39
MOCK_METHOD0(
IsEndorsementHierarchyEnabled
, bool());
mock_tpm_state.cc
32
ON_CALL(*this,
IsEndorsementHierarchyEnabled
()).WillByDefault(Return(true));
tpm_state_impl.h
46
bool
IsEndorsementHierarchyEnabled
() override;
tpm_state_test.cc
171
EXPECT_DEATH_IF_SUPPORTED(tpm_state.
IsEndorsementHierarchyEnabled
(),
193
EXPECT_FALSE(tpm_state.
IsEndorsementHierarchyEnabled
());
229
EXPECT_TRUE(tpm_state.
IsEndorsementHierarchyEnabled
());
247
EXPECT_TRUE(tpm_state.
IsEndorsementHierarchyEnabled
());
tpm_state_impl.cc
172
bool TpmStateImpl::
IsEndorsementHierarchyEnabled
() {
181
IsEndorsementHierarchyEnabled
());
trunks_client.cc
117
state->
IsEndorsementHierarchyEnabled
() ? "true" : "false");
trunks_factory_for_test.cc
79
bool
IsEndorsementHierarchyEnabled
() override {
80
return target_->
IsEndorsementHierarchyEnabled
();
Completed in 116 milliseconds