/packages/apps/Settings/src/com/android/settings/applications/ |
D | ProcStatsEntry.java | 57 ArrayMap<String, ArrayList<Service>> mServices = new ArrayMap<>(1); 111 ArrayList<Service> value = new ArrayList<Service>(); in ProcStatsEntry() 112 in.readTypedList(value, Service.CREATOR); in ProcStatsEntry() 222 ArrayList<Service> subProcServices = null; in evaluateTargetPackage() 224 ArrayList<Service> subServices = mServices.valueAt(isp); in evaluateTargetPackage() 233 Service service = subProcServices.get(iss); in evaluateTargetPackage() 264 ArrayList<Service> services = mServices.get(svc.getPackage()); in addService() 266 services = new ArrayList<Service>(); in addService() 269 services.add(new Service(svc)); in addService() 315 public static final class Service implements Parcelable { class in ProcStatsEntry [all …]
|
D | ProcessStatsDetail.java | 56 import com.android.settings.applications.ProcStatsEntry.Service; 312 final static Comparator<ProcStatsEntry.Service> sServiceCompare 313 = new Comparator<ProcStatsEntry.Service>() { 315 public int compare(ProcStatsEntry.Service lhs, ProcStatsEntry.Service rhs) { 338 final ArrayList<ProcStatsEntry.Service> mServices = new ArrayList<>(); 348 ArrayList<ProcStatsEntry.Service> services = entry.mServices.valueAt(ip); in fillServicesSection() 350 ProcStatsEntry.Service pent = services.get(is); in fillServicesSection() 367 ArrayList<ProcStatsEntry.Service> services = pkgList.get(ip).mServices; in fillServicesSection() 370 final ProcStatsEntry.Service service = services.get(is); in fillServicesSection() 383 private CharSequence getLabel(Service service) { in getLabel()
|
/packages/services/Car/car_product/sepolicy/private/ |
D | carservice_app.te | 1 # Domain to run Car Service (com.android.car) 4 # Allow Car Service to be the client of Vehicle and Audio Control HALs 9 # Allow Car Service to use EVS service 15 # Allow Car Service to register/access itself with ServiceManager 18 # Allow Car Service to access certain system services.
|
/packages/services/Car/tests/carservice_unit_test/src/android/car/test/mocks/ |
D | AndroidMockitoHelperTest.java | 39 import android.app.Service; 213 Service someService = mock(Service.class); in testMockContextGetService() 215 mockContextGetService(context, Service.class, someService); in testMockContextGetService() 217 assertThat(context.getSystemService(Service.class)).isEqualTo(someService); in testMockContextGetService()
|
/packages/apps/MusicFX/src/com/android/musicfx/ |
D | Compatibility.java | 72 ResolveInfo defPanel = Service.searchControlPanel(this, null); in onCreate() 82 Intent updateIntent = new Intent(this, Service.class); in onCreate() 109 Intent updateIntent = new Intent(context, Service.class); in onReceive() 115 public static class Service extends IntentService { class in Compatibility 119 public Service() { in Service() method in Compatibility.Service
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
D | AlarmService.kt | 19 import android.app.Service 44 class AlarmService : Service() { 151 return Service.START_NOT_STICKY in onStartCommand() 188 return Service.START_NOT_STICKY in onStartCommand()
|
/packages/apps/Traceur/src/com/android/traceur/ |
D | TraceService.java | 24 import android.app.Service; 151 stopForeground(Service.STOP_FOREGROUND_DETACH); in startTracingInternal() 159 stopForeground(Service.STOP_FOREGROUND_REMOVE); in startTracingInternal() 211 stopForeground(Service.STOP_FOREGROUND_REMOVE); in stopTracingInternal()
|
/packages/apps/Contacts/src/com/android/contacts/ |
D | SimImportService.java | 21 import android.app.Service; 49 public class SimImportService extends Service { 238 private Service mHost; 241 private StopTask(Service host, int startId) { in StopTask()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
D | DictionaryService.java | 21 import android.app.Service; 57 public final class DictionaryService extends Service { 191 return Service.START_REDELIVER_INTENT; in onStartCommand()
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/ota/ |
D | OtaService.java | 19 import android.app.Service; 26 public class OtaService extends Service {
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
D | EmptyService.java | 19 import android.app.Service; 28 public class EmptyService extends Service {
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | MockSyncAdapter.java | 19 import android.app.Service; 26 public class MockSyncAdapter extends Service {
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/provisioning/ |
D | ProvisioningService.java | 19 import android.app.Service; 26 public class ProvisioningService extends Service {
|
/packages/apps/TV/tests/input/src/com/android/tv/testinput/ |
D | TestInputControlService.java | 18 import android.app.Service; 26 public class TestInputControlService extends Service {
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
D | AuthenticationService.java | 18 import android.app.Service; 22 public class AuthenticationService extends Service {
|
/packages/apps/Settings/tests/legacy_unit/src/com/android/settings/accounts/ |
D | TestAuthService.java | 18 import android.app.Service; 22 public class TestAuthService extends Service {
|
/packages/modules/StatsD/tests/apps/statsdapp/src/com/android/server/cts/device/statsd/ |
D | StatsdSyncService.java | 18 import android.app.Service; 25 public class StatsdSyncService extends Service {
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/ |
D | TestSyncService.java | 18 import android.app.Service; 22 public abstract class TestSyncService extends Service {
|
D | TestAuthenticationService.java | 19 import android.app.Service; 24 public abstract class TestAuthenticationService extends Service {
|
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/ |
D | BugleServiceTestCase.java | 19 import android.app.Service; 30 public abstract class BugleServiceTestCase<T extends Service> extends ServiceTestCase<T> {
|
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
D | BatchService.java | 19 import android.app.Service; 26 public class BatchService extends Service {
|
/packages/modules/StatsD/tests/src/android/cts/statsd/validation/ |
D | BatteryStatsValidationTests.java | 25 import android.os.UidProto.Package.Service; 150 for (Service svc : pkg.getServicesList()) { in testServiceStartCount() 195 for (Service svc : pkg.getServicesList()) { in testServiceLaunchCount()
|
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/components/ |
D | TelephonySipService.java | 18 import android.app.Service; 29 public class TelephonySipService extends Service {
|
/packages/services/Telephony/src/com/android/phone/ |
D | TelephonyDebugService.java | 19 import android.app.Service; 32 public class TelephonyDebugService extends Service {
|
/packages/services/Car/experimental/service/src/com/android/experimentalcar/ |
D | ExperimentalCarService.java | 19 import android.app.Service; 30 public class ExperimentalCarService extends Service {
|