OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FileShare
(Results
1 - 7
of
7
) sorted by null
/system/update_engine/
mock_p2p_manager.h
52
ON_CALL(*this,
FileShare
(testing::_, testing::_))
54
&FakeP2PManager::
FileShare
));
87
MOCK_METHOD2(
FileShare
, bool(const std::string&, size_t));
fake_p2p_manager.h
62
bool
FileShare
(const std::string& file_id,
p2p_manager.h
122
virtual bool
FileShare
(const std::string& file_id,
126
// If the file has not been shared already using the
FileShare
()
136
// For a file just created with
FileShare
() this will return 0.
144
// For a file just created with
FileShare
() this will return the
p2p_manager_unittest.cc
350
EXPECT_TRUE(manager_->
FileShare
("foo", kP2PTestFileSize));
357
EXPECT_TRUE(manager_->
FileShare
("foo", kP2PTestFileSize));
360
EXPECT_FALSE(manager_->
FileShare
("foo", kP2PTestFileSize + 1));
373
manager_->
FileShare
("foo", kP2PTestFileSize);
p2p_manager.cc
137
bool
FileShare
(const string& file_id,
504
bool P2PManagerImpl::
FileShare
(const string& file_id,
/system/update_engine/payload_consumer/
download_action_unittest.cc
577
ASSERT_TRUE(p2p_manager_->
FileShare
(file_id, data_.length()));
615
ASSERT_TRUE(p2p_manager_->
FileShare
(file_id, data_.length()));
download_action.cc
85
if (!p2p_manager->
FileShare
(p2p_file_id_, payload_->size)) {
92
// populated etc.) by
FileShare
() so just open it for writing.
Completed in 1396 milliseconds