Loading packages/SystemUI/src/com/android/systemui/SystemUISecondaryUserService.java +9 −7 Original line number Diff line number Diff line Loading @@ -16,11 +16,9 @@ package com.android.systemui; import android.app.ActivityManager; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.Process; import java.io.FileDescriptor; import java.io.PrintWriter; Loading @@ -43,12 +41,15 @@ public class SystemUISecondaryUserService extends Service { SystemUI[] services = ((SystemUIApplication) getApplication()).getServices(); if (args == null || args.length == 0) { for (SystemUI ui: services) { if (ui != null) { pw.println("dumping service: " + ui.getClass().getName()); ui.dump(fd, pw, args); } } } else { String svc = args[0]; for (SystemUI ui: services) { if (ui != null) { String name = ui.getClass().getName(); if (name.endsWith(svc)) { ui.dump(fd, pw, args); Loading @@ -57,4 +58,5 @@ public class SystemUISecondaryUserService extends Service { } } } } Loading
packages/SystemUI/src/com/android/systemui/SystemUISecondaryUserService.java +9 −7 Original line number Diff line number Diff line Loading @@ -16,11 +16,9 @@ package com.android.systemui; import android.app.ActivityManager; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.os.Process; import java.io.FileDescriptor; import java.io.PrintWriter; Loading @@ -43,12 +41,15 @@ public class SystemUISecondaryUserService extends Service { SystemUI[] services = ((SystemUIApplication) getApplication()).getServices(); if (args == null || args.length == 0) { for (SystemUI ui: services) { if (ui != null) { pw.println("dumping service: " + ui.getClass().getName()); ui.dump(fd, pw, args); } } } else { String svc = args[0]; for (SystemUI ui: services) { if (ui != null) { String name = ui.getClass().getName(); if (name.endsWith(svc)) { ui.dump(fd, pw, args); Loading @@ -57,4 +58,5 @@ public class SystemUISecondaryUserService extends Service { } } } }