标签:android style code color int strong
adb devices 显示adb上连接的设备
adb devices -l 会显示所连接设备更多的信息
adb connect ip地址 连接到某个地址的设备 如:adb connect 192.168.42.1 连接到ip为192.168.42.1的tablet, 而这个地址是由image的编码决定的,无法直接修改.
当连接more than one devices and emulator时 adb + 操作 需要指定某一设备 ,即 adb -s 设备名称 操作命令
如
List of devices attached
192.168.42.1:5555
device
emulator-5554 device
在这种情况下,如果想要重启
192.168.42.1:5555 , 可以 adb -s 192.168.42.1:5555 reboot
src/build/android/test_runner.py 该脚本可以指定运行的设备 -d 设备名称
adb shell 进入设备系统,可以查看文件内容
quit 退出adb shell
进入adb shell 后, /data/tombstones下可以看到adb device 运行出错日志
root@baytrail:/data/tombstones #
ls
tombstone_00
tombstone_01
tombstone_02
tombstone_03
tombstone_04
tombstone_05
tombstone_06
tombstone_07
tombstone_08
tombstone_09
查看某个日志的具体内容:
root@baytrail:/data/tombstones # cat tombstone_09
|more
*** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
***
Build fingerprint: ‘unknown‘
Revision: ‘0‘
pid: 21769, tid: 21804,
name: Thread-52161 >>> org.chromium.content_browsertests_apk
<<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr
00000001
eax 00000001 ebx e6226ff4 ecx
e6226ff4 edx f99700d0
esi e5117d88 edi
e1e79888
xcs 00000023 xds 0000002b xes
0000002b xfs 00000087 xss 0000002b
eip
e5117da1 ebp e1e79828 esp e1e797e0 flags
00210292
backtrace:
#00 pc 02115da1
/data/app-lib/org.chromium.content_browsertests_apk-1/libcontent_browsertests.so
#01 pc 02117f8f
/data/app-lib/org.chromium.content_browsertests_apk-1/libcontent_browsertests.so
#02 pc 021180ad
/data/app-lib/org.chromium.content_browsertests_apk-1/libcontent_browsertests.so
#03 pc 0059d0ae
/data/app-lib/org.chromium.content_browsertests_apk-1/libcontent_browsertests.so
#04 pc 0059cfd5
/data/app-lib/org.chromium.content_browsertests_apk-1/libcontent_browsertests.so
--more--
如上,显示出错文件在libcontent_browsertests.so,于是可以用locate查找文件位置
然后用一个貌似叫addr2line的东西,可以根据内存地址(上面红色标注的),找到对于出错的code
work serises------------adb 使用,布布扣,bubuko.com
work serises------------adb 使用
标签:android style code color int strong
原文地址:http://www.cnblogs.com/hanying/p/3713873.html