HomeSort by relevance Sort by last modified time
    Searched refs:Service (Results 51 - 75 of 564) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tests/tests/os/src/android/os/cts/
ParcelExceptionService.java 19 import android.app.Service;
25 public class ParcelExceptionService extends Service {
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
SyncService.java 19 import android.app.Service;
25 * Service which provides the SyncAdapter implementation to the framework on request.
27 public class SyncService extends Service {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncService.java 18 import android.app.Service;
23 * Service to handle Account sync. This is invoked with an intent with action
27 public class SyncService extends Service {
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ServiceModule.java 19 import com.google.common.util.concurrent.Service;
32 static ServiceManager provideServiceManager(Set<Service> services) {
  /external/grpc-grpc/examples/ruby/lib/
route_guide_services_pb.rb 25 class Service
59 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/bin/
math_services_pb.rb 24 class Service
49 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/pb/grpc/testing/duplicate/
echo_duplicate_services_pb.rb 28 class Service
40 Stub = Service.rpc_stub_class
  /external/grpc-grpc/src/ruby/qps/src/proto/grpc/testing/
proxy-service_services_pb.rb 2 # Source: src/proto/grpc/testing/proxy-service.proto for package 'grpc.testing'
25 class Service
38 Stub = Service.rpc_stub_class
  /external/perfetto/include/perfetto/ipc/
service_descriptor.h 31 class Service;
36 // instance of these and allows both client and hosts to map service and method
55 using InvokerFunc = void (*)(Service*,
  /external/grpc-grpc/src/ruby/pb/src/proto/grpc/testing/
test_services_pb.rb 18 # An integration test service that covers all the method signature permutations
28 # A simple service to test the various types of RPCs and experiment with
30 class Service
66 Stub = Service.rpc_stub_class
69 # A simple service NOT implemented at servers so clients can test for
71 class Service
83 Stub = Service.rpc_stub_class
86 # A service used to control reconnect server.
87 class Service
99 Stub = Service.rpc_stub_clas
    [all...]
  /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 33 public interface Service {
37 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 33 public interface Service {
38 public static class ServiceImpl implements ClientServiceWithGuiceDefaults.Service {
47 private final Service service; field in class:ClientServiceWithGuiceDefaults.Client
50 public Client(Service service) {
51 this.service = service;
55 service.go();
66 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/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...]
  /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/grpc-grpc/examples/ruby/pubsub/tech/pubsub/proto/
pubsub_services.rb 26 # TODO: add proto service documentation here
27 class Service
43 Stub = Service.rpc_stub_class
47 # TODO: add proto service documentation here
48 class Service
69 Stub = Service.rpc_stub_class
73 # TODO: add proto service documentation here
74 class Service
85 Stub = Service.rpc_stub_class
  /cts/tests/app/app/src/android/app/stubs/
StubRemoteService.java 19 import android.app.Service;
24 public class StubRemoteService extends Service{
  /cts/tests/tests/binder_ndk/src/android/binder/cts/
NativeService.java 19 import android.app.Service;
27 public class NativeService extends Service {
49 Log.i(TAG, "Binding service");
  /cts/tests/tests/content/lib/accountaccess/src/com.android.cts.content/
AlwaysSyncableSyncService.java 18 import android.app.Service;
23 public class AlwaysSyncableSyncService extends Service {
NotAlwaysSyncableSyncService.java 18 import android.app.Service;
23 public class NotAlwaysSyncableSyncService extends Service {

Completed in 4083 milliseconds

1 23 4 5 6 7 8 91011>>