/external/r8/src/test/examples/multidexfakeframeworks/ |
Service.java | 7 public class Service {
|
/external/r8/src/test/examplesAndroidO/multidex004/fakeframeworks/ |
Service.java | 7 public class Service {
|
/system/bt/service/common/bluetooth/ |
service.cc | 17 #include <bluetooth/service.h> 20 Service::Service(const Service& other) { 28 Service& Service::operator=(const Service& other) { 39 bool Service::Equals(const Service& other) const { 45 bool Service::operator==(const Service& rhs) const { return Equals(rhs); [all...] |
service.h | 25 class Service { 27 Service() = default; 28 Service(const Service& other); 29 Service(uint16_t handle, bool primary, const UUID& uuid, 31 const std::vector<Service>& included_services) 37 Service& operator=(const Service& other); 38 virtual ~Service() = default; 41 bool Equals(const Service& other) const [all...] |
/external/protobuf/src/google/protobuf/ |
service.cc | 35 #include <google/protobuf/service.h> 40 Service::~Service() {}
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
service_registry.hpp | 20 template <typename Service, typename Arg> 22 asio::io_service& o, Service*, Arg arg) 24 first_service_(new Service(o, arg)) 26 asio::io_service::service::key key; 27 init_key(key, Service::id); 32 template <typename Service> 33 Service& service_registry::first_service() 35 return *static_cast<Service*>(first_service_); 38 template <typename Service> 39 Service& service_registry::use_service( [all...] |
/external/apache-harmony/support/src/test/java/tests/resources/ServiceLoader/ |
Service.java | 23 public interface Service {
|
/external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/ |
Service.java | 3 public interface Service {
|
ServiceImpl.java | 3 public class ServiceImpl implements Service {
|
/libcore/support/src/test/java/tests/resources/ServiceLoader/ |
Service.java | 23 public interface Service {
|
/system/core/init/ |
keychords.h | 20 #include "service.h" 25 void add_service_keycodes(Service* svc);
|
/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...] |
/external/guice/extensions/service/src/com/google/inject/service/ |
CompositeService.java | 16 package com.google.inject.service; 34 * A service that composes other services together in a fixed order. 41 private final Set<Key<? extends Service>> services = Sets.newLinkedHashSet(); 44 * Represents the state of this composite service. Will equal FAILED 45 * even if only one component service fails to start or stop. In other 47 * service to be considered started and similarly for stopped. 49 private volatile Service.State compositeState; 57 public CompositeService add(Class<? extends Service> service) { 58 return add(Key.get(service)); [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
ProviderServiceTest.java | 28 import java.security.Provider.Service; 39 * Tests for <code>Provider.Service</code> constructor and methods 47 new Provider.Service(null, "type", "algorithm", "className", null, 53 new Provider.Service(p, null, "algorithm", "className", null, null); 58 new Provider.Service(p, "type", null, "className", null, null); 63 new Provider.Service(p, "type", "algorithm", null, null, null); 68 Provider.Service s = new Provider.Service(p, "type", "algorithm", 90 Provider.Service s = new Provider.Service(p, "type", "algorithm" [all...] |
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
service_registry.hpp | 33 // Constructor. Adds the initial service. 34 template <typename Service, typename Arg> 36 Service* initial_service, Arg arg); 44 // Get the first service object cast to the specified type. Called during 46 template <typename Service> 47 Service& first_service(); 49 // Get the service object corresponding to the specified service type. Will 50 // create a new service object automatically if no such object already 51 // exists. Ownership of the service object is not transferred to the caller [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
DozeSuspendScreenStatePreventingAdapter.java | 27 public class DozeSuspendScreenStatePreventingAdapter extends DozeMachine.Service.Delegate { 30 DozeSuspendScreenStatePreventingAdapter(DozeMachine.Service inner) { 46 public static DozeMachine.Service wrapIfNeeded(DozeMachine.Service inner,
|
/system/bt/service/common/android/bluetooth/ |
bluetooth_gatt_service.h | 20 #include "bluetooth/service.h" 32 class BluetoothGattService : public Parcelable, public ::bluetooth::Service { 35 BluetoothGattService(const ::bluetooth::Service& service) 36 : ::bluetooth::Service(service){}; // NOLINT(implicit) 39 : ::bluetooth::Service(includedService.handle(),
|
/cts/hostsidetests/content/test-apps/CtsSyncAccountAccessSameCertTests/src/com/android/cts/content/ |
SyncService.java | 19 import android.app.Service; 23 public class SyncService extends Service {
|
/cts/hostsidetests/devicepolicy/app/AccountManagement/src/com/android/cts/devicepolicy/accountmanagement/ |
MockAccountService.java | 19 import android.app.Service; 24 * Service for wrapping the {@link MockAccountAuthenticator} 26 public class MockAccountService extends Service {
|
/cts/hostsidetests/devicepolicy/app/CorpOwnedManagedProfile/src/com/android/cts/comp/ |
UnprotectedCrossUserService.java | 19 import android.app.Service; 24 * Dummy service that is exported. 26 public class UnprotectedCrossUserService extends Service {
|
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/ |
AccountService.java | 19 import android.app.Service; 23 public class AccountService extends Service {
|
/cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/ |
BatteryStatsSyncService.java | 18 import android.app.Service; 23 * Service for the sync test. 25 public class BatteryStatsSyncService extends Service {
|
/cts/tests/tests/accounts/src/android/accounts/cts/ |
MockAccountService.java | 19 import android.app.Service; 24 * a basic Mock Service for wrapping the MockAccountAuthenticator 26 public class MockAccountService extends Service {
|
MockCustomTokenAccountService.java | 3 import android.app.Service; 7 public class MockCustomTokenAccountService extends Service {
|