OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:serviceproxy
(Results
1 - 19
of
19
) sorted by null
/frameworks/support/media-compat/api23/android/support/v4/media/
MediaBrowserServiceCompatApi23.java
26
public static Object createService(Context context, ServiceCompatProxy
serviceProxy
) {
27
return new MediaBrowserServiceAdaptor(context,
serviceProxy
);
/system/connectivity/shill/test-rpc-proxy/
proxy_dbus_client.h
37
using
ServiceProxy
= org::chromium::flimflam::
ServiceProxy
;
59
std::vector<std::unique_ptr<
ServiceProxy
>> GetServiceProxies();
63
std::unique_ptr<
ServiceProxy
> GetMatchingServiceProxy(
70
bool GetPropertyValueFromServiceProxy(
ServiceProxy
* proxy,
99
std::unique_ptr<
ServiceProxy
> GetServiceProxy(
104
std::unique_ptr<
ServiceProxy
> WaitForMatchingServiceProxy(
150
std::unique_ptr<
ServiceProxy
>* service_proxy_out,
proxy_dbus_client.cc
185
std::vector<std::unique_ptr<
ServiceProxy
>> ProxyDbusClient::GetServiceProxies() {
186
return GetProxies<
ServiceProxy
>(shill::kServicesProperty);
198
std::unique_ptr<
ServiceProxy
> ProxyDbusClient::GetMatchingServiceProxy(
200
return GetMatchingProxy<
ServiceProxy
>(shill::kServicesProperty, expected_properties);
217
ServiceProxy
* proxy,
220
return GetPropertyValueFromProxy<
ServiceProxy
>(
251
return WaitForProxyPropertyValueIn<
ServiceProxy
>(
268
std::unique_ptr<
ServiceProxy
> ProxyDbusClient::GetServiceProxy(
276
return std::unique_ptr<
ServiceProxy
>(
277
new
ServiceProxy
(dbus_bus_, service_path))
[
all
...]
proxy_dbus_shill_wifi_client.cc
232
std::unique_ptr<
ServiceProxy
> service =
457
std::unique_ptr<
ServiceProxy
> service =
/system/update_engine/
shill_proxy.cc
21
using org::chromium::flimflam::
ServiceProxy
;
40
return std::unique_ptr<ServiceProxyInterface>(new
ServiceProxy
(bus_, path));
shill_proxy_interface.h
32
// properties on the selected org::chromium::flimflam::
ServiceProxy
. This class
42
// Return a
ServiceProxy
for the given path. The ownership of the returned
shill_proxy.h
48
// A reference to the main bus for creating new
ServiceProxy
instances.
/external/autotest/frontend/afe/
rpc_client_lib.py
19
return proxy.
ServiceProxy
(*args, **kwargs)
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
ServiceProxy.java
35
*
ServiceProxy
is a superclass for proxy objects which make a single call to a service. It handles
37
* and disconnecting from the service afterwards.
ServiceProxy
objects cannot be reused (trying to
46
public abstract class
ServiceProxy
{
47
public static final String EXTRA_FORCE_SHUTDOWN = "
ServiceProxy
.FORCE_SHUTDOWN";
90
public
ServiceProxy
(Context _context, Intent _intent) {
122
// Each
ServiceProxy
handles just one task, so we unbind after we're
161
public
ServiceProxy
setTimeout(int secs) {
172
throw new IllegalStateException("Cannot call setTask twice on the same
ServiceProxy
.");
AccountServiceProxy.java
24
public class AccountServiceProxy extends
ServiceProxy
implements IAccountService {
PolicyServiceProxy.java
27
public class PolicyServiceProxy extends
ServiceProxy
implements IPolicyService {
EmailServiceProxy.java
49
public class EmailServiceProxy extends
ServiceProxy
implements IEmailService {
/frameworks/support/media-compat/api24/android/support/v4/media/
MediaBrowserServiceCompatApi24.java
43
public static Object createService(Context context, ServiceCompatProxy
serviceProxy
) {
44
return new MediaBrowserServiceAdaptor(context,
serviceProxy
);
/system/weaved/buffet/
shill_client.h
67
//
ServiceProxy
objects are shared because the connecting service will
71
std::shared_ptr<org::chromium::flimflam::
ServiceProxy
> selected_service;
111
std::shared_ptr<org::chromium::flimflam::
ServiceProxy
>
124
std::shared_ptr<org::chromium::flimflam::
ServiceProxy
> connecting_service_;
shill_client.cc
35
using org::chromium::flimflam::
ServiceProxy
;
49
bool GetStateForService(
ServiceProxy
* service, string* state) {
173
connecting_service_.reset(new
ServiceProxy
{bus_, service_path});
188
std::shared_ptr<org::chromium::flimflam::
ServiceProxy
> connecting_service) {
386
std::make_shared<
ServiceProxy
>(bus_, service_path);
404
ServiceProxy
* service{nullptr};
/frameworks/support/media-compat/api21/android/support/v4/media/
MediaBrowserServiceCompatApi21.java
33
public static Object createService(Context context, ServiceCompatProxy
serviceProxy
) {
34
return new MediaBrowserServiceAdaptor(context,
serviceProxy
);
/system/connectivity/shill/setup_wifi/
main.cc
83
std::unique_ptr<org::chromium::flimflam::
ServiceProxy
> shill_service_proxy(
84
new org::chromium::flimflam::
ServiceProxy
(bus_,
/external/autotest/frontend/afe/json_rpc/
proxy.py
90
class
ServiceProxy
(object):
99
return
ServiceProxy
(self.__serviceURL, name, self.__headers)
/packages/apps/Email/provider_src/com/android/email/service/
EmailServiceUtils.java
66
import com.android.emailcommon.service.
ServiceProxy
;
93
serviceIntent.putExtra(
ServiceProxy
.EXTRA_FORCE_SHUTDOWN, true);
[
all
...]
Completed in 341 milliseconds