Searched defs:connection (Results 26 - 32 of 32) sorted by relevance

12

/system/connectivity/shill/
H A Dconnection_diagnostics.cc24 #include "shill/connection.h"
106 "No DNS servers have been configured for this connection -- either the "
111 "No connection issue detected.";
131 "The connection diagnostics encountered an internal failure.";
153 ConnectionRefPtr connection, EventDispatcher* dispatcher, Metrics* metrics,
160 connection_(connection),
374 LOG(ERROR) << __func__ << ": no DNS servers for this connection";
376 "No DNS servers for this connection");
152 ConnectionDiagnostics( ConnectionRefPtr connection, EventDispatcher* dispatcher, Metrics* metrics, const DeviceInfo* device_info, const ResultCallback& result_callback) argument
H A Dconnection_unittest.cc17 #include "shill/connection.h"
126 void ReplaceSingletons(ConnectionRefPtr connection) { argument
128 connection->resolver_ = &resolver_;
130 connection->dns_server_proxy_factory_ = &dns_server_proxy_factory_;
132 connection->routing_table_ = &routing_table_;
133 connection->rtnl_handler_ = &rtnl_handler_;
144 bool PinHostRoute(ConnectionRefPtr connection, argument
147 return connection->PinHostRoute(trusted_ip, gateway);
150 const IPAddress& GetLocalAddress(ConnectionRefPtr connection) { argument
151 return connection
154 GetGatewayAddress(ConnectionRefPtr connection) argument
158 GetHasBroadcastDomain(ConnectionRefPtr connection) argument
364 ConnectionRefPtr connection = GetNewConnection(); local
708 ConnectionRefPtr connection = GetNewConnection(); local
755 ConnectionRefPtr connection = GetNewConnection(); local
793 ConnectionRefPtr connection = GetNewConnection(); local
834 ConnectionRefPtr connection = GetNewConnection(); local
1014 ConnectionRefPtr connection = GetNewConnection(); local
1061 ConnectionRefPtr connection = GetNewConnection(); local
1078 ConnectionRefPtr connection = GetNewConnection(); local
[all...]
H A Ddevice.h172 // after one connection is bound to another.
191 // log connection state triggered by a user feedback log request.
212 // connection. Returns true if portal detection was started.
224 // the default connection. This is useful in limited situations such as
238 virtual const ConnectionRefPtr& connection() const { return connection_; } function in class:shill::Device
459 // connection, if any.
484 // The acquired configurations will not be used to setup a connection
528 // Maintain connection state (Routes, IP Addresses and DNS) in the OS.
531 // Remove connection state
561 // Initiate connection diagnostic
[all...]
H A Ddevice_unittest.cc218 void SetConnection(ConnectionRefPtr connection) { argument
219 device_->connection_ = connection;
732 scoped_refptr<MockConnection> connection(
734 SetConnection(connection.get());
737 EXPECT_CALL(*connection, IsIPv6())
739 EXPECT_CALL(*connection, UpdateFromIPConfig(device_->ip6config_));
750 // IPv4 configuration failed with existing IPv6 connection.
764 scoped_refptr<MockConnection> connection(
766 SetConnection(connection.get());
769 EXPECT_CALL(*connection, IsIPv
1756 scoped_refptr<MockConnection> connection = new MockConnection(&device_info_); local
2527 scoped_refptr<MockConnection> connection = local
[all...]
H A Dservice.cc36 #include "shill/connection.h"
415 // Metric reporting for result of user-initiated connection attempt.
794 if (!connection_ || !b || !b->connection()) {
797 return connection_->GetLowerConnection() == b->connection();
811 void Service::SetConnection(const ConnectionRefPtr& connection) { argument
812 if (connection.get()) {
815 http_proxy_.reset(new HTTPProxy(connection));
818 connection->set_tethering(GetTethering(&unused_error));
823 connection_ = connection;
1001 LOG(INFO) << "Noting an unexpected connection dro
[all...]
H A Dservice.h162 // AutoConnect MAY choose to ignore the connection request in some
164 // concurrent connection, and another Service is already connected
170 // Queue up a connection attempt. Derived classes SHOULD call the
172 // class will log the connection attempt, and update base-class
188 // connection attempt is user-initiated.
235 // Returns true if the connection for |this| depends on service |b|.
325 // Returns whether this service has had recent connection issues.
332 // Set the connection for this service. If the connection is non-NULL, create
333 // an HTTP Proxy that will utilize this service's connection t
336 virtual const ConnectionRefPtr& connection() const { return connection_; } function in class:shill::Service
[all...]
H A Dmanager.cc43 #include "shill/connection.h"
283 // Start task for checking connection status.
938 if (services_.empty() || !services_[0]->connection().get()) {
939 SLOG(this, 2) << "In " << __func__ << ": No default connection exists.";
1399 DLOG_IF(FATAL, (*it)->connection())
1401 << " still has a connection (in call to " << __func__ << ")";
1416 DCHECK(!(**service_iterator)->connection());
1816 // connection.
1824 ConnectionRefPtr default_connection = default_service->connection();
1826 services_[0]->connection() !
2627 const auto& connection = device->connection(); local
[all...]

Completed in 5756 milliseconds

12