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

1 2 34 5 6 7 8 91011>>

  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusedLocationService.java 19 import android.app.Service;
23 public class FusedLocationService extends Service {
  /frameworks/base/services/tests/servicestests/test-apps/ConnTestApp/src/com/android/servicestests/apps/conntestapp/
CmdReceiverService.java 18 import android.app.Service;
24 public class CmdReceiverService extends Service {
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
TestSyncService.java 18 import android.app.Service;
22 public abstract class TestSyncService extends Service {
  /packages/services/Telecomm/src/com/android/server/telecom/components/
BluetoothPhoneService.java 21 import android.app.Service;
29 public final class BluetoothPhoneService extends Service implements TelecomSystem.Component {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ServiceTest.java 19 import static com.google.common.util.concurrent.Service.State.FAILED;
20 import static com.google.common.util.concurrent.Service.State.NEW;
21 import static com.google.common.util.concurrent.Service.State.RUNNING;
22 import static com.google.common.util.concurrent.Service.State.STARTING;
23 import static com.google.common.util.concurrent.Service.State.STOPPING;
24 import static com.google.common.util.concurrent.Service.State.TERMINATED;
29 * Unit tests for {@link Service}
ServiceManagerTest.java 63 * A NoOp service that will delay the startup and shutdown notification for a configurable amount
112 Service a = new NoOpDelayedService(150);
113 Service b = new NoOpDelayedService(353);
116 ImmutableMap<Service, Long> startupTimes = serviceManager.startupTimes();
124 // 1. service times are accurate when the service is started by the manager
125 // 2. service times are recorded when the service is not started by the manager (but they may
127 final Service b = new NoOpDelayedService(353) {
130 // This will delay service listener execution at least 150 millisecond
435 NoOpService service = new NoOpService(); local
    [all...]
  /external/guice/core/test/com/google/inject/example/
ClientServiceWithGuice.java 35 public interface Service {
39 public static class ServiceImpl implements Service {
47 bind(Service.class).to(ServiceImpl.class).in(Scopes.SINGLETON);
53 private final Service service; field in class:ClientServiceWithGuice.Client
56 public Client(Service service) {
57 this.service = service;
61 service.go()
    [all...]
ClientServiceWithGuiceDefaults.java 36 public interface Service {
41 public static class ServiceImpl implements ClientServiceWithGuiceDefaults.Service {
49 private final Service service; field in class:ClientServiceWithGuiceDefaults.Client
52 public Client(Service service) {
53 this.service = service;
57 service.go();
68 public static class MockService implements Service {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Driver.c 2 Driver Binding functions and Service Binding functions
36 Destroy the MTFTP6 service. The MTFTP6 service may be partly initialized,
40 @param[in] Service The MTFTP6 service to be destroyed.
45 IN MTFTP6_SERVICE *Service
51 ASSERT (Service->ChildrenNum == 0);
53 if (Service->DummyUdpIo != NULL) {
54 UdpIoFreeIo (Service->DummyUdpIo);
57 if (Service->Timer != NULL) {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Driver.c 2 Driver Binding functions and Service Binding functions
84 Destroy the Dhcp6 service. The Dhcp6 service may be partly initialized,
88 @param[in, out] Service The pointer to Dhcp6 service to be destroyed.
93 IN OUT DHCP6_SERVICE *Service
99 ASSERT (Service->NumOfChild == 0);
101 if (Service->ClientId != NULL) {
102 FreePool (Service->ClientId);
105 if (Service->UdpIo != NULL) {
    [all...]
Dhcp6Impl.c 78 DHCP6_SERVICE *Service;
85 Service = Instance->Service;
119 Service->UdpIo,
121 Service,
137 Service->UdpIo->Protocol.Udp6->Poll (Service->UdpIo->Protocol.Udp6);
176 DHCP6_SERVICE *Service;
183 Service = Instance->Service;
    [all...]
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_call.h 37 // * `UntypedCall<Service>`: The base class represents a call that
38 // could be associated with any of the methods on a service of type
39 // `Service`. Also defines a `Tag` nested class that can be used as
41 // instantiates `Service` should have a completion queue polling
42 // loop that knows about `UntypedCall<Service>::Tag` objects, and
45 // * `Call<Service, GrpcService, Req, Resp>`: This class extends
46 // `UntypedCall<Service>` and is additionally parameterized by the
47 // gRPC-generated asynchronous service class, and the request and
50 // pointer to a `Service::HandleFoo()` handler method. Each
51 // `Service::HandleFoo()` method knows about the correspondin
    [all...]
  /external/perfetto/src/tracing/ipc/service/
consumer_ipc_service.h 28 #include "perfetto/tracing/core/service.h"
38 // Implements the Consumer port of the IPC service. This class proxies requests
39 // and responses between the core service logic (|svc_|) and remote Consumer(s)
43 using Service = ::perfetto::Service; // To avoid collisions w/ ipc::Service.
44 explicit ConsumerIPCService(Service* core_service);
60 // Acts like a Consumer with the core Service business logic (which doesn't
75 // The interface obtained from the core service business logic through
76 // Service::ConnectConsumer(this). This allows to invoke methods for
    [all...]
producer_ipc_service.h 27 #include "perfetto/tracing/core/service.h"
37 // Implements the Producer port of the IPC service. This class proxies requests
38 // and responses between the core service logic (|svc_|) and remote Producer(s)
42 using Service = ::perfetto::Service; // To avoid collisions w/ ipc::Service.
43 explicit ProducerIPCService(Service* core_service);
60 // Acts like a Producer with the core Service business logic (which doesn't
80 // The interface obtained from the core service business logic through
81 // Service::ConnectProducer(this). This allows to invoke methods for
    [all...]
  /external/protobuf/src/google/protobuf/
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
111 class Service;
124 // interface can be used to call the methods of the Service without knowing
126 class LIBPROTOBUF_EXPORT Service {
128 inline Service() {}
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
111 class Service;
124 // interface can be used to call the methods of the Service without knowing
126 class LIBPROTOBUF_EXPORT Service {
128 inline Service() {}
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
service.h 45 // When you use the protocol compiler to compile a service definition, it
46 // generates two classes: An abstract interface for the service (with
47 // methods matching the service definition) and a "stub" implementation.
49 // local implementation of the service.
51 // For example, the service definition:
52 // service MyService {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpDns.c 42 HTTP_SERVICE *Service;
50 Service = HttpInstance->Service;
51 ASSERT (Service != NULL);
60 Status = gBS->HandleProtocol (Service->ControllerHandle, &gEfiIp4Config2ProtocolGuid, (VOID **) &Ip4Config2);
90 Service->ControllerHandle,
91 Service->ImageHandle,
103 Service->ImageHandle,
104 Service->ControllerHandle,
199 Service->ImageHandle,
    [all...]
  /external/perfetto/src/tracing/test/
mock_consumer.h 24 #include "perfetto/tracing/core/service.h"
49 void Connect(Service* svc);
57 Service::ConsumerEndpoint* endpoint() { return service_endpoint_.get(); }
74 std::unique_ptr<Service::ConsumerEndpoint> service_endpoint_;
  /frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/core/
InstrumentationUiAutomatorBridge.java 19 import android.app.Service;
41 mContext.getSystemService(Service.WINDOW_SERVICE);
53 mContext.getSystemService(Service.POWER_SERVICE);
  /prebuilts/sdk/tools/darwin/lib/
shrinkedAndroid.jar 
  /prebuilts/sdk/tools/linux/lib/
shrinkedAndroid.jar 

Completed in 807 milliseconds

1 2 34 5 6 7 8 91011>>