Questions tagged [dumpsys]

The dumpsys is a tool that runs on the device and dumps interesting information about the status of system services.

The Android input subsystem supports many different device classes, including keyboard, joystick, trackball, mouse and touch screen.

The dumpsys is a tool that runs on the device and dumps interesting information about the status of system services. Among its main features, the following could be highlighted:

  1. Get system information in a simple string representation.
  2. Use dumped CPU, RAM, Battery, storage stats for a pretty charts, which will allow you to check how your application affects the overall device.
81 questions
0
votes
0 answers

How to use the information provided by "dumpsys" from kernel?

I get the frame information of a running application through dumpsys SurfaceFlinger --latency SurfaceView. Now, I want to get the same information in a piece of code I have written for kernel. How could I access the information provided by dumpsys…
Matt
  • 796
  • 12
  • 25
0
votes
1 answer

dumpsys SurfaceFlinger output interpretation

Recently, I have started using dumpsys SurfaceFlinger to gather some information about android graphics. I currently work on a development board called Odroid-XU3. The display is a Dell monitor which is connected to the board through HDMI cable. In…
Matt
  • 796
  • 12
  • 25
0
votes
2 answers

How to find the coordinates of my touch event?

I am testing a third party game on physical device after connecting with adb on Windows. I am capturing logs using: adb -d logcat > logcat.txt During testing I tap on the game screen for a few times. How to find the coordinates of my touch event?
Saurabh Shrivastava
  • 1,394
  • 4
  • 21
  • 50
0
votes
1 answer

Android dumpsys cpuinfo output explanation

I am executing the adb shell dumpsys cpuinfo command on my android device, which prints out something like this: 2.3% 7398/com.pkg.testapp: 2% user + 0.3% kernel / faults: 79 minor Could anyone please explain the meaning of this output?
Omar Hassan
  • 727
  • 1
  • 11
  • 24
-1
votes
1 answer

Is it possible to get value for current battery level via ADB shell command?

With the below adb command I am able to get current battery level(as shown in image. adb shell dumpsys battery | findstr /r /c:level I am getting response as level: 12 Is there any way to get only value(ie 12 here) instead of level:12?
Shoaib Akhtar
  • 1,393
  • 5
  • 17
  • 46
-2
votes
2 answers

Greping multiple lines from one multiline output Bash

I have a command dumpsys power with this output: POWER MANAGER (dumpsys power) Power Manager State: mDirty=0x0 mWakefulness=Awake # mWakefulnessChanging=false mIsPowered=false mPlugType=0 mBatteryLevel=67 # …
user5259983
1 2 3 4 5
6