android debug
文章平均质量分 80
xiongtiancheng
android application,android frameworks,android hal,linux kernel,linux driver,freertos
展开
-
十分有用的命令,debug 相关
1、打印某个进程中所有线程的backtraceadb shell debuggerd -b pidC:\Users\hxiong>adb rootC:\Users\hxiong>adb shellgeneric_x86_64:/ # ps | grep cameraservercameraserver 1293 1 21368 5700 binder_thr 00原创 2017-06-17 16:12:15 · 1687 阅读 · 0 评论 -
抓取进程和系统cpu loading信息,debug相关
1、通过top命令抓取系统的cpu loading情况1)查看一下top命令支持的参数C:\Users\hxiong>adb rootC:\Users\hxiong>adb shellgeneric_x86_64:/ # top -hUsage: top [ -m max_procs ] [ -n iterations ] [ -d delay ] [ -s sort_column原创 2017-07-02 14:09:21 · 3242 阅读 · 0 评论 -
抓取某个进程或者系统内存信息,debug相关
1、抓取某个应用(进程)的内存使用情况1)通过ps得到debug进程的pid(进程号)C:\Users\hxiong>adb rootC:\Users\hxiong>adb shellgeneric_x86_64:/ # ps | grep cameraservercameraserver 1294 1 21240 5632 binder_thr 00ffffe430原创 2017-06-25 17:58:41 · 2206 阅读 · 0 评论 -
抓取某个进程的fd 信息,debug相关
1、通过ps得到debug进程的pid(进程号)C:\Users\hxiong>adb rootC:\Users\hxiong>adb shellgeneric_x86_64:/ # ps | grep cameraservercameraserver 1294 1 21240 5632 binder_thr 00ffffe430 S /system/bin/camer原创 2017-06-27 20:54:00 · 3345 阅读 · 0 评论