Searched refs:isolated (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
H A DAppErrors.java416 if (r != null && !r.isolated && res != AppErrorDialog.RESTART) {
417 // XXX Can't keep track of crash time for isolated processes,
580 if (!app.isolated) {
600 if (!app.isolated) {
601 // XXX We don't have a way to mark isolated processes
658 if (!app.isolated) {
659 // XXX Can't keep track of crash times for isolated processes,
H A DProcessRecord.java64 final boolean isolated; // true if this is a special isolated process field in class:ProcessRecord
65 final int uid; // uid of process; may be different from 'info' if isolated
439 isolated = _info.uid != _uid;
H A DActivityManagerService.java724 * The currently running isolated processes.
729 * Counter for assigning isolated process uids, to avoid frequently reusing the
2899 private HashMap<String, IBinder> getCommonServicesLocked(boolean isolated) { argument
2905 if (!isolated) {
3457 // For isolated processes, the former contains the parent's uid and the latter the
3458 // actual uid of the isolated process.
3459 // In the special case introduced by this method (which is, starting an isolated
3463 // the |isolated| logic in the ProcessRecord constructor.
3470 null /* hostingName */, true /* allowWhileBooting */, true /* isolated */,
3480 boolean isolated, boolea
3477 startProcessLocked(String processName, ApplicationInfo info, boolean knownToBeDead, int intentFlags, String hostingType, ComponentName hostingName, boolean allowWhileBooting, boolean isolated, boolean keepIfLarge) argument
3487 startProcessLocked(String processName, ApplicationInfo info, boolean knownToBeDead, int intentFlags, String hostingType, ComponentName hostingName, boolean allowWhileBooting, boolean isolated, int isolatedUid, boolean keepIfLarge, String abiOverride, String entryPoint, String[] entryPointArgs, Runnable crashHandler) argument
11397 newProcessRecordLocked(ApplicationInfo info, String customProcess, boolean isolated, int isolatedUid) argument
11438 addAppLocked(ApplicationInfo info, boolean isolated, String abiOverride) argument
[all...]
H A DActiveServices.java1688 final boolean isolated = (r.serviceInfo.flags&ServiceInfo.FLAG_ISOLATED_PROCESS) != 0;
1692 if (!isolated) {
1711 // If this service runs in an isolated process, then each time
1712 // we call startProcessLocked() we will get a new isolated
1715 // in the service any current isolated process it is running in or
1724 "service", r.name, false, isolated, false)) == null) {
1733 if (isolated) {
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java230 * Mapping isolated uids to the actual owning app uid.
2925 * Schedules a read of the latest cpu times before removing the isolated UID.
2947 int isolated = mIsolatedUids.get(uid, -1);
2948 return isolated > 0 ? isolated : uid;

Completed in 146 milliseconds