OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsRSASupported
(Results
1 - 9
of
9
) sorted by null
/system/tpm/trunks/
tpm_state.h
69
virtual bool
IsRSASupported
() = 0;
mock_tpm_state.h
42
MOCK_METHOD0(
IsRSASupported
, bool());
mock_tpm_state.cc
35
ON_CALL(*this,
IsRSASupported
()).WillByDefault(Return(true));
tpm_state_impl.h
49
bool
IsRSASupported
() override;
tpm_state_test.cc
175
EXPECT_DEATH_IF_SUPPORTED(tpm_state.
IsRSASupported
(), "Check failed");
196
EXPECT_FALSE(tpm_state.
IsRSASupported
());
232
EXPECT_TRUE(tpm_state.
IsRSASupported
());
trunks_client.cc
123
state->
IsRSASupported
() ? "true" : "false");
tpm_state_impl.cc
190
bool TpmStateImpl::
IsRSASupported
() {
trunks_factory_for_test.cc
91
bool
IsRSASupported
() override {
92
return target_->
IsRSASupported
();
tpm_utility_impl.cc
[
all
...]
Completed in 148 milliseconds