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

1 2 3 4 5 6 7 8 91011>>

  /external/perfetto/src/tracing/core/
virtual_destructors.cc 19 #include "perfetto/tracing/core/service.h"
32 Service::~Service() = default;
33 Service::ConsumerEndpoint::~ConsumerEndpoint() = default;
34 Service::ProducerEndpoint::~ProducerEndpoint() = default;
  /system/bt/service/common/bluetooth/
service.cc 17 #include <bluetooth/service.h>
20 Service::Service(const Service& other) {
28 Service& Service::operator=(const Service& other) {
39 bool Service::Equals(const Service& other) const {
45 bool Service::operator==(const Service& rhs) const { return Equals(rhs);
    [all...]
service.h 25 class Service {
27 Service() = default;
28 Service(const Service& other);
29 Service(uint16_t handle, bool primary, const Uuid& uuid,
31 const std::vector<Service>& included_services)
37 Service& operator=(const Service& other);
38 virtual ~Service() = default;
41 bool Equals(const Service& other) const
    [all...]
  /external/perfetto/src/ipc/
virtual_destructors.cc 19 #include "perfetto/ipc/service.h"
32 Service::~Service() = default;
  /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/core/init/
keychords.h 20 #include "service.h"
25 void add_service_keycodes(Service* svc);
  /external/autotest/site_utils/lxc/container_pool/
__init__.py 8 from service import Service
  /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...]
  /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...]
  /frameworks/base/test-mock/src/android/test/mock/
MockService.java 19 import android.app.Service;
23 * A mock {@link android.app.Service} class.
34 public static <T extends Service> void attachForTesting(Service service, Context context,
37 service.attach(
39 null, // ActivityThread not actually used in Service
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeSuspendScreenStatePreventingAdapter.java 27 public class DozeSuspendScreenStatePreventingAdapter extends DozeMachine.Service.Delegate {
30 DozeSuspendScreenStatePreventingAdapter(DozeMachine.Service inner) {
46 public static DozeMachine.Service wrapIfNeeded(DozeMachine.Service inner,
  /system/bt/service/common/android/bluetooth/
bluetooth_gatt_service.h 20 #include "bluetooth/service.h"
32 class BluetoothGattService : public Parcelable, public ::bluetooth::Service {
35 BluetoothGattService(const ::bluetooth::Service& service)
36 : ::bluetooth::Service(service){}; // NOLINT(implicit)
39 : ::bluetooth::Service(includedService.handle(),
  /system/tools/hidl/test/hidl_test/
hidl_test.h 15 template <template <typename Type> class Service>
28 Service<IMemoryTest>::run("memory");
29 Service<IChild>::run("child");
30 Service<IParent>::run("parent");
31 Service<IFetcher>::run("fetcher");
32 Service<IBar>::run("foo");
33 Service<IHash>::run("default");
34 Service<IGraph>::run("graph");
35 Service<IPointer>::run("pointer");
36 Service<IMultithread>::run("multithread")
    [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/CorpOwnedManagedProfile/src/com/android/cts/comp/
UnprotectedCrossUserService.java 19 import android.app.Service;
24 * Dummy service that is exported.
26 public class UnprotectedCrossUserService 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/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsSyncService.java 18 import android.app.Service;
23 * Service for the sync test.
25 public class BatteryStatsSyncService extends Service {

Completed in 674 milliseconds

1 2 3 4 5 6 7 8 91011>>