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

1 2 3 4 5 6 78 91011>>

  /system/connectivity/shill/vpn/
vpn_service.cc 58 : Service(control, dispatcher, metrics, manager, Technology::kVPN),
77 StringPrintf("VPN service %s already connected.",
83 StringPrintf("VPN service %s already connecting.",
88 Service::Connect(error, reason);
93 SLOG(this, 1) << "Disconnect from service " << unique_name();
94 Service::Disconnect(error, reason);
118 replace_if(id.begin(), id.end(), &Service::IllegalChar, '_');
128 return Service::Load(storage) &&
133 return Service::Save(storage) &&
138 // The base method also disconnects the service
    [all...]
  /system/connectivity/shill/
service.h 71 // A Service is a uniquely named entity, which the system can
74 // state of the Service. If the Entry is populated at the time of Service
75 // creation, that information is used to prime the Service. If not, the Entry
77 class Service : public base::RefCounted<Service> {
155 // A constructor for the Service object
156 Service(ControlInterface* control_interface,
164 // concurrent connection, and another Service is already connected
175 // Disconnect this service. Override this method to add your service specifi
    [all...]
  /cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/
MyService.java 23 import android.app.Service;
31 * Service used to dynamically register a broadcast receiver.
33 public class MyService extends Service {
RemoteSocketFactoryService.java 19 import android.app.Service;
32 public class RemoteSocketFactoryService extends Service {
  /cts/tests/accessibility/src/android/view/accessibility/cts/
AccessibilityServiceInfoTest.java 20 import android.app.Service;
29 * Tests whether accessibility service infos are properly reported. Logically,
32 * accessibility service and the fake service used for implementing the UI
48 * Tests whether a service can that requested it can retrieve
55 getInstrumentation().getContext().getSystemService(Service.ACCESSIBILITY_SERVICE);
59 assertSame("There should be one speaking service.", 1, enabledServices.size());
  /cts/tests/tests/content/src/android/content/cts/
MockContextWrapperService.java 19 import android.app.Service;
32 public class MockContextWrapperService extends Service {
  /cts/tests/tests/externalservice/service/src/android/externalservice/service/
BaseService.java 17 package android.externalservice.service;
19 import android.app.Service;
32 public class BaseService extends Service {
33 private static final String TAG = "ExternalServiceTest.Service";
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
SecureWebServerService.java 21 import android.app.Service;
26 public class SecureWebServerService extends Service {
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/
ServicesTest.java 41 Provider.Service serv = Services.getService("Service.ALGORITHM");
43 fail("Service is null");
47 fail("Incorrect Service");
50 serv = Services.getService("Service.ALGORITHM");
60 Provider.Service serv = Services.getService("Service.ALGORITHM");
62 serv = Services.getService("Service.ALGORITHM");
64 fail("Service removed");
69 serv = Services.getService("Service.ALGORITHM")
    [all...]
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
Provider_ImplTest.java 55 Provider.Service s = new Provider.Service(p, "Type", "Algorithm",
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
AudioManagerFacade.java 19 import android.app.Service;
31 private final Service mService;
  /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.
39 * Marks the service as a foreground service. This uses reflection to figure out whether the new
40 * APIs for marking a service as a foreground service are available. If not, it falls back to the
43 * @param service
44 * the service to put in foreground mode
50 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 {
  /frameworks/base/core/java/android/service/chooser/
ChooserTargetService.java 18 package android.service.chooser;
21 import android.app.Service;
32 * A service that receives calls from the system when the user is asked to choose
43 * <p>To extend this class, you must declare the service in your manifest file with
47 * &lt;service android:name=".MyChooserTargetService"
51 * &lt;action android:name="android.service.chooser.ChooserTargetService" />
53 * &lt;/service>
56 * <p>For the system to query your service, you must add a &lt;meta-data> element to the
63 * <code>android.service.chooser.chooser_target_service</code> and a value corresponding to
64 * the component name of your service. Example:</p
    [all...]
  /frameworks/base/core/java/android/service/vr/
VrListenerService.java 17 package android.service.vr;
22 import android.app.Service;
32 * A service that is bound from the system while running in virtual reality (VR) mode.
34 * <p>To extend this class, you must declare the service in your manifest file with
38 * &lt;service android:name=".VrListener"
42 * &lt;action android:name="android.service.vr.VrListenerService" />
44 * &lt;/service>
47 * <p>This service is bound when the system enters VR mode and is unbound when the system leaves VR
51 * service if the VR application has specifically targeted this service by specifyin
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
AsyncService.java 19 import android.app.Service;
28 * A service that receives Intents and IBinder transactions
35 abstract public class AsyncService extends Service {
58 * For instance @see android.app.Service#START_STICKY
66 * Create the service's handler returning AsyncServiceInfo.
108 * Called when service is destroyed. After returning the
109 * service is dead and no more processing should be expected
  /frameworks/base/core/tests/utiltests/src/android/util/
RemoteMemoryIntArrayService.java 19 import android.app.Service;
26 * Service to interact with a {@link MemoryIntArray} in another process.
28 public class RemoteMemoryIntArrayService extends Service {
  /frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
BluetoothMidiService.java 19 import android.app.Service;
29 public class BluetoothMidiService extends Service {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SystemUISecondaryUserService.java 19 import android.app.Service;
26 public class SystemUISecondaryUserService extends Service {
45 pw.println("dumping service: " + ui.getClass().getName());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
TakeScreenshotService.java 19 import android.app.Service;
28 public class TakeScreenshotService extends Service {
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
DataVerify.java 19 import android.app.Service;
30 public class DataVerify extends Service {
  /frameworks/base/telecomm/java/android/telecom/
AuthenticatorService.java 22 import android.app.Service;
29 * A generic stub account authenticator service often used for sync adapters that do not directly
34 public class AuthenticatorService extends Service {
  /frameworks/multidex/library/jack-meta/
legacyMultidexInstallation.jpp 26 | class android.app.Service
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
HapticFeedbackController.java 3 import android.app.Service;
44 mVibrator = (Vibrator) mContext.getSystemService(Service.VIBRATOR_SERVICE);

Completed in 439 milliseconds

1 2 3 4 5 6 78 91011>>