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

/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingImageMessage.java256 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 DInstaller.java92 * @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/core/jni/
H A Dandroid_view_ThreadedRenderer.cpp1054 static void android_view_ThreadedRenderer_setIsolatedProcess(JNIEnv*, jclass, jboolean isolated) { argument
1055 Properties::isolatedProcess = isolated;
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessRecord.java63 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 DActivityManagerService.java906 * 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...]

Completed in 110 milliseconds