Home | History | Annotate | Download | only in update_engine

Lines Matching refs:shill

28 #include <shill/dbus-constants.h>
29 #include <shill/dbus-proxies.h>
30 #include <shill/dbus-proxy-mocks.h>
103 reply_dict[shill::kDefaultServiceProperty] =
118 reply_dict[shill::kTypeProperty] = string(service_type);
121 reply_dict[shill::kPhysicalTechnologyProperty] =
126 reply_dict[shill::kTetheringProperty] = string(service_tethering);
146 shill::kTetheringNotDetectedState);
161 "/service/guest/network", shill::kTypeWifi, nullptr, service_tethering);
172 TestWithServiceType(shill::kTypeEthernet, nullptr, ConnectionType::kEthernet);
173 TestWithServiceType(shill::kTypeWifi, nullptr, ConnectionType::kWifi);
174 TestWithServiceType(shill::kTypeWimax, nullptr, ConnectionType::kWimax);
176 shill::kTypeBluetooth, nullptr, ConnectionType::kBluetooth);
177 TestWithServiceType(shill::kTypeCellular, nullptr, ConnectionType::kCellular);
181 TestWithServiceType(shill::kTypeVPN, nullptr, ConnectionType::kUnknown);
183 shill::kTypeVPN, shill::kTypeVPN, ConnectionType::kUnknown);
184 TestWithServiceType(shill::kTypeVPN, shill::kTypeWifi, ConnectionType::kWifi);
186 shill::kTypeVPN, shill::kTypeWimax, ConnectionType::kWimax);
190 TestWithServiceTethering(shill::kTetheringConfirmedState,
192 TestWithServiceTethering(shill::kTetheringNotDetectedState,
194 TestWithServiceTethering(shill::kTetheringSuspectedState,
372 EXPECT_STREQ(shill::kTypeEthernet,
374 EXPECT_STREQ(shill::kTypeWifi,
376 EXPECT_STREQ(shill::kTypeWimax,
378 EXPECT_STREQ(shill::kTypeBluetooth,
380 EXPECT_STREQ(shill::kTypeCellular,