/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/ |
ReceiverService.java | 19 import android.app.Service; 28 * Service type receiver application 30 public class ReceiverService extends Service { 36 Log.d(LOG_TAG, "Receiver service created"); 46 Log.d(LOG_TAG, "Receiver service started");
|
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/ |
ProxyService.java | 18 import android.app.Service; 29 public class ProxyService extends Service {
|
/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/ |
Service.java | 27 * Base implementation of a service that communicates over a transport. 33 public abstract class Service implements Transport.Callback { 38 public Service(Context context, Transport transport, int serviceId) { 69 public void onMessageReceived(int service, int what, ByteBuffer content) {
|
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
SchedulerService.java | 21 import android.app.Service; 25 public class SchedulerService extends Service {
|
/packages/apps/Terminal/src/com/android/terminal/ |
TerminalService.java | 19 import android.app.Service; 26 * Background service that keeps {@link Terminal} instances running and warm 29 public class TerminalService extends Service { 48 // If our first terminal, start ourselves as long-lived service 64 // If our last terminal, tear down long-lived service
|
/packages/services/Telephony/src/com/android/phone/ |
HfaService.java | 20 import android.app.Service; 26 * Service for performing HfaActivation without any UI. 28 public class HfaService extends Service { 35 Log.i(TAG, "service started"); 53 // We do not respond from this service. On success or failure
|
TelephonyDebugService.java | 21 import android.app.Service; 30 * A debug service for telephony. 32 public class TelephonyDebugService extends Service {
|
/system/connectivity/apmanager/ |
control_interface.h | 35 class Service; 54 Service* service) = 0;
|
manager.cc | 51 scoped_refptr<Service> Manager::CreateService() { 53 scoped_refptr<Service> service = new Service(this, service_identifier_++); local 54 services_.push_back(service); 55 return service; 58 bool Manager::RemoveService(const scoped_refptr<Service>& service, 61 if (*it == service) { 69 "Service does not exist" [all...] |
manager.h | 28 #include "apmanager/service.h" 43 // Create and return a new Service instance. The newly created instance 44 // will be added to the service list, it will only get deleted via 46 scoped_refptr<Service> CreateService(); 48 // Remove |service| from the service list. Return true if service is found 51 bool RemoveService(const scoped_refptr<Service>& service, Error* error); 95 // Manager for communicating with remote firewall service [all...] |
/system/connectivity/shill/cellular/ |
out_of_credits_detector.h | 24 #include "shill/service.h" 40 CellularService* service); 64 CellularService* service); 70 // Notifies this object of a service state change. 71 virtual void NotifyServiceStateChanged(Service::ConnectState old_state, 72 Service::ConnectState new_state) = 0; 82 // Sets the out-of-credits state for this object and also tells the service 90 CellularService* service() const { return service_; } function in class:shill::OutOfCreditsDetector
|
/cts/tests/app/app/src/android/app/stubs/ |
LocalForegroundService.java | 20 import android.app.Service; 69 stopForeground(Service.STOP_FOREGROUND_REMOVE | Service.STOP_FOREGROUND_DETACH); 72 Log.d(TAG, "Detaching foreground service notification"); 73 stopForeground(Service.STOP_FOREGROUND_DETACH);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
Provider2Test.java | 131 // Regression Test for Provider.Service.getAlias(), which is an package 137 Provider.Service service = new Provider.Service(mockProvider, local 139 mockProvider.putService(service); 160 public void putService(Provider.Service service) { 161 super.putService(service); 164 public void removeService(Provider.Service service) { [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
FacadeManager.java | 19 import android.app.Service; 35 private final Service mService; 39 public FacadeManager(int sdkLevel, Service service, Intent intent, 43 mService = service; 51 public Service getService() {
|
FacadeManagerFactory.java | 19 import android.app.Service; 33 private final Service mService; 38 public FacadeManagerFactory(int sdkLevel, Service service, Intent intent, 41 mService = service;
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
Provider2Test.java | 131 // Regression Test for Provider.Service.getAlias(), which is an package 137 Provider.Service service = new Provider.Service(mockProvider, local 139 mockProvider.putService(service); 162 public void putService(Provider.Service service) { 163 super.putService(service); 166 public void removeService(Provider.Service service) { [all...] |
/system/connectivity/shill/binder/ |
service_binder_adaptor.h | 44 class Service; 46 // Subclass of DBusAdaptor for Service objects 47 // There is a 1:1 mapping between Service and ServiceBinderAdaptor 48 // instances. Furthermore, the Service owns the ServiceBinderAdaptor 50 // having a bare pointer to its owner service. 56 ServiceBinderAdaptor(Service* service, const std::string& id); 85 Service* service() const { return service_; } function in class:shill::ServiceBinderAdaptor 88 Service* service_ [all...] |
/system/connectivity/shill/ethernet/ |
ethernet_temporary_service.cc | 36 : Service(control_interface,
|
ethernet_temporary_service.h | 22 #include "shill/service.h" 31 // This is only use for loading non-active Ethernet service entries from the 33 class EthernetTemporaryService : public Service { 42 // Inherited from Service.
|
/system/core/init/ |
init.h | 23 class Service;
|
/external/apache-harmony/security/src/test/api/java.injected/java/security/ |
ProviderTest.java | 87 Provider.Service s = new Provider.Service(p, "Type", "Algorithm", 95 Provider.Service s1 = p.getService("MessageDigest", "AbC"); 100 s = new Provider.Service(p, "MessageDigest", "SHA-1", 113 Provider.Service s = new Provider.Service(p, "Type", "Algorithm", 128 s = (Provider.Service) it.next(); 144 fail("Incorrect service"); 152 Provider.Service s = new Provider.Service(p, "Type", "Algorithm" [all...] |
/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/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowService.java | 5 import android.app.Service; 16 @Implements(Service.class) 18 @RealObject Service realService; 76 ((ShadowApplication) shadowOf(getApplicationContext())).assertNoBroadcastListenersRegistered(realService, "Service");
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
StopwatchService.java | 19 import android.app.Service; 29 * This service exists solely to allow the stopwatch notification to alter the state of the 35 public final class StopwatchService extends Service { 68 return Service.START_NOT_STICKY;
|
/system/connectivity/apmanager/dbus/ |
manager_dbus_adaptor.h | 31 class Service; 55 // Context for service owner watcher. 58 ServiceOwnerWatcherContext(const scoped_refptr<Service>& in_service, 60 : service(in_service), 62 scoped_refptr<Service> service; member in struct:apmanager::ManagerDBusAdaptor::ServiceOwnerWatcherContext 66 // Invoked when the owner of a Service vanished. 73 // Map of service path to owner monitor context.
|