Lines Matching refs:properties
51 VariantDictionary properties; in GetStateForService() local
52 if (!service->GetProperties(&properties, nullptr)) { in GetStateForService()
56 auto property_it = properties.find(shill::kStateProperty); in GetStateForService()
57 if (property_it == properties.end()) { in GetStateForService()
127 VariantDictionary properties; in Init() local
128 if (!manager_proxy_.GetProperties(&properties, nullptr)) { in Init()
133 auto it = properties.find(shill::kDevicesProperty); in Init()
134 CHECK(it != properties.end()) << "shill should always publish a device list."; in Init()
253 VariantDictionary properties; in OnManagerPropertyChangeRegistration() local
254 if (!manager_proxy_.GetProperties(&properties, nullptr)) { in OnManagerPropertyChangeRegistration()
259 auto it = properties.find(shill::kDevicesProperty); in OnManagerPropertyChangeRegistration()
260 CHECK(it != properties.end()) << "Shill should always publish a device list."; in OnManagerPropertyChangeRegistration()
323 VariantDictionary properties; in OnDevicePropertyChangeRegistration() local
324 if (!device->GetProperties(&properties, nullptr)) { in OnDevicePropertyChangeRegistration()
328 auto prop_it = properties.find(shill::kSelectedServiceProperty); in OnDevicePropertyChangeRegistration()
329 if (prop_it == properties.end()) { in OnDevicePropertyChangeRegistration()
422 VariantDictionary properties; in OnServicePropertyChangeRegistration() local
423 if (!service->GetProperties(&properties, nullptr)) { in OnServicePropertyChangeRegistration()
430 auto it = properties.find(name); in OnServicePropertyChangeRegistration()
431 if (it != properties.end()) in OnServicePropertyChangeRegistration()