OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tcp_connection_
(Results
1 - 3
of
3
) sorted by null
/system/connectivity/shill/
connection_health_checker_unittest.cc
147
tcp_connection_
= new StrictMock<MockAsyncConnection>();
151
health_checker_->
tcp_connection_
.reset(
tcp_connection_
);
165
return health_checker_->
tcp_connection_
.get();
250
EXPECT_EQ(
tcp_connection_
, health_checker_->
tcp_connection_
.get());
251
EXPECT_FALSE(
tcp_connection_
== nullptr);
276
*
tcp_connection_
,
286
*
tcp_connection_
,
293
if (
tcp_connection_
)
322
StrictMock<MockAsyncConnection>*
tcp_connection_
;
member in class:shill::ConnectionHealthCheckerTest
[
all
...]
connection_health_checker.cc
97
tcp_connection_
(new AsyncConnection(connection_->interface_name(),
198
if (
tcp_connection_
.get() != nullptr)
199
tcp_connection_
->Stop();
212
tcp_connection_
.reset(new AsyncConnection(connection_->interface_name(),
288
if (!
tcp_connection_
->Start(ip, kRemotePort)) {
300
<<
tcp_connection_
->error();
connection_health_checker.h
138
AsyncConnection* tcp_connection() const { return
tcp_connection_
.get(); }
202
// Callback passed to |
tcp_connection_
| to report an established TCP
206
std::unique_ptr<AsyncConnection>
tcp_connection_
;
member in class:shill::ConnectionHealthChecker
208
// Active socket for |
tcp_connection_
| during an active health check.
Completed in 312 milliseconds