HomeSort by relevance Sort by last modified time
    Searched refs:Service (Results 101 - 125 of 1033) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/sdk/tools/windows/lib/
shrinkedAndroid.jar 
  /system/core/init/
service.cpp 17 #include "service.h"
96 "service correctly? https://source.android.com/security/selinux/"
105 Result<Success> Service::SetUpMountNamespace() const {
110 // prevent any other mounts/unmounts initiated by the service from interfering
140 Result<Success> Service::SetUpPidNamespace() const {
173 Result<Success> Service::EnterNamespaces() const {
203 unsigned long Service::next_start_order_ = 1;
204 bool Service::is_exec_service_running_ = false;
206 Service::Service(const std::string& name, Subcontext* subcontext_for_restart_commands
    [all...]
  /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/lib/accountaccess/src/com.android.cts.content/
AlwaysSyncableSyncService.java 18 import android.app.Service;
23 public class AlwaysSyncableSyncService extends Service {
NotAlwaysSyncableSyncService.java 18 import android.app.Service;
23 public class NotAlwaysSyncableSyncService 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
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncService.java 19 import android.app.Service;
24 /** Service to handle sync requests.
26 * <p>This service is invoked in response to Intents with action android.content.SyncAdapter, and
35 public class SyncService extends Service {
47 Log.i(TAG, "Service created");
61 Log.i(TAG, "Service destroyed");
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
SyncService.java 19 import android.app.Service;
24 /** Service to handle sync requests.
26 * <p>This service is invoked in response to Intents with action android.content.SyncAdapter, and
35 public class SyncService extends Service {
47 Log.i(TAG, "Service created");
61 Log.i(TAG, "Service destroyed");
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
SyncService.java 19 import android.app.Service;
24 /** Service to handle sync requests.
26 * <p>This service is invoked in response to Intents with action android.content.SyncAdapter, and
35 public class SyncService extends Service {
47 Log.i(TAG, "Service created");
61 Log.i(TAG, "Service destroyed");
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Count.java 25 final Service service; field in class:Count
29 public Count(Counter counter, Service service) {
31 this.service = service;
43 return service.getStatus();
  /external/perfetto/src/tracing/ipc/service/
service_ipc_host_impl.h 30 // The implementation of the IPC host for the tracing service. This class does
32 // implementation of the IPC <> Service business logic glue lives in
45 Service* service_for_testing() const;
52 std::unique_ptr<Service> svc_; // The service business logic.
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcher.java 3 import android.app.Service;
25 public StartedServiceMatcher(String packageName, Class<? extends Service> expectedServiceClass) {
29 public StartedServiceMatcher(Class<? extends Service> expectedServiceClass) {
33 public StartedServiceMatcher(Class<? extends Service> expectedServiceClass, String expectedAction) {
65 // Test only that we are sending intent to the right service class
87 public static Intent createIntent(Class<? extends Service> serviceClass, String extraKey, String extraValue) {
93 public static Intent createIntent(Class<? extends Service> serviceClass, String action) {
99 public static Intent createIntent(Class<? extends Service> serviceClass) {
101 String packageName = "android.service";
109 public static Intent createIntent(String packageName, Class<? extends Service> serviceClass)
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TestService.java 3 import android.app.Service;
9 class TestService extends Service implements ServiceConnection {
11 IBinder service; field in class:TestService
20 public void onServiceConnected(ComponentName name, IBinder service) {
22 this.service = service;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
TestService.java 3 import android.app.Service;
9 class TestService extends Service implements ServiceConnection {
11 IBinder service; field in class:TestService
20 public void onServiceConnected(ComponentName name, IBinder service) {
22 this.service = service;
  /frameworks/base/apct-tests/perftests/core/src/android/os/
SomeService.java 3 import android.app.Service;
8 /** Service in separate process available for calling over binder. */
9 public class SomeService extends Service {
  /frameworks/base/core/java/com/android/internal/backup/
LocalTransportService.java 19 import android.app.Service;
23 public class LocalTransportService extends Service {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsSystemUserService.java 19 import android.app.Service;
27 * A strictly system-user service that is started by the secondary user's Recents (with a limited
31 public class RecentsSystemUserService extends Service {
  /frameworks/base/tests/ActivityManagerPerfTests/test-app/src/com/android/frameworks/perftests/amteststestapp/
StartProcessService.java 19 import android.app.Service;
29 * Service used to start up the target package and make sure it's running.
32 public class StartProcessService extends Service {
TestService.java 19 import android.app.Service;
27 public class TestService extends Service {
  /frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
IsolatedService.java 19 import android.app.Service;
25 public class IsolatedService extends Service {
31 Log.i("IsolatedService", "Service created in pid " + android.os.Process.myPid());
42 Log.i("IsolatedService", "Service destroyed in pid " + android.os.Process.myPid());
ServiceUserTarget.java 19 import android.app.Service;
26 public class ServiceUserTarget extends Service {
33 "Service created as user " + UserHandle.myUserId(),
SingleUserService.java 19 import android.app.Service;
26 public class SingleUserService extends Service {
33 "Service created as user " + UserHandle.myUserId(),
  /frameworks/base/tests/AmSlam/src/test/amslam/
PingReceiver.java 19 import android.app.Service;
25 public class PingReceiver extends Service {
  /frameworks/base/tests/utils/SleepUtils/AlarmService/src/com/android/testing/alarmservice/
AlarmService.java 19 import android.app.Service;
24 public class AlarmService extends Service {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
BatchService.java 19 import android.app.Service;
26 public class BatchService extends Service {

Completed in 499 milliseconds

1 2 3 45 6 7 8 91011>>