OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:P2PManager
(Results
1 - 12
of
12
) sorted by null
/system/update_engine/
system_state.h
50
class
P2PManager
;
109
// Returns a pointer to the
P2PManager
singleton.
110
virtual
P2PManager
* p2p_manager() = 0;
p2p_manager.h
37
class
P2PManager
{
39
// Interface used for
P2PManager
implementations. The sole reason
59
virtual ~
P2PManager
() {}
165
// Creates a suitable
P2PManager
instance and initializes the object
168
// |configuration| is non-null, the
P2PManager
will take ownership
177
static
P2PManager
* Construct(
real_system_state.h
120
inline
P2PManager
* p2p_manager() override { return p2p_manager_.get(); }
180
std::unique_ptr<
P2PManager
> p2p_manager_;
fake_p2p_manager.h
26
// A fake implementation of
P2PManager
.
27
class FakeP2PManager : public
P2PManager
{
36
//
P2PManager
overrides.
fake_p2p_manager_configuration.h
34
// Configuration for
P2PManager
for use in unit tests. Instead of
36
class FakeP2PManagerConfiguration : public
P2PManager
::Configuration {
49
//
P2PManager
::Configuration override
54
//
P2PManager
::Configuration override
59
//
P2PManager
::Configuration override
fake_system_state.h
94
inline
P2PManager
* p2p_manager() override { return p2p_manager_; }
156
inline void set_p2p_manager(
P2PManager
*p2p_manager) {
262
P2PManager
* p2p_manager_;
p2p_manager.cc
84
// The default
P2PManager
::Configuration implementation.
85
class ConfigurationImpl : public
P2PManager
::Configuration {
114
// The default
P2PManager
implementation.
115
class P2PManagerImpl : public
P2PManager
{
124
//
P2PManager
methods.
381
explicit LookupData(
P2PManager
::LookupCallback callback)
478
P2PManager
::LookupCallback callback_;
727
P2PManager
*
P2PManager
::Construct(
mock_p2p_manager.h
28
// A mocked, fake implementation of
P2PManager
.
29
class MockP2PManager : public
P2PManager
{
77
//
P2PManager
overrides.
p2p_manager_unittest.cc
65
// temporary p2p dir) for
P2PManager
and cleans up when the test is
86
manager_.reset(
P2PManager
::Construct(test_conf_, &fake_clock_, &fake_um_,
96
// The
P2PManager
::Configuration instance used for testing.
103
unique_ptr<
P2PManager
> manager_;
139
manager_.reset(
P2PManager
::Construct(
203
manager_.reset(
P2PManager
::Construct(
real_system_state.cc
157
p2p_manager_.reset(
P2PManager
::Construct(
/system/update_engine/payload_consumer/
download_action.cc
84
P2PManager
*p2p_manager = system_state_->p2p_manager();
download_action_unittest.cc
436
p2p_manager_.reset(
P2PManager
::Construct(
494
// The
P2PManager
used in the test.
495
unique_ptr<
P2PManager
> p2p_manager_;
Completed in 3806 milliseconds