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

1 2 3 4 5 67 8 91011>>

  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
AndroidProxy.java 19 import android.app.Service;
39 * @param service
40 * Android service (required to build facades).
46 public AndroidProxy(Service service, Intent intent, boolean requiresHandshake) {
53 new FacadeManagerFactory(FacadeConfiguration.getSdkLevel(), service, intent,
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ServiceUtils.java 21 import android.app.Service;
30 * A utility class supplying helper methods for {@link Service} objects.
38 * Marks the service as a foreground service. This uses reflection to figure out whether the new
39 * APIs for marking a service as a foreground service are available. If not, it falls back to the
42 * @param service
43 * the service to put in foreground mode
49 public static void setForeground(Service service, Integer notificationId
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
ForegroundService.java 21 import android.app.Service;
25 public abstract class ForegroundService extends Service {
  /external/tensorflow/tensorflow/contrib/verbs/
grpc_verbs_service_impl.h 36 // and the gRPC generated stub and service classes.
62 class AsyncService : public ::grpc::Service {
71 ::grpc::Service::RequestAsyncUnary(0, context, request, response,
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/eager/
grpc_eager_service.h 37 // and the gRPC generated stub and service classes.
107 class AsyncService : public ::grpc::Service {
116 ::grpc::Service::RequestAsyncUnary(0, context, request, response,
124 ::grpc::Service::RequestAsyncUnary(1, context, request, response,
132 ::grpc::Service::RequestAsyncUnary(2, context, request, response,
140 ::grpc::Service::RequestAsyncUnary(3, context, request, response,
148 ::grpc::Service::RequestAsyncUnary(4, context, request, response,
156 ::grpc::Service::RequestAsyncUnary(5, context, request, response,
164 ::grpc::Service::RequestAsyncUnary(6, context, request, response,
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_worker_service_impl.h 99 // and the gRPC generated stub and service classes.
103 class AsyncService : public ::grpc::Service {
109 using ::grpc::Service::RequestAsyncUnary;
  /external/tensorflow/tensorflow/core/profiler/rpc/
profiler_service_impl.cc 26 class ProfilerServiceImpl : public grpc::ProfilerService::Service {
70 std::unique_ptr<grpc::ProfilerService::Service> CreateProfilerService(
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 22 import static com.google.common.util.concurrent.Service.State.FAILED;
23 import static com.google.common.util.concurrent.Service.State.NEW;
24 import static com.google.common.util.concurrent.Service.State.RUNNING;
25 import static com.google.common.util.concurrent.Service.State.STARTING;
26 import static com.google.common.util.concurrent.Service.State.STOPPING;
27 import static com.google.common.util.concurrent.Service.State.TERMINATED;
32 import com.google.common.util.concurrent.Service.State; // javadoc needs this
56 public abstract class AbstractService implements Service {
131 * The current state of the service. This should be written with the lock held but can be read
146 * This method is called by {@link #startAsync} to initiate service startup. The invocation o
    [all...]
  /external/grpc-grpc/src/csharp/Grpc.HealthCheck/
Health.cs 40 new pbr::GeneratedClrTypeInfo(typeof(global::Grpc.Health.V1.HealthCheckRequest), global::Grpc.Health.V1.HealthCheckRequest.Parser, new[]{ "Service" }, null, null, null),
82 /// <summary>Field number for the "service" field.</summary>
86 public string Service {
106 if (Service != other.Service) return false;
113 if (Service.Length != 0) hash ^= Service.GetHashCode();
127 if (Service.Length != 0) {
129 output.WriteString(Service);
139 if (Service.Length != 0)
    [all...]
  /external/grpc-grpc/test/cpp/microbenchmarks/
fullstack_fixtures.h 76 FullstackFixture(Service* service, const FixtureConfiguration& config,
83 b.RegisterService(service);
127 TCP(Service* service, const FixtureConfiguration& fixture_configuration =
129 : FullstackFixture(service, fixture_configuration, MakeAddress(&port_)) {}
146 UDS(Service* service, const FixtureConfiguration& fixture_configuration =
148 : FullstackFixture(service, fixture_configuration, MakeAddress(&port_)) {}
166 InProcess(Service* service
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
service.cc 16 #include "tensorflow/compiler/xla/service/service.h"
29 #include "tensorflow/compiler/xla/service/compiler.h"
30 #include "tensorflow/compiler/xla/service/computation_layout.h"
31 #include "tensorflow/compiler/xla/service/computation_placer.h"
32 #include "tensorflow/compiler/xla/service/device_memory_allocator.h"
33 #include "tensorflow/compiler/xla/service/dump.h"
34 #include "tensorflow/compiler/xla/service/dynamic_dimension_inference.h"
35 #include "tensorflow/compiler/xla/service/executable.h"
36 #include "tensorflow/compiler/xla/service/hlo_computation.h
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpProto.c 644 HttpInstance->Service->ControllerHandle,
645 HttpInstance->Service->ImageHandle,
658 HttpInstance->Service->ImageHandle,
659 HttpInstance->Service->ControllerHandle,
671 HttpInstance->Service->ImageHandle,
680 HttpInstance->Service->Tcp4ChildHandle,
683 HttpInstance->Service->ImageHandle,
695 HttpInstance->Service->ControllerHandle,
696 HttpInstance->Service->ImageHandle,
709 HttpInstance->Service->ImageHandle,
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Dhcp6Dxe/
Dhcp6Io.c 839 DHCP6_SERVICE *Service;
841 Service = Instance->Service;
891 Service->UdpIo,
927 DHCP6_SERVICE *Service;
934 Service = Instance->Service;
935 ClientId = Service->ClientId;
938 ASSERT (Service->ClientId != NULL);
960 Packet->Dhcp6.Header.TransactionId = Service->Xid++;
    [all...]
  /developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ResponderService.java 21 import android.app.Service;
34 * A service that runs in the background and provides responses to the incoming messages from the
37 public class ResponderService extends Service {
59 Log.d(TAG, "Chat Service started");
74 return Service.START_STICKY;
87 return Service.START_STICKY;
142 Log.d(TAG, "Chat Service stopped");
  /developers/build/prebuilts/gradle/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
MyJobService.kt 19 import android.app.Service
30 * Service to handle callbacks from the JobScheduler. Requests scheduled with the JobScheduler
31 * ultimately land on this service's "onStartJob" method. It runs jobs for a specific amount of time
39 * When the app's MainActivity is created, it starts this service. This is so that the
40 * activity and this service can communicate back and forth. See "setUiCallback()"
44 return Service.START_NOT_STICKY
48 // The work that this service "does" is simply wait for a certain duration and finish
74 // If this service is launched by the JobScheduler, there's no callback Messenger. It
77 Log.d(TAG, "Service is bound, not started. There's no callback to send a message to.")
88 Log.e(TAG, "Error passing service object back to activity."
    [all...]
  /developers/samples/android/background/JobScheduler/kotlinApp/app/src/main/java/com/example/android/jobscheduler/
MyJobService.kt 19 import android.app.Service
30 * Service to handle callbacks from the JobScheduler. Requests scheduled with the JobScheduler
31 * ultimately land on this service's "onStartJob" method. It runs jobs for a specific amount of time
39 * When the app's MainActivity is created, it starts this service. This is so that the
40 * activity and this service can communicate back and forth. See "setUiCallback()"
44 return Service.START_NOT_STICKY
48 // The work that this service "does" is simply wait for a certain duration and finish
74 // If this service is launched by the JobScheduler, there's no callback Messenger. It
77 Log.d(TAG, "Service is bound, not started. There's no callback to send a message to.")
88 Log.e(TAG, "Error passing service object back to activity."
    [all...]
  /developers/samples/android/deprecated/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
ResponderService.java 21 import android.app.Service;
34 * A service that runs in the background and provides responses to the incoming messages from the
37 public class ResponderService extends Service {
59 Log.d(TAG, "Chat Service started");
74 return Service.START_STICKY;
87 return Service.START_STICKY;
142 Log.d(TAG, "Chat Service stopped");
  /development/samples/browseable/ElizaChat/src/com.example.android.wearable.elizachat/
ResponderService.java 21 import android.app.Service;
34 * A service that runs in the background and provides responses to the incoming messages from the
37 public class ResponderService extends Service {
59 Log.d(TAG, "Chat Service started");
74 return Service.START_STICKY;
87 return Service.START_STICKY;
142 Log.d(TAG, "Chat Service stopped");
  /external/flatbuffers/grpc/src/compiler/
java_generator.h 74 // Package name for the service
78 // Return the source of the generated service file.
80 const grpc_generator::Service* service,
  /external/grpc-grpc/examples/cpp/helloworld/
greeter_server.cc 40 class GreeterServiceImpl final : public Greeter::Service {
51 GreeterServiceImpl service; local
56 // Register "service" as the instance through which we'll communicate with
57 // clients. In this case it corresponds to an *synchronous* service.
58 builder.RegisterService(&service);
  /external/grpc-grpc/examples/ruby/errors_and_cancellation/
error_examples_server.rb 18 # Error-throwing implementation of Route Guide service.
33 # CanellingandErrorReturningServiceImpl provides an implementation of the RouteGuide service.
34 class CancellingAndErrorReturningServerImpl < RouteGuide::Service
  /external/grpc-grpc/src/cpp/server/channelz/
channelz_service.h 29 class ChannelzService final : public channelz::v1::Channelz::Service {
  /external/grpc-grpc/src/cpp/server/health/
default_health_check_service.h 34 // The service impl to register with the server.
35 class HealthCheckServiceImpl : public Service {
37 explicit HealthCheckServiceImpl(DefaultHealthCheckService* service);
  /external/grpc-grpc/src/ruby/end2end/
channel_closing_client.rb 21 class ChannelClosingClientController < ClientControl::ClientController::Service
  /external/grpc-grpc/test/cpp/util/
metrics_server.h 30 * test service can use this to export Metrics (TODO (sreek): Only Gauges for
71 class MetricsServiceImpl final : public MetricsService::Service {

Completed in 1389 milliseconds

1 2 3 4 5 67 8 91011>>