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

<<11121314151617181920>>

  /external/tensorflow/tensorflow/compiler/xla/rpc/
grpc_service.h 21 #include "tensorflow/compiler/xla/service/service.h"
25 // Service implementation which wraps a XLA Service with a GRPC interface.
26 class GRPCService : public grpc::XlaService::Service {
29 // that the service should target. If platform is null then the default
86 std::unique_ptr<::xla::Service> service_;
  /external/u-boot/arch/arm/mach-omap2/
lowlevel_init.S 55 mov r12, r0 @ Service
61 @ call ROM Code API for the service requested
69 mov r12, #0x00 @ Secure Service ID in R12
75 b omap_smc_sec_end @ exit at end of the service execution
  /external/perfetto/src/ipc/
host_impl_unittest.cc 28 #include "perfetto/ipc/service.h"
50 class FakeService : public Service {
54 static void Invoker(Service* service,
57 static_cast<FakeService*>(service)->OnFakeMethod1(
76 base::ScopedFile TakeReceivedFD() { return ipc::Service::TakeReceivedFD(); }
196 // First bind the service when it doesn't exists yet and check that the
207 // Now expose the service and bind it.
209 std::unique_ptr<Service>(new FakeService("FakeService"))));
222 ASSERT_TRUE(host_->ExposeService(std::unique_ptr<Service>(fake_service)))
    [all...]
  /cts/tests/app/app/src/android/app/stubs/
LocalForegroundServiceLocation.java 24 import android.app.Service;
36 * Foreground Service with location type.
46 /** Returns the channel id for this service */
  /external/grpc-grpc/src/cpp/ext/
proto_server_reflection.h 31 : public reflection::v1alpha::ServerReflection::Service {
39 // in ServerReflection service
  /external/grpc-grpc/src/ruby/end2end/
killed_client_thread_driver.rb 19 # Service that sleeps for a long time upon receiving an 'echo request'
22 class SleepingEchoServerImpl < Echo::EchoServer::Service
sig_handling_client.rb 20 class SigHandlingClientController < ClientControl::ClientController::Service
sig_handling_driver.rb 22 # A service that calls back it's received_rpc_callback
25 class ClientStartedService < Echo::EchoServer::Service
  /external/grpc-grpc/src/ruby/pb/grpc/health/
checker.rb 21 # service.
23 # Checker is implementation of the schema-specified health checking service.
24 class Checker < V1::Health::Service
38 status = @statuses["#{req.service}"]
46 # Adds the health status for a given service.
47 def add_status(service, status)
48 @status_mutex.synchronize { @statuses["#{service}"] = status }
54 services.each { |service| @statuses["#{service}"] = status }
58 # Adds health status for each service given within has
    [all...]
  /external/grpc-grpc/src/ruby/stress/
metrics_server.rb 32 class MetricsServiceImpl < Grpc::Testing::MetricsService::Service
  /external/grpc-grpc/test/cpp/end2end/
client_crash_test_server.cc 46 class ServiceImpl final : public ::grpc::testing::EchoTestService::Service {
62 ServiceImpl service; local
66 builder.RegisterService(&service);
test_service_impl.h 46 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service {
hybrid_end2end_test.cc 60 template <class Service>
61 void HandleEcho(Service* service, ServerCompletionQueue* cq, bool dup_service) {
66 service->RequestEcho(&srv_ctx, &recv_request, &response_writer, cq, cq,
80 template <class Service>
81 void HandleRawEcho(Service* service, ServerCompletionQueue* cq,
86 service->RequestEcho(&srv_ctx, &recv_buffer, &response_writer, cq, cq,
98 template <class Service>
99 void HandleClientStreaming(Service* service, ServerCompletionQueue* cq)
418 SType service; local
429 SType service; local
440 SType service; local
453 SType service; local
469 SType service; local
486 SType service; local
502 SType service; local
519 SType service; local
558 SType service; local
596 SType service; local
637 SType service; local
677 SType service; local
729 SType service; local
749 SType service; local
768 EchoTestService::WithGenericMethod_Echo<TestServiceImpl> service; local
782 SType service; local
800 SType service; local
820 SType service; local
844 SType service; local
865 SType service; local
887 service; local
    [all...]
  /external/grpc-grpc/test/cpp/server/
server_builder_test.cc 33 testing::EchoTestService::Service g_service;
  /external/guice/extensions/service/src/com/google/inject/service/
AsyncService.java 17 package com.google.inject.service;
26 * An asynchronous implementation of {@link com.google.inject.service.Service} that provides
31 public abstract class AsyncService implements Service {
49 state != State.STOPPED, "Cannot restart a service that has been stopped");
67 * Called back when this service must do its start work. Typically occurs in a background thread.
68 * The result of this method is returned to the original caller of {@link Service#start()} and can
75 Preconditions.checkState(state != null, "Must start this service before you stop it!");
93 * Called back when this service must shutdown. Typically occurs in a background thread. The
94 * result of this method is returned to the original caller of {@link Service#stop()} and can thu
    [all...]
  /external/protobuf/python/google/protobuf/
service.py 31 """DEPRECATED: Declares the RPC service interfaces.
51 class Service(object):
57 interface can be used to call the methods of the service without knowing
62 """Retrieves this service's descriptor."""
67 """Calls a method of the service specified by method_descriptor.
76 * method_descriptor.service == GetDescriptor
81 used by this Service. For stubs, the "correct type" depends on the
101 method = service.GetDescriptor().FindMethodByName("Foo")
104 service.CallMethod(method, request, callback)
205 An RpcChannel represents a communication line to a service which can be use
    [all...]
  /external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
Robolectric.java 9 import android.app.Service;
31 public static <T extends Service> ServiceController<T> buildService(Class<T> serviceClass) {
35 public static <T extends Service> ServiceController<T> buildService(Class<T> serviceClass, Intent intent) {
39 public static <T extends Service> T setupService(Class<T> serviceClass) {
  /external/tensorflow/tensorflow/compiler/xla/service/
compile_only_service.h 19 #include "tensorflow/compiler/xla/service/backend.h"
20 #include "tensorflow/compiler/xla/service/compiler.h"
21 #include "tensorflow/compiler/xla/service/service.h"
28 // An XLA Service specialization for ahead-of-time compilation. This only
31 class CompileOnlyService : public Service {
34 // platform that the service should target. If platform is null then the
97 // the Service::execute_backend_'s compiler, since execute_backend_ is a
  /external/tensorflow/tensorflow/contrib/cloud/ops/
gcs_config_ops.cc 38 2. Service Account:
  /external/tensorflow/tensorflow/contrib/verbs/
grpc_verbs_service_impl.cc 61 ::grpc::Service::MarkMethodAsync(i);
  /external/tensorflow/tensorflow/core/debug/
debug_grpc_testlib.h 32 class TestEventListenerImpl final : public EventListener::Service {
  /frameworks/av/media/libmediaplayerservice/
DeathRecipient.h 29 using Service = std::variant<
34 const sp<IBinder>& service,
52 sp<android::hidl::base::V1_0::IBase> mHService; // HIDL service
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Impl.c 72 IpSb = IpInstance->Service;
238 @param[in] IpSb The IP6 service instance.
299 @param[in] IpSb The IP6 service instance.
315 IpInstance->Service = IpSb;
363 IpSb = IpInstance->Service;
501 @param[in] IpSb The IP6 service instance that is to be changed.
637 IpSb = IpInstance->Service;
707 Ip6ServiceConfigMnp (IpInstance->Service, FALSE);
767 IpSb = IpInstance->Service;
850 IpSb = IpInstance->Service;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Driver.c 64 Test to see if this driver supports ControllerHandle. This service
65 is called by the EFI boot service ConnectController(). In
67 restrictions for this service. ConnectController() must
149 Destroy the DHCP service. The Dhcp4 service may be partly initialized,
153 @param[in] DhcpSb The DHCP service instance to destroy.
183 Create a new DHCP service binding instance for the controller.
185 @param[in] Controller The controller to install DHCP service binding
188 @param[out] Service The variable to receive the created DHCP service
    [all...]
Dhcp4Impl.c 43 the EFI DHCPv4 Service Binding Protocol is installed. This function can be
48 DHCPv4 Service Binding Protocol driver instance has configured this EFI DHCPv4
247 Use the EFI Boot Service FreePool() on the resulting pointer
377 DhcpSb = Instance->Service;
547 Give up the control of the DHCP service to let other child
548 resume. Don't change the service's DHCP state and the Client
551 @param DhcpSb The DHCP service instance.
590 the EFI DHCPv4 Service Binding Protocol is installed. This function can be
595 DHCPv4 Service Binding Protocol driver instance has configured this EFI DHCPv4
676 DhcpSb = Instance->Service;
    [all...]

Completed in 439 milliseconds

<<11121314151617181920>>