Home
last modified time | relevance | path

Searched refs:WindowTraceLogLevel (Results 1 – 20 of 20) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DWindowTraceLogLevel.java25 WindowTraceLogLevel.ALL,
26 WindowTraceLogLevel.TRIM,
27 WindowTraceLogLevel.CRITICAL,
30 @interface WindowTraceLogLevel{ annotation
DWindowTracing.java72 private @WindowTraceLogLevel int mLogLevel = WindowTraceLogLevel.TRIM;
96 setLogLevel(WindowTraceLogLevel.TRIM, null /* pw */); in WindowTracing()
161 private void setLogLevel(@WindowTraceLogLevel int logLevel, PrintWriter pw) { in setLogLevel()
166 case WindowTraceLogLevel.ALL: { in setLogLevel()
170 case WindowTraceLogLevel.TRIM: { in setLogLevel()
174 case WindowTraceLogLevel.CRITICAL: { in setLogLevel()
224 setLogLevel(WindowTraceLogLevel.ALL, pw); in onShellCommand()
228 setLogLevel(WindowTraceLogLevel.TRIM, pw); in onShellCommand()
232 setLogLevel(WindowTraceLogLevel.CRITICAL, pw); in onShellCommand()
236 setLogLevel(WindowTraceLogLevel.TRIM, pw); in onShellCommand()
DConfigurationContainer.java690 @WindowTraceLogLevel int logLevel) { in dumpDebug()
693 if (logLevel == WindowTraceLogLevel.ALL || mHasOverrideConfiguration) { in dumpDebug()
695 logLevel == WindowTraceLogLevel.CRITICAL); in dumpDebug()
700 if (logLevel == WindowTraceLogLevel.ALL) { in dumpDebug()
706 if (logLevel == WindowTraceLogLevel.TRIM) { in dumpDebug()
DInputTarget.java69 @WindowTraceLogLevel int logLevel); in dumpProto()
DWindowToken.java685 @WindowTraceLogLevel int logLevel) { in dumpDebug()
686 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) { in dumpDebug()
DEmbeddedWindowController.java359 @WindowTraceLogLevel int logLevel) { in dumpProto()
DImeInsetsSourceProvider.java299 void dumpDebug(ProtoOutputStream proto, long fieldId, @WindowTraceLogLevel int logLevel) { in dumpDebug()
DDisplayArea.java351 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) { in dumpDebug()
DInsetsSourceProvider.java627 void dumpDebug(ProtoOutputStream proto, long fieldId, @WindowTraceLogLevel int logLevel) { in dumpDebug()
DTaskFragment.java3014 @WindowTraceLogLevel int logLevel) { in dumpDebug()
3015 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) { in dumpDebug()
DWindowState.java4245 @WindowTraceLogLevel int logLevel) { in dumpDebug()
4247 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible) { in dumpDebug()
6328 @WindowTraceLogLevel int logLevel) { in dumpProto()
DWindowContainer.java2673 @WindowTraceLogLevel int logLevel) { in dumpDebug()
2675 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible) { in dumpDebug()
DRootWindowContainer.java1207 @WindowTraceLogLevel int logLevel) { in dumpDebug()
1208 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) { in dumpDebug()
DAccessibilityController.java2187 mService.dumpDebugLocked(os, WindowTraceLogLevel.ALL); in handleMessage()
DActivityRecord.java10027 void dumpDebug(ProtoOutputStream proto, @WindowTraceLogLevel int logLevel) {
10079 @WindowTraceLogLevel int logLevel) {
10081 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) {
DDisplayContent.java3421 @WindowTraceLogLevel int logLevel) { in dumpDebug()
3423 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) { in dumpDebug()
DTask.java6237 @WindowTraceLogLevel int logLevel) {
6238 if (logLevel == WindowTraceLogLevel.CRITICAL && !isVisible()) {
DWindowManagerService.java6640 void dumpDebugLocked(ProtoOutputStream proto, @WindowTraceLogLevel int logLevel) { in dumpDebugLocked()
6964 dumpDebugLocked(proto, WindowTraceLogLevel.ALL); in doDump()
DActivityTaskManagerService.java6288 proto, ROOT_WINDOW_CONTAINER, WindowTraceLogLevel.ALL); in writeActivitiesToProto()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DWindowTracingTest.java128 verify(mWmMock, times(2)).dumpDebugLocked(any(), eq(WindowTraceLogLevel.TRIM)); in trace_dumpsWindowManagerState_whenTracing()