Home
last modified time | relevance | path

Searched refs:Service (Results 1 – 25 of 146) sorted by relevance

123456

/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/
DProcStatsEntry.java57 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 …]
DProcessStatsDetail.java56 import com.android.car.developeroptions.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/apps/Settings/src/com/android/settings/applications/
DProcStatsEntry.java57 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 …]
DProcessStatsDetail.java56 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/
Dcarservice_app.te1 # Domain to run Car Service (com.android.car)
4 # Allow Car Service to be the client of Vehicle and Audio Control HALs
12 # Allow Car Service to register/access itself with ServiceManager
15 # Allow Car Service to register its stats service with ServiceManager
18 # Allow Car Service to access certain system services.
/packages/apps/MusicFX/src/com/android/musicfx/
DCompatibility.java72 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/
DAlarmService.java18 import android.app.Service;
42 public class AlarmService extends Service {
190 return Service.START_NOT_STICKY; in onStartCommand()
229 return Service.START_NOT_STICKY; in onStartCommand()
DAlarmService.kt19 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/
DTraceService.java24 import android.app.Service;
136 stopForeground(Service.STOP_FOREGROUND_DETACH); in startTracingInternal()
145 stopForeground(Service.STOP_FOREGROUND_REMOVE); in startTracingInternal()
178 stopForeground(Service.STOP_FOREGROUND_REMOVE); in stopTracingInternal()
/packages/apps/Contacts/src/com/android/contacts/
DSimImportService.java21 import android.app.Service;
49 public class SimImportService extends Service {
238 private Service mHost;
241 private StopTask(Service host, int startId) { in StopTask()
/packages/providers/MediaProvider/src/com/android/providers/media/
DRingtoneOverlayService.java22 import android.app.Service;
44 public class RingtoneOverlayService extends Service {
56 return Service.START_REDELIVER_INTENT; in onStartCommand()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryService.java21 import android.app.Service;
57 public final class DictionaryService extends Service {
191 return Service.START_REDELIVER_INTENT; in onStartCommand()
/packages/services/Car/car-lib/src/android/car/
DCar.java28 import android.app.Service;
1252 } else if (mContext instanceof Service) { in finishClient()
1253 Service service = (Service) mContext; in finishClient()
1270 public static <T> T handleRemoteExceptionFromCarService(Service service, RemoteException e, in handleRemoteExceptionFromCarService()
1277 public static void handleRemoteExceptionFromCarService(Service service, RemoteException e) { in handleRemoteExceptionFromCarService()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DMockSyncAdapter.java19 import android.app.Service;
26 public class MockSyncAdapter extends Service {
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/provisioning/
DProvisioningService.java19 import android.app.Service;
26 public class ProvisioningService extends Service {
/packages/apps/Contacts/src/com/android/contacts/util/
DEmptyService.java19 import android.app.Service;
28 public class EmptyService extends Service {
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/ota/
DOtaService.java19 import android.app.Service;
26 public class OtaService extends Service {
/packages/apps/TV/tests/input/src/com/android/tv/testinput/
DTestInputControlService.java18 import android.app.Service;
26 public class TestInputControlService extends Service {
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
DAuthenticationService.java18 import android.app.Service;
22 public class AuthenticationService extends Service {
/packages/apps/Settings/tests/unit/src/com/android/settings/accounts/
DTestAuthService.java18 import android.app.Service;
22 public class TestAuthService extends Service {
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DProfileService.java20 import android.app.Service;
39 public abstract class ProfileService extends Service {
56 private static final int PROFILE_SERVICE_MODE = Service.START_NOT_STICKY;
/packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
DTestSyncService.java18 import android.app.Service;
22 public abstract class TestSyncService extends Service {
/packages/services/Telecomm/src/com/android/server/telecom/components/
DBluetoothPhoneService.java21 import android.app.Service;
29 public final class BluetoothPhoneService extends Service implements TelecomSystem.Component {
/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
DBugleServiceTestCase.java19 import android.app.Service;
30 public abstract class BugleServiceTestCase<T extends Service> extends ServiceTestCase<T> {
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DBatchService.java19 import android.app.Service;
26 public class BatchService extends Service {

123456