HomeSort by relevance Sort by last modified time
    Searched defs:Service (Results 26 - 50 of 272) sorted by null

12 3 4 5 6 7 8 91011

  /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...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Impl.c 141 MTFTP6_SERVICE *Service;
158 Service = Instance->Service;
194 Service->Controller,
195 Service->Image,
205 Service->Image,
409 in the Packet. Call the EFI Boot Service FreePool() to
453 - A download service function that is pointed to by Token.CheckPacket.
557 - A download service function that is pointed to by Token.CheckPacket.
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...]
  /external/autotest/site_utils/lxc/container_pool/
service.py 41 class Service(object):
44 The Service class manages client communication with an underlying container
50 """Sets up a new container pool service.
55 @param pool: (for testing) A container pool that the service will
57 Under normal circumstances the service instantiates the
74 """Starts the service.
78 into the Service constructor.
110 logging.error('Error stopping pool service: %r', e)
124 """Stops the service."""
130 """Returns whether or not the service is currently running.""
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
service.h 26 #include "tensorflow/compiler/xla/service/allocation_tracker.h"
27 #include "tensorflow/compiler/xla/service/backend.h"
28 #include "tensorflow/compiler/xla/service/channel_tracker.h"
29 #include "tensorflow/compiler/xla/service/compilation_cache.h"
30 #include "tensorflow/compiler/xla/service/computation_tracker.h"
31 #include "tensorflow/compiler/xla/service/device_memory_allocator.h"
32 #include "tensorflow/compiler/xla/service/executable.h"
33 #include "tensorflow/compiler/xla/service/execution_tracker.h"
34 #include "tensorflow/compiler/xla/service/hlo_execution_profile.h"
35 #include "tensorflow/compiler/xla/service/hlo_module.h
    [all...]
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Service.java 27 * Base implementation of a service that communicates over a transport.
33 public abstract class Service implements Transport.Callback {
38 public Service(Context context, Transport transport, int serviceId) {
69 public void onMessageReceived(int service, int what, ByteBuffer content) {
  /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...]
  /device/linaro/bootloader/edk2/NetworkPkg/TlsDxe/
TlsDriver.h 2 Header file of the Driver Binding and Service Binding Protocol for TlsDxe driver.
36 /// TLS Service Data
73 TLS_SERVICE *Service;
113 @param[in] Service The pointer to the TLS service.
122 IN TLS_SERVICE *Service,
127 Release all the resources used by the TLS service binding instance.
129 @param[in] Service The TLS service data.
134 IN TLS_SERVICE *Service
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 30 * <p>The normal lifecycle of a service is:
39 * <p>There are deviations from this if there are failures or if {@link Service#stopAsync} is called
40 * before the {@link Service} reaches the {@linkplain State#RUNNING RUNNING} state. The set of legal
43 * and {@link State#TERMINATED} states are terminal states, once a service enters either of these
52 * @since 9.0 (in 1.0 as {@code com.google.common.base.Service})
55 public interface Service {
57 * If the service state is {@link State#NEW}, this initiates service startup and returns
58 * immediately. A stopped service may not be restarted.
61 * @throws IllegalStateException if the service is not {@link State#NEW
    [all...]
  /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...]
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...]
  /external/mockito/src/test/java/org/mockitousage/bugs/
ShouldNotDeadlockAnswerExecutionTest.java 24 Service service = Mockito.mock(Service.class); local
30 Mockito.when(service.verySlowMethod()).thenAnswer(new LockingAnswer(counter));
34 threads.execute(new ServiceRunner(service));
35 threads.execute(new ServiceRunner(service));
49 Service service1 = Mockito.mock(Service.class);
50 Service service2 = Mockito.mock(Service.class)
99 private Service service; field in class:ShouldNotDeadlockAnswerExecutionTest.ServiceRunner
    [all...]
  /external/mockito/src/test/java/org/mockitousage/bugs/injection/
InjectionByTypeShouldFirstLookForExactTypeThenAncestorTest.java 24 @InjectMocks private Service illegalInjectionExample = new Service();
30 Field[] declaredFields = Service.class.getDeclaredFields();
56 public static class Service {
  /packages/apps/Dialer/java/com/android/dialer/configprovider/
SharedPrefConfigProvider.java 39 * 'com.android.dialer/.configprovider.SharedPrefConfigProvider\$Service' \
62 /** Service to write values into {@link SharedPrefConfigProvider} using adb. */
63 public static class Service extends IntentService {
65 public Service() {
66 super("SharedPrefConfigProvider.Service");
72 LogUtil.w("SharedPrefConfigProvider.Service.onHandleIntent", "must set exactly one extra");
  /system/core/libmemunreachable/tests/
Binder_test.cpp 36 // Provides a service that will hold a strong reference to any remote binder
74 _exit(Service());
98 int Service() {
102 fprintf(stderr, "Failed to get service manager\n");
107 fprintf(stderr, "Failed to add test service\n");
127 // through ServiceProcess as a remote service to hold the strong reference.
137 // A small sleep allows the service to start, which
141 sp<IBinder> service = sm->getService(service_name); local
142 ASSERT_TRUE(service != nullptr);
150 status_t rv = service->transact(0, send, &reply)
    [all...]
  /frameworks/native/libs/vr/libpdx/
service.cpp 1 #include "pdx/service.h"
23 : service_{Service::GetFromMessageInfo(info)},
56 "ERROR: Service \"%s\" failed to reply to message: op=%d pid=%d "
389 Service* service, int flags, const std::shared_ptr<Channel>& channel,
392 return service->PushChannel(this, flags, channel, channel_id);
405 Status<int> Message::CheckChannel(const Service* service, ChannelReference ref,
408 return service->CheckChannel(this, ref, channel);
443 std::shared_ptr<Service> Message::GetService() const { return service_.lock();
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
Mtftp4Impl.c 242 MTFTP4_SERVICE *Service;
249 Service = Instance->Service;
253 Service->TimerToGetMap,
261 while (EFI_ERROR (gBS->CheckEvent (Service->TimerToGetMap))) {
715 EFI Boot Service FreePool() to release theOptionList
771 2.A download service function that is pointed to by Token.CheckPacket
875 2.A download service function that is pointed to by Token.CheckPacket
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6If.h 115 IP6_SERVICE *Service;
147 @param[in] IpSb The IP6 service binding instance.
208 @param[in] IpSb Points to the IP6 service binding instance.
252 The heartbeat timer of IP6 service instance. It times out
256 @param[in] Event The IP6 service instance's heart beat timer.
257 @param[in] Context The IP6 service instance.
  /external/autotest/client/cros/tendo/
peerd_dbus_helper.py 15 Service = collections.namedtuple('Service',
23 DBUS_INTERFACE_SERVICE = 'org.chromium.peerd.Service'
103 logging.debug('Found service with properties: %r',
107 services.append(Service(
160 """Expose a service via peerd.
162 Note that peerd should watch DBus connections and remove this service
165 @param service_id: string id of service. See peerd documentation
170 @return string service token for use with remove_service().
186 """Remove a service previously added via expose_service()
    [all...]
  /external/flatbuffers/tests/
monster_test.grpc.fb.h 78 class Service : public ::grpc::Service {
80 Service();
81 virtual ~Service();
88 void BaseClassMustBeDerivedFromService(const Service *service) {}
91 ::grpc::Service::MarkMethodAsync(0);
102 ::grpc::Service::RequestAsyncUnary(0, context, request, response, new_call_cq, notification_cq, tag);
108 void BaseClassMustBeDerivedFromService(const Service *service) {}
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 125 * Service question.
127 private static class Service extends DNSQuestion {
128 Service(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
140 // Service type request
201 // Service type request
251 return new Service(name, type, recordClass, unique);
  /frameworks/base/location/lib/java/com/android/location/provider/
LocationProviderBase.java 42 * <p>The network location provider must export a service with action
43 * "com.android.location.service.v2.NetworkLocationProvider"
44 * and a valid minor version in a meta-data field on the service, and
45 * then return the result of {@link #getBinder()} on service binding.
47 * <p>The fused location provider must export a service with action
48 * "com.android.location.service.FusedLocationProvider"
49 * and a valid minor version in a meta-data field on the service, and
50 * then return the result of {@link #getBinder()} on service binding.
79 private final class Service extends ILocationProvider.Stub {
121 mBinder = new Service();
    [all...]

Completed in 996 milliseconds

12 3 4 5 6 7 8 91011