Lines Matching refs:ServiceProxy
185 std::vector<std::unique_ptr<ServiceProxy>> ProxyDbusClient::GetServiceProxies() { in GetServiceProxies()
186 return GetProxies<ServiceProxy>(shill::kServicesProperty); in GetServiceProxies()
198 std::unique_ptr<ServiceProxy> ProxyDbusClient::GetMatchingServiceProxy( in GetMatchingServiceProxy()
200 return GetMatchingProxy<ServiceProxy>(shill::kServicesProperty, expected_properties); in GetMatchingServiceProxy()
217 ServiceProxy* proxy, in GetPropertyValueFromServiceProxy()
220 return GetPropertyValueFromProxy<ServiceProxy>( in GetPropertyValueFromServiceProxy()
251 return WaitForProxyPropertyValueIn<ServiceProxy>( in WaitForServiceProxyPropertyValueIn()
268 std::unique_ptr<ServiceProxy> ProxyDbusClient::GetServiceProxy( in GetServiceProxy()
276 return std::unique_ptr<ServiceProxy>( in GetServiceProxy()
277 new ServiceProxy(dbus_bus_, service_path)); in GetServiceProxy()
284 std::unique_ptr<ServiceProxy> ProxyDbusClient::WaitForMatchingServiceProxy( in WaitForMatchingServiceProxy()
305 std::unique_ptr<ServiceProxy> service_proxy; in WaitForMatchingServiceProxy()
336 auto proxy = GetProxyForObjectPath<ServiceProxy>(object_path); in ConnectService()
344 return WaitForProxyPropertyValueIn<ServiceProxy>( in ConnectService()
352 auto proxy = GetProxyForObjectPath<ServiceProxy>(object_path); in DisconnectService()
359 return WaitForProxyPropertyValueIn<ServiceProxy>( in DisconnectService()
524 std::unique_ptr<ServiceProxy>* service_proxy_out, in IsMatchingServicePresent()