HomeSort by relevance Sort by last modified time
    Searched refs:server_async_connection_ (Results 1 - 6 of 6) sorted by null

  /system/connectivity/shill/
http_request.cc 80 server_async_connection_(
158 server_async_connection_->Stop();
171 if (!server_async_connection_->Start(address, port)) {
210 << server_async_connection_->error();
http_request_unittest.cc 93 server_async_connection_(new StrictMock<MockAsyncConnection>()),
137 request_->server_async_connection_.reset(server_async_connection_);
175 EXPECT_EQ(server_async_connection_,
176 request_->server_async_connection_.get());
192 EXPECT_CALL(*server_async_connection_, Stop())
217 EXPECT_CALL(*server_async_connection_, Start(IsIPAddress(address), port))
230 EXPECT_CALL(*server_async_connection_, Start(IsIPAddress(address), port))
235 EXPECT_CALL(*server_async_connection_, Start(_, _))
336 StrictMock<MockAsyncConnection>* server_async_connection_; member in class:shill::HTTPRequestTest
    [all...]
http_proxy_unittest.cc 113 server_async_connection_(nullptr),
212 EXPECT_FALSE(proxy_.server_async_connection_.get());
239 if (server_async_connection_) {
240 EXPECT_CALL(*server_async_connection_, Stop())
308 EXPECT_CALL(*server_async_connection_, Start(IsIPAddress(address), port))
312 EXPECT_CALL(*server_async_connection_, Start(IsIPAddress(address), port))
370 server_async_connection_ = new StrictMock<MockAsyncConnection>();
372 proxy_.server_async_connection_.reset(server_async_connection_);
411 EXPECT_CALL(*server_async_connection_, Stop())
466 StrictMock<MockAsyncConnection>* server_async_connection_; member in class:shill::HTTPProxyTest
    [all...]
http_request.h 134 std::unique_ptr<AsyncConnection> server_async_connection_; member in class:shill::HTTPRequest
http_proxy.cc 149 server_async_connection_.reset(
170 server_async_connection_.reset();
210 if (!server_async_connection_->Start(address, port)) {
233 server_async_connection_->error());
673 server_async_connection_->Stop();
http_proxy.h 149 std::unique_ptr<AsyncConnection> server_async_connection_; member in class:shill::HTTPProxy

Completed in 320 milliseconds