Searched refs:shill (Results 1 - 25 of 913) sorted by last modified time

1234567891011>>

/system/weaved/buffet/
H A Dshill_client.cc24 #include <dbus/shill/dbus-constants.h>
56 auto property_it = properties.find(shill::kStateProperty);
74 if ((state.compare(shill::kStateReady) == 0) ||
75 (state.compare(shill::kStatePortal) == 0) ||
76 (state.compare(shill::kStateOnline) == 0)) {
79 if ((state.compare(shill::kStateAssociation) == 0) ||
80 (state.compare(shill::kStateConfiguration) == 0)) {
83 if ((state.compare(shill::kStateFailure) == 0) ||
84 (state.compare(shill::kStateActivationFailure) == 0)) {
88 if ((state.compare(shill
[all...]
H A Dshill_client.h29 #include <shill/dbus-proxies.h>
/system/update_engine/
H A Dconnection_manager.cc25 #include <shill/dbus-constants.h>
26 #include <shill/dbus-proxies.h>
42 if (type_str == shill::kTypeEthernet) {
44 } else if (type_str == shill::kTypeWifi) {
46 } else if (type_str == shill::kTypeWimax) {
48 } else if (type_str == shill::kTypeBluetooth) {
50 } else if (type_str == shill::kTypeCellular) {
57 if (tethering_str == shill::kTetheringNotDetectedState) {
59 } else if (tethering_str == shill::kTetheringSuspectedState) {
61 } else if (tethering_str == shill
[all...]
H A Dconnection_manager_unittest.cc29 #include <shill/dbus-constants.h>
30 #include <shill/dbus-proxies.h>
31 #include <shill/dbus-proxy-mocks.h>
101 reply_dict[shill::kDefaultServiceProperty] =
116 reply_dict[shill::kTypeProperty] = string(service_type);
119 reply_dict[shill::kPhysicalTechnologyProperty] =
124 reply_dict[shill::kTetheringProperty] = string(service_tethering);
144 shill::kTetheringNotDetectedState);
159 "/service/guest/network", shill::kTypeWifi, nullptr, service_tethering);
170 TestWithServiceType(shill
[all...]
H A Dfake_shill_proxy.h25 #include <shill/dbus-proxies.h>
26 #include <shill/dbus-proxy-mocks.h>
32 // This class implements the connection to shill using real DBus calls.
H A Dshill_proxy.h26 #include <shill/dbus-proxies.h>
32 // This class implements the connection to shill using real DBus calls.
H A Dshill_proxy_interface.h25 #include <shill/dbus-proxies.h>
29 // This class handles the DBus connection with shill daemon. The DBus interface
30 // with shill requires to monitor or request the current service by interacting
38 // Return the ManagerProxy instance of the shill daemon. The instance is owned
/system/update_engine/update_manager/
H A Dreal_shill_provider.cc24 #include <shill/dbus-constants.h>
25 #include <shill/dbus-proxies.h>
34 if (type_str == shill::kTypeEthernet) {
36 } else if (type_str == shill::kTypeWifi) {
38 } else if (type_str == shill::kTypeWimax) {
40 } else if (type_str == shill::kTypeBluetooth) {
42 } else if (type_str == shill::kTypeCellular) {
50 if (tethering_str == shill::kTetheringNotDetectedState) {
52 } else if (tethering_str == shill::kTetheringSuspectedState) {
54 } else if (tethering_str == shill
[all...]
H A Dreal_shill_provider_unittest.cc26 #include <shill/dbus-constants.h>
27 #include <shill/dbus-proxies.h>
28 #include <shill/dbus-proxy-mocks.h>
132 shill::kDefaultServiceProperty, dbus::ObjectPath(service_path));
175 shill::kTetheringNotDetectedState,
194 service_path, shill::kTypeEthernet, shill_tethering, &conn_change_time);
229 reply_dict[shill::kDefaultServiceProperty] =
245 reply_dict[shill::kTypeProperty] = std::string(service_type);
248 reply_dict[shill::kPhysicalTechnologyProperty] =
253 reply_dict[shill
[all...]
/system/connectivity/shill/
H A Daccessor_interface.h28 #include "shill/key_value_store.h"
30 namespace shill { namespace
98 } // namespace shill
H A Dactive_link_monitor.cc17 #include "shill/active_link_monitor.h"
26 #include "shill/arp_client.h"
27 #include "shill/arp_packet.h"
28 #include "shill/connection.h"
29 #include "shill/device_info.h"
30 #include "shill/event_dispatcher.h"
31 #include "shill/logging.h"
32 #include "shill/metrics.h"
33 #include "shill/net/ip_address.h"
34 #include "shill/ne
40 namespace shill { namespace
[all...]
H A Dactive_link_monitor.h28 #include "shill/metrics.h"
29 #include "shill/net/byte_string.h"
30 #include "shill/refptr_types.h"
32 namespace shill { namespace
212 } // namespace shill
H A Dactive_link_monitor_unittest.cc17 #include "shill/active_link_monitor.h"
26 #include "shill/arp_client_test_helper.h"
27 #include "shill/arp_packet.h"
28 #include "shill/logging.h"
29 #include "shill/mock_arp_client.h"
30 #include "shill/mock_connection.h"
31 #include "shill/mock_control.h"
32 #include "shill/mock_device_info.h"
33 #include "shill/mock_event_dispatcher.h"
34 #include "shill/mock_lo
56 namespace shill { namespace
[all...]
H A Dadaptor_interfaces.h25 #include "shill/accessor_interface.h"
27 namespace shill { namespace
168 } // namespace shill
H A Dadaptor_stub.cc17 #include "shill/adaptor_stub.h"
19 namespace shill { namespace
23 } // namespace shill
H A Dadaptor_stub.h24 namespace shill { namespace
39 } // namespace shill
H A Darp_client.cc17 #include "shill/arp_client.h"
25 #include "shill/arp_packet.h"
26 #include "shill/logging.h"
27 #include "shill/net/byte_string.h"
28 #include "shill/net/sockets.h"
30 namespace shill { namespace
198 } // namespace shill
H A Darp_client.h24 namespace shill { namespace
85 } // namespace shill
H A Darp_client_test_helper.cc17 #include "shill/arp_client_test_helper.h"
25 namespace shill { namespace
57 } // namespace shill
H A Darp_client_test_helper.h22 #include "shill/arp_packet.h"
23 #include "shill/mock_arp_client.h"
24 #include "shill/net/byte_string.h"
25 #include "shill/net/ip_address.h"
27 namespace shill { namespace
50 } // namespace shill
H A Darp_client_unittest.cc17 #include "shill/arp_client.h"
26 #include "shill/arp_packet.h"
27 #include "shill/mock_log.h"
28 #include "shill/net/ip_address.h"
29 #include "shill/net/mock_sockets.h"
41 namespace shill { namespace
313 } // namespace shill
H A Darp_packet.cc17 #include "shill/arp_packet.h"
26 #include "shill/logging.h"
28 namespace shill { namespace
189 } // namespace shill
H A Darp_packet.h20 #include "shill/net/byte_string.h"
21 #include "shill/net/ip_address.h"
23 namespace shill { namespace
86 } // namespace shill
H A Darp_packet_unittest.cc17 #include "shill/arp_packet.h"
21 #include "shill/mock_log.h"
27 namespace shill { namespace
303 } // namespace shill
H A Dasync_connection.cc17 #include "shill/async_connection.h"
25 #include "shill/event_dispatcher.h"
26 #include "shill/net/ip_address.h"
27 #include "shill/net/sockets.h"
34 namespace shill { namespace
160 } // namespace shill

Completed in 167 milliseconds

1234567891011>>