/frameworks/base/core/java/com/android/internal/os/ |
D | Zygote.java | 91 public static int forkAndSpecialize(int uid, int gid, int[] gids, int debugFlags, in forkAndSpecialize() argument 96 uid, gid, gids, debugFlags, rlimits, mountExternal, seInfo, niceName, fdsToClose, in forkAndSpecialize() 109 native private static int nativeForkAndSpecialize(int uid, int gid, int[] gids,int debugFlags, in nativeForkAndSpecialize() argument 136 public static int forkSystemServer(int uid, int gid, int[] gids, int debugFlags, in forkSystemServer() argument 140 uid, gid, gids, debugFlags, rlimits, permittedCapabilities, effectiveCapabilities); in forkSystemServer() 149 native private static int nativeForkSystemServer(int uid, int gid, int[] gids, int debugFlags, in nativeForkSystemServer() argument 158 private static void callPostForkChildHooks(int debugFlags, boolean isSystemServer, in callPostForkChildHooks() argument 160 VM_HOOKS.postForkChild(debugFlags, isSystemServer, instructionSet); in callPostForkChildHooks()
|
D | ZygoteConnection.java | 226 parsedArgs.debugFlags, rlimits, parsedArgs.mountExternal, parsedArgs.seInfo, in runOnce() 327 int debugFlags; field in ZygoteConnection.Arguments 430 debugFlags |= Zygote.DEBUG_ENABLE_DEBUGGER; in parseArgs() 432 debugFlags |= Zygote.DEBUG_ENABLE_SAFEMODE; in parseArgs() 434 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI; in parseArgs() 436 debugFlags |= Zygote.DEBUG_GENERATE_DEBUG_INFO; in parseArgs() 438 debugFlags |= Zygote.DEBUG_ALWAYS_JIT; in parseArgs() 440 debugFlags |= Zygote.DEBUG_NATIVE_DEBUGGABLE; in parseArgs() 442 debugFlags |= Zygote.DEBUG_ENABLE_JNI_LOGGING; in parseArgs() 444 debugFlags |= Zygote.DEBUG_ENABLE_ASSERT; in parseArgs() [all …]
|
D | ZygoteInit.java | 654 parsedArgs.debugFlags, in startSystemServer()
|
/frameworks/base/core/java/android/os/ |
D | Process.java | 505 int debugFlags, int mountExternal, in start() argument 514 debugFlags, mountExternal, targetSdkVersion, seInfo, in start() 628 int debugFlags, int mountExternal, in startViaZygote() argument 644 if ((debugFlags & Zygote.DEBUG_ENABLE_JNI_LOGGING) != 0) { in startViaZygote() 647 if ((debugFlags & Zygote.DEBUG_ENABLE_SAFEMODE) != 0) { in startViaZygote() 650 if ((debugFlags & Zygote.DEBUG_ENABLE_DEBUGGER) != 0) { in startViaZygote() 653 if ((debugFlags & Zygote.DEBUG_ENABLE_CHECKJNI) != 0) { in startViaZygote() 656 if ((debugFlags & Zygote.DEBUG_GENERATE_DEBUG_INFO) != 0) { in startViaZygote() 659 if ((debugFlags & Zygote.DEBUG_ALWAYS_JIT) != 0) { in startViaZygote() 662 if ((debugFlags & Zygote.DEBUG_NATIVE_DEBUGGABLE) != 0) { in startViaZygote() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | RecentsActivityLaunchState.java | 52 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in getInitialFocusTaskIndex() local 55 if (!launchState.launchedWithAltTab && debugFlags.isFastToggleRecentsEnabled()) { in getInitialFocusTaskIndex() 64 if (!launchState.launchedWithAltTab && debugFlags.isFastToggleRecentsEnabled()) { in getInitialFocusTaskIndex()
|
D | RecentsActivity.java | 619 final RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in onBusEvent() local 623 if (debugFlags.isFastToggleRecentsEnabled()) { in onBusEvent()
|
D | RecentsImpl.java | 308 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in toggleRecents() local 313 if (!debugFlags.isPagingEnabled() || in toggleRecents()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLSurfaceView.java | 280 public void setDebugFlags(int debugFlags) { in setDebugFlags() argument 281 mDebugFlags = debugFlags; in setDebugFlags()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
D | TaskStackLayoutAlgorithm.java | 714 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in getInitialFocusState() local 715 if (debugFlags.isPagingEnabled() || launchState.launchedWithAltTab) { in getInitialFocusState()
|
D | TaskStackView.java | 1797 RecentsDebugFlags debugFlags = Recents.getDebugFlags(); in onBusEvent() local 1798 if (debugFlags.isFastToggleRecentsEnabled() && mFocusedTask != null) { in onBusEvent()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ActivityManagerService.java | 3688 int debugFlags = 0; in startProcessLocked() local 3690 debugFlags |= Zygote.DEBUG_ENABLE_DEBUGGER; in startProcessLocked() 3693 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI; in startProcessLocked() 3699 debugFlags |= Zygote.DEBUG_ENABLE_SAFEMODE; in startProcessLocked() 3702 debugFlags |= Zygote.DEBUG_ENABLE_CHECKJNI; in startProcessLocked() 3706 debugFlags |= Zygote.DEBUG_GENERATE_DEBUG_INFO; in startProcessLocked() 3709 debugFlags |= Zygote.DEBUG_ENABLE_JNI_LOGGING; in startProcessLocked() 3712 debugFlags |= Zygote.DEBUG_ENABLE_ASSERT; in startProcessLocked() 3716 debugFlags |= Zygote.DEBUG_ALWAYS_JIT; // Don't interpret anything in startProcessLocked() 3717 debugFlags |= Zygote.DEBUG_GENERATE_DEBUG_INFO; // Generate debug info in startProcessLocked() [all …]
|