HomeSort by relevance Sort by last modified time
    Searched refs:Service (Results 1 - 25 of 808) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/compat/ics/android/support/v4/app/
NotificationManagerCompatIceCreamSandwich.java 19 import android.app.Service;
22 static final int SIDE_CHANNEL_BIND_FLAGS = Service.BIND_AUTO_CREATE
23 | Service.BIND_WAIVE_PRIORITY;
  /external/protobuf/src/google/protobuf/
service.cc 35 #include <google/protobuf/service.h>
40 Service::~Service() {}
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
service_registry.hpp 20 template <typename Service, typename Arg>
22 asio::io_service& o, Service*, Arg arg)
24 first_service_(new Service(o, arg))
26 asio::io_service::service::key key;
27 init_key(key, Service::id);
32 template <typename Service>
33 Service& service_registry::first_service()
35 return *static_cast<Service*>(first_service_);
38 template <typename Service>
39 Service& service_registry::use_service(
    [all...]
  /external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/
Service.java 23 public interface Service {
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Service.java 3 public interface Service {
ServiceImpl.java 3 public class ServiceImpl implements Service {
  /libcore/support/src/test/java/tests/resources/ServiceLoader/
Service.java 23 public interface Service {
  /system/connectivity/apmanager/
mock_service.cc 21 MockService::MockService() : Service(nullptr, 0) {}
  /external/guice/core/test/com/google/inject/example/
ClientServiceWithDependencyInjection.java 28 public interface Service {
32 public static class ServiceImpl implements ClientServiceWithDependencyInjection.Service {
42 private static final Service service = new ServiceImpl(); field in class:ClientServiceWithDependencyInjection.ServiceFactory
44 public static Service getInstance() {
45 return service;
51 private final Service service; field in class:ClientServiceWithDependencyInjection.Client
53 public Client(Service service) {
67 Service service = ServiceFactory.getInstance(); local
    [all...]
ClientServiceWithFactories.java 28 public interface Service {
32 public static class ServiceImpl implements Service {
42 private static Service instance = new ServiceImpl();
44 public static Service getInstance() {
48 public static void setInstance(Service service) {
49 instance = service;
56 Service service = ServiceFactory.getInstance(); local
57 service.go()
    [all...]
  /frameworks/support/compat/api24/android/support/v4/app/
ServiceCompatApi24.java 18 import android.app.Service;
21 public static void stopForeground(Service service, int flags) {
22 service.stopForeground(flags);
  /system/connectivity/dhcp_client/
manager.h 29 class Service;
36 scoped_refptr<Service> StartService(const brillo::VariantDictionary& configs);
38 bool StopService(const scoped_refptr<Service>& service);
43 std::vector<scoped_refptr<Service>> services_;
manager.cc 18 #include "dhcp_client/service.h"
31 scoped_refptr<Service> Manager::StartService(
33 scoped_refptr<Service> service = new Service(this, local
37 services_.push_back(service);
38 return service;
41 bool Manager::StopService(const scoped_refptr<Service>& service) {
43 if (*it == service) {
    [all...]
  /system/connectivity/shill/cellular/
active_passive_out_of_credits_detector_unittest.cc 97 void SetMockServiceState(Service::ConnectState old_state,
98 Service::ConnectState new_state) {
130 SetMockServiceState(Service::kStateIdle, Service::kStateAssociating);
131 SetMockServiceState(Service::kStateAssociating, Service::kStateConnected);
132 SetMockServiceState(Service::kStateConnected, Service::kStateFailure);
135 SetMockServiceState(Service::kStateIdle, Service::kStateAssociating)
    [all...]
  /system/connectivity/shill/
service.cc 17 #include "shill/service.h"
65 static string ObjectID(const Service* s) { return s->GetRpcIdentifier(); }
68 const char Service::kAutoConnBusy[] = "busy";
69 const char Service::kAutoConnConnected[] = "connected";
70 const char Service::kAutoConnConnecting[] = "connecting";
71 const char Service::kAutoConnExplicitDisconnect[] = "explicitly disconnected";
72 const char Service::kAutoConnNotConnectable[] = "not connectable";
73 const char Service::kAutoConnOffline[] = "offline";
74 const char Service::kAutoConnTechnologyNotConnectable[] =
76 const char Service::kAutoConnThrottled[] = "throttled"
    [all...]
  /external/guice/extensions/service/src/com/google/inject/service/
CompositeService.java 16 package com.google.inject.service;
34 * A service that composes other services together in a fixed order.
41 private final Set<Key<? extends Service>> services = Sets.newLinkedHashSet();
44 * Represents the state of this composite service. Will equal FAILED
45 * even if only one component service fails to start or stop. In other
47 * service to be considered started and similarly for stopped.
49 private volatile Service.State compositeState;
57 public CompositeService add(Class<? extends Service> service) {
58 return add(Key.get(service));
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
ProviderServiceTest.java 28 import java.security.Provider.Service;
39 * Tests for <code>Provider.Service</code> constructor and methods
47 new Provider.Service(null, "type", "algorithm", "className", null,
53 new Provider.Service(p, null, "algorithm", "className", null, null);
58 new Provider.Service(p, "type", null, "className", null, null);
63 new Provider.Service(p, "type", "algorithm", null, null, null);
68 Provider.Service s = new Provider.Service(p, "type", "algorithm",
90 Provider.Service s = new Provider.Service(p, "type", "algorithm"
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
service_registry.hpp 33 // Constructor. Adds the initial service.
34 template <typename Service, typename Arg>
36 Service* initial_service, Arg arg);
44 // Get the first service object cast to the specified type. Called during
46 template <typename Service>
47 Service& first_service();
49 // Get the service object corresponding to the specified service type. Will
50 // create a new service object automatically if no such object already
51 // exists. Ownership of the service object is not transferred to the caller
    [all...]
  /cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/
MockAccountService.java 19 import android.app.Service;
24 * Service for wrapping the {@link MockAccountAuthenticator}
26 public class MockAccountService extends Service {
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
AccountService.java 19 import android.app.Service;
23 public class AccountService extends Service {
  /cts/tests/tests/accounts/src/android/accounts/cts/
MockAccountService.java 19 import android.app.Service;
24 * a basic Mock Service for wrapping the MockAccountAuthenticator
26 public class MockAccountService extends Service {
MockCustomTokenAccountService.java 3 import android.app.Service;
7 public class MockCustomTokenAccountService extends Service {
  /cts/tests/tests/content/src/android/content/cts/
MockAccountService.java 19 import android.app.Service;
24 * a basic Mock Service for wrapping the MockAccountAuthenticator
26 public class MockAccountService extends Service {
MockSyncAdapterService.java 19 import android.app.Service;
23 public class MockSyncAdapterService extends Service {
  /cts/tests/tests/provider/src/android/provider/cts/contacts/account/
MockAccountService.java 19 import android.app.Service;
24 * Account service for the authenticator
26 public class MockAccountService extends Service {

Completed in 648 milliseconds

1 2 3 4 5 6 7 8 91011>>