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

  /system/update_engine/update_manager/
shill_provider.h 36 enum class ConnectionTethering {
57 virtual Variable<ConnectionTethering>* var_conn_tethering() = 0;
fake_shill_provider.h 38 FakeVariable<ConnectionTethering>*
50 FakeVariable<ConnectionTethering> var_conn_tethering_{
real_shill_provider.h 56 Variable<ConnectionTethering>* var_conn_tethering() override {
66 static ConnectionTethering ParseConnectionTethering(
96 AsyncCopyVariable<ConnectionTethering> var_conn_tethering_{"conn_tethering"};
boxed_value.cc 134 string BoxedValue::ValuePrinter<ConnectionTethering>(const void* value) {
135 const ConnectionTethering* val =
136 reinterpret_cast<const ConnectionTethering*>(value);
138 case ConnectionTethering::kNotDetected:
140 case ConnectionTethering::kSuspected:
142 case ConnectionTethering::kConfirmed:
144 case ConnectionTethering::kUnknown:
boxed_value_unittest.cc 179 BoxedValue(new ConnectionTethering(
180 ConnectionTethering::kNotDetected)).ToString());
182 BoxedValue(new ConnectionTethering(ConnectionTethering::kSuspected))
185 BoxedValue(new ConnectionTethering(ConnectionTethering::kConfirmed))
188 BoxedValue(new ConnectionTethering(ConnectionTethering::kUnknown))
real_shill_provider.cc 48 ConnectionTethering RealShillProvider::ParseConnectionTethering(
51 return ConnectionTethering::kNotDetected;
53 return ConnectionTethering::kSuspected;
55 return ConnectionTethering::kConfirmed;
57 return ConnectionTethering::kUnknown;
real_shill_provider_unittest.cc 190 ConnectionTethering expected_conn_tethering) {
414 ConnectionTethering::kNotDetected);
422 ConnectionTethering::kSuspected);
430 ConnectionTethering::kConfirmed);
438 ConnectionTethering::kUnknown);
446 ConnectionTethering::kNotDetected);
448 UmTestUtils::ExpectVariableHasValue(ConnectionTethering::kNotDetected,
458 ConnectionTethering::kNotDetected);
462 UmTestUtils::ExpectVariableHasValue(ConnectionTethering::kNotDetected,
472 ConnectionTethering::kNotDetected)
    [all...]
chromeos_policy_unittest.cc 100 reset(new ConnectionTethering(ConnectionTethering::kNotDetected));
    [all...]
chromeos_policy.cc 476 const ConnectionTethering* conn_tethering_p = ec->GetValue(
479 if (*conn_tethering_p == ConnectionTethering::kConfirmed)
    [all...]

Completed in 77 milliseconds