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

/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java61 final boolean isolated; // true if this is a special isolated process field in class:ProcessRecord
62 final int uid; // uid of process; may be different from 'info' if isolated
415 isolated = _info.uid != _uid;
H A DActivityManagerService.java553 * The currently running isolated processes.
558 * Counter for assigning isolated process uids, to avoid frequently reusing the
2627 private HashMap<String, IBinder> getCommonServicesLocked(boolean isolated) { argument
2633 if (!isolated) {
3086 // For isolated processes, the former contains the parent's uid and the latter the
3087 // actual uid of the isolated process.
3088 // In the special case introduced by this method (which is, starting an isolated
3092 // the |isolated| logic in the ProcessRecord constructor.
3099 null /* hostingName */, true /* allowWhileBooting */, true /* isolated */,
3109 boolean isolated, boolea
3106 startProcessLocked(String processName, ApplicationInfo info, boolean knownToBeDead, int intentFlags, String hostingType, ComponentName hostingName, boolean allowWhileBooting, boolean isolated, boolean keepIfLarge) argument
3116 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
10187 newProcessRecordLocked(ApplicationInfo info, String customProcess, boolean isolated, int isolatedUid) argument
10228 addAppLocked(ApplicationInfo info, boolean isolated, String abiOverride) argument
[all...]
H A DActiveServices.java1424 final boolean isolated = (r.serviceInfo.flags&ServiceInfo.FLAG_ISOLATED_PROCESS) != 0;
1428 if (!isolated) {
1447 // If this service runs in an isolated process, then each time
1448 // we call startProcessLocked() we will get a new isolated
1451 // in the service any current isolated process it is running in or
1460 "service", r.name, false, isolated, false)) == null) {
1469 if (isolated) {
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java192 * Mapping isolated uids to the actual owning app uid.
2524 * Schedules a read of the latest cpu times before removing the isolated UID.
2546 int isolated = mIsolatedUids.get(uid, -1);
2547 return isolated > 0 ? isolated : uid;

Completed in 3303 milliseconds