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

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/os/src/android/os/cts/
MessengerService.java 20 import android.app.Service;
28 public class MessengerService extends Service {
SharedMemoryService.java 19 import android.app.Service;
28 public class SharedMemoryService extends Service {
  /cts/tests/tests/security/src/android/security/cts/activity/
SecureRandomService.java 24 import android.app.Service;
29 public class SecureRandomService extends Service {
  /cts/tests/tests/telecom/ThirdPtyInCallServiceTestApp/src/android/telecom/cts/thirdptyincallservice/
CtsThirdPartyInCallServiceControl.java 19 import android.app.Service;
24 public class CtsThirdPartyInCallServiceControl extends Service {
  /cts/tools/release-parser/src/com/android/cts/releaseparser/
RcParser.java 36 private static String SECTION_SERVICE = "service";
40 private List<Service> mServices;
67 for (Service service : mServices) {
69 String file = service.getFile().substring(1);
87 public List<Service> getServiceList() {
98 public static String toString(List<Service> services) {
100 for (Service service : services) {
104 service.getName()
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 19 import android.app.Service;
25 * Service to handle Account authentication. It instantiates the authenticator
28 public class AuthenticationService extends Service {
37 Log.v(TAG, "SampleSyncAdapter Authentication Service started.");
45 Log.v(TAG, "SampleSyncAdapter Authentication Service stopped.");
  /external/perfetto/test/cts/producer/src/android/perfetto/producer/
ProducerIsolatedService.java 20 import android.app.Service;
24 public class ProducerIsolatedService extends Service {
30 builder.setContentTitle("Perfetto isolated service")
31 .setContentText("Perfetto isolated service")
ProducerService.java 20 import android.app.Service;
24 public class ProducerService extends Service {
29 Notification.Builder builder = new Notification.Builder(this, "service");
30 builder.setContentTitle("Perfetto service")
31 .setContentText("Perfetto service")
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
FacadeService.java 17 package com.googlecode.android_scripting.service;
19 import android.app.Service;
30 * FacadeService exposes SL4A's Facade methods through a {@link Service} so
37 * intent.setAction("com.googlecode.android_scripting.service.FacadeService.ACTION_BIND");
40 * Example using the service:<br>
51 * For more info on binding a {@link Service} using a {@link Messenger} please
54 public class FacadeService extends Service {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Dxe/
Pcd.inf 312 Service.c
313 Service.h
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Pei/
Pcd.inf 2 # PCD PEIM produces PCD database to manage all dynamic PCD in PEI phase and install Pcd Ppi service.
310 Service.c
311 Service.h
  /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/grpc-grpc/examples/ruby/without_protobuf/
echo_server.rb 17 # Sample gRPC server that implements the EchoWithoutProtobuf service.
28 class EchoServer < EchoWithoutProtobuf::Service
  /external/grpc-grpc/src/ruby/spec/pb/codegen/
package_option_spec.rb 31 # Generate the service from the proto
36 "--grpc_out=#{tmp_dir}", # generate the service
45 expect { Grpc::Testing::Package::Options::TestService::Service }.to raise_error(NameError)
47 expect { Grpc::Testing::Package::Options::TestService::Service }.to_not raise_error
  /cts/tests/tests/shortcutmanager/throttling/src/android/content/pm/cts/shortcutmanager/throttling/
BgService.java 20 import android.app.Service;
31 * Make sure that when only a bg service is running, shortcut manager calls are throttled.
33 public class BgService extends Service {
57 return Service.START_NOT_STICKY;
FgService.java 21 import android.app.Service;
31 * Make sure that when a fg service is running, shortcut manager calls are not throttled.
33 public class FgService extends Service {
71 return Service.START_NOT_STICKY;
  /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/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowService.java 5 import android.app.Service;
13 @Implements(Service.class)
15 @RealObject Service realService;
82 * @return Is this service stopped by self.
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
FacadeManagerFactory.java 19 import android.app.Service;
33 private final Service mService;
38 public FacadeManagerFactory(int sdkLevel, Service service, Intent intent,
41 mService = service;
  /external/ppp/pppd/plugins/radius/etc/
dictionary 51 ATTRIBUTE Service-Type 6 integer
60 ATTRIBUTE Login-Service 15 integer
135 VALUE Service-Type Login-User 1
136 VALUE Service-Type Framed-User 2
137 VALUE Service-Type Callback-Login-User 3
138 VALUE Service-Type Callback-Framed-User 4
139 VALUE Service-Type Outbound-User 5
140 VALUE Service-Type Administrative-User 6
141 VALUE Service-Type NAS-Prompt-User 7
162 VALUE Login-Service Telnet
    [all...]
  /external/grpc-grpc/include/grpcpp/
server_builder.h 45 class Service;
62 /// 1. a service is registered - so that the server knows what to serve
70 /// Register a service. This call does not take ownership of the service.
71 /// The service must exist for the lifetime of the \a Server instance returned
74 ServerBuilder& RegisterService(Service* service);
131 /// Register a service. This call does not take ownership of the service.
132 /// The service must exist for the lifetime of the \a Server instance returne
230 Service* service; member in struct:grpc::ServerBuilder::NamedService
    [all...]
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
AudioTestService.java 22 import android.app.Service;
32 * This is the Service being created during the first onStart() in the activity.
33 * Threads that are needed for the test will be created under this Service.
34 * At the end of the test, this Service will pass the test results back to LoopbackActivity.
37 public class AudioTestService extends Service {
48 log("Audio Test Service created!");
54 log("Service onStartCommand: " + startId);
56 return Service.START_NOT_STICKY;
61 * This method will run the Service as Foreground Service, so the Service won't be kille
    [all...]
  /external/flatbuffers/grpc/src/compiler/
schema_interface.h 88 // An abstract interface representing a service.
89 struct Service : public CommentHolder {
90 virtual ~Service() {}
120 virtual std::unique_ptr<const Service> service(int i) const = 0;
  /external/grpc-grpc/src/compiler/
schema_interface.h 73 // An abstract interface representing a service.
74 struct Service : public CommentHolder {
75 virtual ~Service() {}
106 virtual std::unique_ptr<const Service> service(int i) const = 0;
  /external/perfetto/src/ipc/
host_impl.h 44 bool ExposeService(std::unique_ptr<Service>) override;
64 ExposedService(ServiceID, const std::string&, std::unique_ptr<Service>);
71 std::unique_ptr<Service> instance;

Completed in 662 milliseconds

1 2 3 45 6 7 8 91011>>