/frameworks/base/core/java/com/android/internal/os/ |
D | Zygote.java | 99 public static int forkAndSpecialize(int uid, int gid, int[] gids, int debugFlags, in forkAndSpecialize() argument 106 uid, gid, gids, debugFlags, rlimits, mountExternal, seInfo, niceName, fdsToClose, in forkAndSpecialize() 119 native private static int nativeForkAndSpecialize(int uid, int gid, int[] gids,int debugFlags, in nativeForkAndSpecialize() argument 146 public static int forkSystemServer(int uid, int gid, int[] gids, int debugFlags, in forkSystemServer() argument 152 uid, gid, gids, debugFlags, rlimits, permittedCapabilities, effectiveCapabilities); in forkSystemServer() 161 native private static int nativeForkSystemServer(int uid, int gid, int[] gids, int debugFlags, in nativeForkSystemServer() argument 175 private static void callPostForkChildHooks(int debugFlags, boolean isSystemServer, in callPostForkChildHooks() argument 177 VM_HOOKS.postForkChild(debugFlags, isSystemServer, instructionSet); in callPostForkChildHooks()
|
D | ZygoteConnection.java | 240 parsedArgs.debugFlags, rlimits, parsedArgs.mountExternal, parsedArgs.seInfo, in runOnce() 377 int debugFlags; field in ZygoteConnection.Arguments 494 debugFlags |= Zygote.DEBUG_ENABLE_JDWP; in parseArgs() 496 debugFlags |= Zygote.DEBUG_ENABLE_SAFEMODE; in parseArgs() 498 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI; in parseArgs() 500 debugFlags |= Zygote.DEBUG_GENERATE_DEBUG_INFO; in parseArgs() 502 debugFlags |= Zygote.DEBUG_ALWAYS_JIT; in parseArgs() 504 debugFlags |= Zygote.DEBUG_NATIVE_DEBUGGABLE; in parseArgs() 506 debugFlags |= Zygote.DEBUG_JAVA_DEBUGGABLE; in parseArgs() 508 debugFlags |= Zygote.DEBUG_ENABLE_JNI_LOGGING; in parseArgs() [all …]
|
D | ZygoteInit.java | 636 parsedArgs.debugFlags, in startSystemServer()
|
/frameworks/base/core/java/android/os/ |
D | ZygoteProcess.java | 198 int debugFlags, int mountExternal, in start() argument 208 debugFlags, mountExternal, targetSdkVersion, seInfo, in start() 333 int debugFlags, int mountExternal, in startViaZygote() argument 349 if ((debugFlags & Zygote.DEBUG_ENABLE_JNI_LOGGING) != 0) { in startViaZygote() 352 if ((debugFlags & Zygote.DEBUG_ENABLE_SAFEMODE) != 0) { in startViaZygote() 355 if ((debugFlags & Zygote.DEBUG_ENABLE_JDWP) != 0) { in startViaZygote() 358 if ((debugFlags & Zygote.DEBUG_ENABLE_CHECKJNI) != 0) { in startViaZygote() 361 if ((debugFlags & Zygote.DEBUG_GENERATE_DEBUG_INFO) != 0) { in startViaZygote() 364 if ((debugFlags & Zygote.DEBUG_ALWAYS_JIT) != 0) { in startViaZygote() 367 if ((debugFlags & Zygote.DEBUG_NATIVE_DEBUGGABLE) != 0) { in startViaZygote() [all …]
|
D | Process.java | 445 int debugFlags, int mountExternal, in start() argument 454 debugFlags, mountExternal, targetSdkVersion, seInfo, in start() 462 int debugFlags, int mountExternal, in startWebView() argument 471 debugFlags, mountExternal, targetSdkVersion, seInfo, in startWebView()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | RecentsActivityLaunchState.java | 60 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in getInitialFocusTaskIndex() local 63 if (!launchState.launchedWithAltTab && debugFlags.isFastToggleRecentsEnabled()) { in getInitialFocusTaskIndex() 83 if (!launchState.launchedWithAltTab && debugFlags.isFastToggleRecentsEnabled()) { in getInitialFocusTaskIndex()
|
D | RecentsActivity.java | 633 final RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in onBusEvent() local 637 if (debugFlags.isFastToggleRecentsEnabled()) { in onBusEvent()
|
D | RecentsImpl.java | 378 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in toggleRecents() local 391 if (!debugFlags.isPagingEnabled() || isQuickTap) { in toggleRecents()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLSurfaceView.java | 278 public void setDebugFlags(int debugFlags) { in setDebugFlags() argument 279 mDebugFlags = debugFlags; in setDebugFlags()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskStackLayoutAlgorithm.java | 747 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in getInitialFocusState() local 748 if (debugFlags.isPagingEnabled() || launchState.launchedWithAltTab) { in getInitialFocusState()
|
D | TaskStackView.java | 1987 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in onBusEvent() local 1988 if (debugFlags.isFastToggleRecentsEnabled() && mFocusedTask != null) { in onBusEvent()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityManagerService.java | 3840 int debugFlags = 0; in startProcessLocked() local 3842 debugFlags |= Zygote.DEBUG_ENABLE_JDWP; in startProcessLocked() 3843 debugFlags |= Zygote.DEBUG_JAVA_DEBUGGABLE; in startProcessLocked() 3846 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI; in startProcessLocked() 3852 debugFlags |= Zygote.DEBUG_ENABLE_SAFEMODE; in startProcessLocked() 3855 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI; in startProcessLocked() 3859 debugFlags |= Zygote.DEBUG_GENERATE_DEBUG_INFO; in startProcessLocked() 3862 debugFlags |= Zygote.DEBUG_ENABLE_JNI_LOGGING; in startProcessLocked() 3865 debugFlags |= Zygote.DEBUG_ENABLE_ASSERT; in startProcessLocked() 3869 debugFlags |= Zygote.DEBUG_ALWAYS_JIT; // Don't interpret anything in startProcessLocked() [all …]
|