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

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/nfc/cardemulation/
OffHostApduService.java 21 import android.app.Service;
27 * <p>OffHostApduService is a convenience {@link Service} class that can be
44 * <h3>Service selection</h3>
63 * to some AIDs in the group going to another service).
82 * to determine if your off-host service is the default handler for a category.
90 * <h3>Service AID registration</h3>
92 * reside off-host and are managed by this service, a {@link #SERVICE_META_DATA}
93 * entry must be included in the declaration of the service. An
95 * <pre> &lt;service android:name=".MyOffHostApduService" android:exported="true" android:permission="android.permission.BIND_NFC_SERVICE"&gt;
100 * &lt;/service&gt;</pre
    [all...]
  /frameworks/base/packages/FusedLocation/src/com/android/location/fused/
FusedLocationService.java 19 import android.app.Service;
23 public class FusedLocationService extends Service {
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/tests/testauth/
TestSyncService.java 18 import android.app.Service;
22 public abstract class TestSyncService extends Service {
  /packages/services/Telecomm/src/com/android/server/telecom/components/
BluetoothPhoneService.java 21 import android.app.Service;
29 public final class BluetoothPhoneService extends Service implements TelecomSystem.Component {
  /system/connectivity/shill/cellular/
mock_out_of_credits_detector.h 31 CellularService* service);
37 void(Service::ConnectState old_state,
38 Service::ConnectState new_state));
subscription_state_out_of_credits_detector.h 30 CellularService* service);
36 Service::ConnectState old_state,
37 Service::ConnectState new_state) override {}
  /system/connectivity/shill/ethernet/
ethernet_eap_service.h 22 #include "shill/service.h"
28 // includes EAP credentials and Static IP configuration. This service in
31 class EthernetEapService : public Service {
39 // Inherited from Service.
45 Service::UpdateCredentialsReason reason) override;
  /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 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...]
  /system/connectivity/shill/supplicant/
supplicant_eap_state_handler.cc 33 Service::ConnectFailure* failure) {
44 *failure = Service::kFailureEAPLocalTLS;
47 *failure = Service::kFailureEAPRemoteTLS;
49 *failure = Service::kFailureEAPAuthentication;
70 *failure = Service::kFailurePinMissing;
74 *failure = Service::kFailureEAPAuthentication;
supplicant_eap_state_handler_unittest.cc 34 SupplicantEAPStateHandlerTest() : failure_(Service::kFailureUnknown) {}
49 Service::ConnectFailure failure_;
62 EXPECT_EQ(Service::kFailureUnknown, failure_);
74 EXPECT_EQ(Service::kFailureUnknown, failure_);
86 EXPECT_EQ(Service::kFailureUnknown, failure_);
100 EXPECT_EQ(Service::kFailureEAPAuthentication, failure_);
110 EXPECT_EQ(Service::kFailureUnknown, failure_);
117 EXPECT_EQ(Service::kFailureEAPLocalTLS, failure_);
127 EXPECT_EQ(Service::kFailureUnknown, failure_);
134 EXPECT_EQ(Service::kFailureEAPRemoteTLS, failure_)
    [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 {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/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 {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/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 {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/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 {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/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...]
  /prebuilts/tools/linux-x86_64/protoc/include/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 {
110 class Service;
123 // interface can be used to call the methods of the Service without knowing
125 class LIBPROTOBUF_EXPORT Service {
127 inline Service() {}
    [all...]
  /frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/core/
InstrumentationUiAutomatorBridge.java 19 import android.app.Service;
41 mContext.getSystemService(Service.WINDOW_SERVICE);
53 mContext.getSystemService(Service.POWER_SERVICE);
  /system/connectivity/shill/
virtual_device.h 26 #include "shill/service.h"
61 virtual void SelectService(const ServiceRefPtr& service);
62 void SetServiceState(Service::ConnectState state) override;
63 void SetServiceFailure(Service::ConnectFailure failure_state) override;
64 void SetServiceFailureSilent(Service::ConnectFailure failure_state) override;
  /system/update_engine/
weave_service.h 25 #include <libweaved/service.h>
51 void OnWeaveServiceConnected(const std::weak_ptr<weaved::Service>& service);
60 std::unique_ptr<weaved::Service::Subscription> weave_service_subscription_;
61 std::weak_ptr<weaved::Service> weave_service_;
  /system/connectivity/apmanager/
service.h 44 class Service : public base::RefCounted<Service> {
46 Service(Manager* manager, int service_identifier);
47 virtual ~Service();
81 // Handle asynchronous service start failures.
98 // Release resources allocated to this service.
119 base::WeakPtrFactory<Service> weak_factory_{this};
120 DISALLOW_COPY_AND_ASSIGN(Service);
  /cts/tests/app/app/src/android/app/stubs/
StubRemoteService.java 19 import android.app.Service;
24 public class StubRemoteService extends Service{
  /cts/tests/tests/content/src/android/content/cts/
MockService.java 19 import android.app.Service;
24 public class MockService extends Service {
35 * set the result as true when service bind
44 * set the result as true when service start

Completed in 774 milliseconds

1 23 4 5 6 7 8 91011>>