/frameworks/base/core/java/com/android/internal/widget/ |
H A D | MessagingImageMessage.java | 256 public void setIsolated(boolean isolated) { argument 257 if (mIsIsolated != isolated) { 258 mIsIsolated = isolated; 262 layoutParams.topMargin = isolated ? 0 : mExtraSpacing;
|
/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | Installer.java | 92 * @param isolated indicates if this object should <em>not</em> connect to 96 public Installer(Context context, boolean isolated) { argument 98 mIsolated = isolated; 159 Slog.i(TAG, "Ignoring request because this installer is isolated");
|
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | AppErrors.java | 513 if (r != null && !r.isolated && res != AppErrorDialog.RESTART) { 514 // XXX Can't keep track of crash time for isolated processes, 685 if (!app.isolated) { 726 if (!app.isolated) { 727 // XXX We don't have a way to mark isolated processes 782 if (!app.isolated) { 783 // XXX Can't keep track of crash times for isolated processes,
|
H A D | ProcessRecord.java | 63 final boolean isolated; // true if this is a special isolated process field in class:ProcessRecord 64 final int uid; // uid of process; may be different from 'info' if isolated 193 String isolatedEntryPoint; // Class to run on start if this is a special isolated process. 497 isolated = _info.uid != _uid;
|
H A D | ActivityManagerService.java | 906 * The currently running isolated processes. 911 * Counter for assigning isolated process uids, to avoid frequently reusing the 2254 // Don't dispatch to isolated processes as they can't access 2256 if (r.thread != null && !r.isolated) { 3447 private ArrayMap<String, IBinder> getCommonServicesLocked(boolean isolated) { argument 3450 if (isolated) { 4037 // For isolated processes, the former contains the parent's uid and the latter the 4038 // actual uid of the isolated process. 4039 // In the special case introduced by this method (which is, starting an isolated 4043 // the |isolated| logi 4060 startProcessLocked(String processName, ApplicationInfo info, boolean knownToBeDead, int intentFlags, String hostingType, ComponentName hostingName, boolean allowWhileBooting, boolean isolated, boolean keepIfLarge) argument 4071 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 13033 newProcessRecordLocked(ApplicationInfo info, String customProcess, boolean isolated, int isolatedUid) argument 13146 addAppLocked(ApplicationInfo info, String customProcess, boolean isolated, String abiOverride) argument 13152 addAppLocked(ApplicationInfo info, String customProcess, boolean isolated, boolean disableHiddenApiChecks, String abiOverride) argument [all...] |
H A D | ActiveServices.java | 2342 final boolean isolated = (r.serviceInfo.flags&ServiceInfo.FLAG_ISOLATED_PROCESS) != 0; 2347 if (!isolated) { 2366 // If this service runs in an isolated process, then each time 2367 // we call startProcessLocked() we will get a new isolated 2370 // in the service any current isolated process it is running in or 2383 hostingType, r.name, false, isolated, false)) == null) { 2392 if (isolated) {
|
/frameworks/base/core/jni/ |
H A D | android_view_ThreadedRenderer.cpp | 1054 static void android_view_ThreadedRenderer_setIsolatedProcess(JNIEnv*, jclass, jboolean isolated) { argument 1055 Properties::isolatedProcess = isolated;
|
/frameworks/base/core/java/com/android/internal/os/ |
H A D | BatteryStatsImpl.java | 599 * Mapping isolated uids to the actual owning app uid. 4039 * Schedules a read of the latest cpu times before removing the isolated UID. 4071 int isolated = mIsolatedUids.get(uid, -1); 4072 return isolated > 0 ? isolated : uid; 12078 // This could happen if the isolated uid mapping was removed before that process 12081 Slog.d(TAG, "Got readings for an isolated uid with no mapping: " + uid); 12189 Slog.d(TAG, "Got freq readings for an isolated uid with no mapping: " + uid); 12296 Slog.w(TAG, "Got active times for an isolated uid with no mapping: " + uid); 12325 Slog.w(TAG, "Got cluster times for an isolated ui [all...] |