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

1 2 3 4 5 6 7 8 91011>>

  /system/connectivity/shill/
service_under_test.cc 32 const char ServiceUnderTest::kStorageId[] = "service";
38 : Service(control_interface, dispatcher, metrics, manager,
service_under_test.h 24 #include "shill/service.h"
34 // This is a simple Service subclass with all the pure-virtual methods stubbed.
35 class ServiceUnderTest : public Service {
63 // The Service superclass has no string array or KeyValueStore properties
64 // but we need them in order to test Service::Configure.
  /system/connectivity/shill/vpn/
l2tp_ipsec_driver.h 32 #include "shill/service.h"
56 // Method to return service RPC identifier.
63 void Connect(const VPNServiceRefPtr& service, Error* error) override;
102 // Resets the VPN state and deallocates all resources. If there's a service
103 // associated through Connect, sets its state to Service::kStateIdle and
104 // disassociates from the service.
107 // Resets the VPN state and deallocates all resources. If there's a service
108 // associated through Connect, sets its state to Service::kStateFailure with
109 // failure reason |failure| and disassociates from the service.
110 void FailService(Service::ConnectFailure failure)
    [all...]
openvpn_management_server.cc 205 driver_->FailService(Service::kFailureInternal, Service::kErrorDetailsNone);
251 driver_->FailService(Service::kFailureInternal, Service::kErrorDetailsNone);
298 driver_->FailService(Service::kFailureInternal, Service::kErrorDetailsNone);
328 driver_->FailService(Service::kFailureInternal, Service::kErrorDetailsNone);
340 driver_->FailService(Service::kFailureInternal, Service::kErrorDetailsNone)
    [all...]
  /system/update_engine/include/
update_includes.sh 36 # |xml| service files.
77 "${SHILL_DIR}"/dbus_bindings/org.chromium.flimflam.{Manager,Service}.dbus-xml
  /bionic/libc/tools/
genserv.py 10 this program is used to generate the hard-coded internet service list for the
17 class Service:
42 result = [] # list of Service objects
55 service = Service( m.group(1), int(m.group(2)), m.group(3) )
62 service.add_alias(m.group(1))
65 result.append(service)
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
ReceiveUriService.java 19 import android.app.Service;
29 public class ReceiveUriService extends Service {
  /cts/tests/app/app/src/android/app/stubs/
LocalService.java 19 import android.app.Service;
27 public class LocalService extends Service {
MockService.java 19 import android.app.Service;
26 public class MockService extends Service {
44 * set the result as true when service bind
57 * set the result as true when service start
  /cts/tests/tests/os/src/android/os/cts/
LocalService.java 19 import android.app.Service;
27 public class LocalService extends Service {
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
DummyAccountService.java 23 import android.app.Service;
31 * Dummy account service for SyncAdapter. Note that this does nothing because this input uses a feed
34 public class DummyAccountService extends Service {
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/accounts/
GenericAccountService.java 23 import android.app.Service;
30 public class GenericAccountService extends Service {
61 Log.i(TAG, "Service created");
67 Log.i(TAG, "Service destroyed");
  /developers/samples/android/common/src/java/com/example/android/common/accounts/
GenericAccountService.java 23 import android.app.Service;
30 public class GenericAccountService extends Service {
61 Log.i(TAG, "Service created");
67 Log.i(TAG, "Service destroyed");
  /development/apps/BuildWidget/src/com/android/buildwidget/
BuildWidget.java 20 import android.app.Service;
39 * an update we spawn a background {@link Service} to perform the API queries.
45 // To prevent any ANR timeouts, we perform the update in a service
49 public static class UpdateService extends Service {
83 // We don't need to bind to this service
  /development/samples/Alarm/src/com/example/android/newalarm/
AlarmService.java 22 import android.app.Service;
32 * This class implements a service. The service is started by AlarmActivity, which contains a
37 * When this service is started, it creates a Runnable and starts it in a new Thread. The
38 * Runnable does a synchronized lock on the service's Binder object for 15 seconds, then issues
40 * shuts down the entire service. The activity restarts the service after 15 more seconds, when the
44 * This service is provided as the service under test for the sample test application
49 * onStartCommand. See the Javadoc for android.app.Service for more details
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
AlarmService_Service.java 26 import android.app.Service;
35 * This is an example of implementing an application service that will run in
42 public class AlarmService_Service extends Service {
52 // Start up the thread running the service. Note that we create a
53 // separate thread because the service normally runs in the process's
85 // Done with our work... stop the service!
96 * Show a notification while this service is running.
LocalService.java 22 import android.app.Service;
35 * This is an example of implementing an application service that runs locally
38 * service.
41 * happen in the service. This is generally how background services should
45 //BEGIN_INCLUDE(service)
46 public class LocalService extends Service {
54 * Class for clients to access. Because we know this service always
97 * Show a notification while this service is running.
121 //END_INCLUDE(service)
NotifyingService.java 26 import android.app.Service;
35 * This is an example of service that will update its status bar balloon
39 public class NotifyingService extends Service {
51 // Start up the thread running the service. Note that we create a
52 // separate thread because the service normally runs in the process's
83 // Done with our work... stop the service!
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/accounts/
GenericAccountService.java 23 import android.app.Service;
30 public class GenericAccountService extends Service {
61 Log.i(TAG, "Service created");
67 Log.i(TAG, "Service destroyed");
  /external/deqp/android/package/src/com/drawelements/deqp/execserver/
ExecService.java 21 * \brief ExecServer service.
26 import android.app.Service;
38 public class ExecService extends Service {
85 // Start as foreground service.
  /external/droiddriver/src/io/appium/droiddriver/base/
BaseUiDevice.java 19 import android.app.Service;
50 .getSystemService(Service.POWER_SERVICE);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ServiceTest.java 11 import android.app.Service;
27 MyService service = new MyService(); local
28 service.registerReceiver(new AppWidgetProvider(), new IntentFilter());
29 service.onDestroy();
34 MyService service = new MyService(); local
39 service.onDestroy(); // should not throw exception
44 MyService service = new MyService(); local
46 service.unbindService(conn);
51 MyService service = new MyService(); local
52 shadowOf(service).setUnbindServiceShouldThrowIllegalArgument(true)
60 MyService service = new MyService(); local
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
MediaScannerFacade.java 19 import android.app.Service;
41 private final Service mService;
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
SubscriptionManagerFacade.java 19 import android.app.Service;
36 private final Service mService;
  /frameworks/base/core/java/android/inputmethodservice/
AbstractInputMethodService.java 19 import android.app.Service;
37 * <p>This class combines a Service (representing the input method component
40 * the service when clients bind to it, but provides no standard implementation
44 public abstract class AbstractInputMethodService extends Service
132 * callbacks on the service, and tell the client when this is done.
145 * callbacks on the service, and tell the client when this is done.
157 * callbacks on the service, and tell the client when this is done.
180 * interface for this service needs to be created.

Completed in 1314 milliseconds

1 2 3 4 5 6 7 8 91011>>