Advertisement
Guest User

CM13_real_logcat

a guest
Sep 9th, 2016
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.76 KB | None | 0 0
  1. Microsoft Windows [Version 10.0.14393]
  2. (c) 2016 Microsoft Corporation. All rights reserved.
  3.  
  4. C:\Users\Jasmine>adb boot
  5. Android Debug Bridge version 1.0.31
  6.  
  7. -a - directs adb to listen on all interfaces for a connection
  8. -d - directs command to the only connected USB device
  9. returns an error if more than one USB device is present.
  10. -e - directs command to the only running emulator.
  11. returns an error if more than one emulator is running.
  12. -s <specific device> - directs command to the device or emulator with the given
  13. serial number or qualifier. Overrides ANDROID_SERIAL
  14. environment variable.
  15. -p <product name or path> - simple product name like 'sooner', or
  16. a relative/absolute path to a product
  17. out directory like 'out/target/product/sooner'.
  18. If -p is not specified, the ANDROID_PRODUCT_OUT
  19. environment variable is used, which must
  20. be an absolute path.
  21. -H - Name of adb server host (default: localhost)
  22. -P - Port of adb server (default: 5037)
  23. devices [-l] - list all connected devices
  24. ('-l' will also list device qualifiers)
  25. connect <host>[:<port>] - connect to a device via TCP/IP
  26. Port 5555 is used by default if no port number is specified.
  27. disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
  28. Port 5555 is used by default if no port number is specified.
  29. Using this command with no additional arguments
  30. will disconnect from all connected TCP/IP devices.
  31.  
  32. device commands:
  33. adb push <local> <remote> - copy file/dir to device
  34. adb pull <remote> [<local>] - copy file/dir from device
  35. adb sync [ <directory> ] - copy host->device only if changed
  36. (-l means list but don't copy)
  37. (see 'adb help all')
  38. adb shell - run remote shell interactively
  39. adb shell <command> - run remote shell command
  40. adb emu <command> - run emulator console command
  41. adb logcat [ <filter-spec> ] - View device log
  42. adb forward --list - list all forward socket connections.
  43. the format is a list of lines with the following format:
  44. <serial> " " <local> " " <remote> "\n"
  45. adb forward <local> <remote> - forward socket connections
  46. forward specs are one of:
  47. tcp:<port>
  48. localabstract:<unix domain socket name>
  49. localreserved:<unix domain socket name>
  50. localfilesystem:<unix domain socket name>
  51. dev:<character device name>
  52. jdwp:<process pid> (remote only)
  53. adb forward --no-rebind <local> <remote>
  54. - same as 'adb forward <local> <remote>' but fails
  55. if <local> is already forwarded
  56. adb forward --remove <local> - remove a specific forward socket connection
  57. adb forward --remove-all - remove all forward socket connections
  58. adb jdwp - list PIDs of processes hosting a JDWP transport
  59. adb install [-l] [-r] [-s] [--algo <algorithm name> --key <hex-encoded key> --iv <hex-encoded iv>] <file>
  60. - push this package file to the device and install it
  61. ('-l' means forward-lock the app)
  62. ('-r' means reinstall the app, keeping its data)
  63. ('-s' means install on SD card instead of internal storage)
  64. ('--algo', '--key', and '--iv' mean the file is encrypted already)
  65. adb uninstall [-k] <package> - remove this app package from the device
  66. ('-k' means keep the data and cache directories)
  67. adb bugreport - return all information from the device
  68. that should be included in a bug report.
  69.  
  70. adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]
  71. - write an archive of the device's data to <file>.
  72. If no -f option is supplied then the data is written
  73. to "backup.ab" in the current directory.
  74. (-apk|-noapk enable/disable backup of the .apks themselves
  75. in the archive; the default is noapk.)
  76. (-obb|-noobb enable/disable backup of any installed apk expansion
  77. (aka .obb) files associated with each application; the default
  78. is noobb.)
  79. (-shared|-noshared enable/disable backup of the device's
  80. shared storage / SD card contents; the default is noshared.)
  81. (-all means to back up all installed applications)
  82. (-system|-nosystem toggles whether -all automatically includes
  83. system applications; the default is to include system apps)
  84. (<packages...> is the list of applications to be backed up. If
  85. the -all or -shared flags are passed, then the package
  86. list is optional. Applications explicitly given on the
  87. command line will be included even if -nosystem would
  88. ordinarily cause them to be omitted.)
  89.  
  90. adb restore <file> - restore device contents from the <file> backup archive
  91.  
  92. adb help - show this help message
  93. adb version - show version num
  94.  
  95. scripting:
  96. adb wait-for-device - block until device is online
  97. adb start-server - ensure that there is a server running
  98. adb kill-server - kill the server if it is running
  99. adb get-state - prints: offline | bootloader | device
  100. adb get-serialno - prints: <serial-number>
  101. adb get-devpath - prints: <device-path>
  102. adb status-window - continuously print device status for a specified device
  103. adb remount - remounts the /system partition on the device read-write
  104. adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program
  105. adb reboot-bootloader - reboots the device into the bootloader
  106. adb root - restarts the adbd daemon with root permissions
  107. adb usb - restarts the adbd daemon listening on USB
  108. adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port
  109. networking:
  110. adb ppp <tty> [parameters] - Run PPP over USB.
  111. Note: you should not automatically start a PPP connection.
  112. <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
  113. [parameters] - Eg. defaultroute debug dump local notty usepeerdns
  114.  
  115. adb sync notes: adb sync [ <directory> ]
  116. <localdir> can be interpreted in several ways:
  117.  
  118. - If <directory> is not specified, both /system and /data partitions will be updated.
  119.  
  120. - If it is "system" or "data", only the corresponding partition
  121. is updated.
  122.  
  123. environmental variables:
  124. ADB_TRACE - Print debug information. A comma separated list of the following values
  125. 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
  126. ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.
  127. ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.
  128.  
  129. C:\Users\Jasmine>adb reboot-bootloader
  130. adb server is out of date. killing...
  131. * daemon started successfully *
  132. error: device not found
  133.  
  134. C:\Users\Jasmine>adb devices
  135. List of devices attached
  136.  
  137.  
  138. C:\Users\Jasmine>android_log_tags
  139. 'android_log_tags' is not recognized as an internal or external command,
  140. operable program or batch file.
  141.  
  142. C:\Users\Jasmine>adb logcat
  143. - waiting for device -
  144. --------- beginning of main
  145. 01-01 15:14:52.366 445 445 W auditd : type=2000 audit(0.0:1): initialized
  146. --------- beginning of system
  147. 01-01 15:14:55.480 453 453 I vold : Vold 3.0 (the awakening) firing up
  148. 01-01 15:14:55.480 453 453 V vold : Detected support for: exfat ext4 f2fs ntfs vfat
  149. 01-01 15:14:55.506 455 455 I /system/bin/tzdatacheck: tzdata file /data/misc/zoneinfo/current/tzdata does not exist. No action required.
  150. 01-01 15:14:55.529 459 459 I sysinit : Running /system/etc/init.d/00banner
  151. 01-01 15:14:55.542 461 461 I cm : ____ _ _ ____ _ _ ____ ____ ____ _ _ _ _ ____ ___
  152. 01-01 15:14:55.547 462 462 I cm : | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \
  153. 01-01 15:14:55.553 463 463 I cm : |___ | | | | \| |__| |__] |___ | \| | | |__| |__/
  154. 01-01 15:14:55.571 466 466 I cm : Welcome to Android 6.0.1 / CyanogenMod-13.0-20160908-UNOFFICIAL-ailsa_ii
  155. 01-01 15:14:55.578 467 467 I sysinit : Running /system/etc/init.d/90userinit
  156. 01-01 15:14:56.060 485 485 I rmt_storage: Shared memory initialised successfully.
  157. 01-01 15:14:56.060 484 484 I irsc_util: Starting irsc tool
  158. 01-01 15:14:56.060 485 485 I rmt_storage: Registering modemst1: 0x4a /boot/modem_fs1
  159. 01-01 15:14:56.060 485 485 I rmt_storage: Registering modemst2: 0x4b /boot/modem_fs2
  160. 01-01 15:14:56.060 485 485 I rmt_storage: Registering fsc: 0xff /boot/modem_fsc
  161. 01-01 15:14:56.060 485 485 I rmt_storage: Registering fsg: 0x58 /boot/modem_fsg
  162. 01-01 15:14:56.060 485 485 I rmt_storage: 4 GPT partitions found
  163. 01-01 15:14:56.060 485 485 I rmt_storage: Capset success!
  164. 01-01 15:14:56.060 481 481 I lowmemorykiller: Using in-kernel low memory killer interface
  165. 01-01 15:14:56.062 484 484 I irsc_util: Num of entries:286
  166. 01-01 15:14:56.063 484 484 I irsc_util: Ending irsc tool
  167. 01-01 15:14:56.088 491 491 D QSEECOMD: : qseecom listener services process entry PPID = 1
  168. 01-01 15:14:56.088 491 491 E QSEECOMD: : Listener: index = 0, hierarchy = 0
  169. 01-01 15:14:56.095 488 488 I libmdmdetect: No supported ESOC's found
  170. 01-01 15:14:56.095 488 488 I libmdmdetect: slpi subsystem located
  171. 01-01 15:14:56.095 488 488 I libmdmdetect: Found internal modem: modem
  172. 01-01 15:14:56.095 488 488 I libmdmdetect: modem subsystem found
  173. 01-01 15:14:56.101 486 486 I libmdmdetect: No supported ESOC's found
  174. 01-01 15:14:56.102 486 486 I libmdmdetect: slpi subsystem located
  175. 01-01 15:14:56.102 486 486 I libmdmdetect: Found internal modem: modem
  176. 01-01 15:14:56.102 486 486 I libmdmdetect: modem subsystem found
  177. 01-01 15:14:56.106 490 490 I libmdmdetect: No supported ESOC's found
  178. 01-01 15:14:56.107 490 490 I libmdmdetect: slpi subsystem located
  179. 01-01 15:14:56.107 490 490 I libmdmdetect: Found internal modem: modem
  180. 01-01 15:14:56.107 490 490 I libmdmdetect: modem subsystem found
  181. 01-01 15:14:56.107 490 490 I libmdmdetect: No supported ESOC's found
  182. 01-01 15:14:56.110 486 486 E : The file /persist/.bt_nv.bin doesn't exist or empty or addr is random 1...
  183. 01-01 15:14:56.113 488 488 I libmdmdetect: No supported ESOC's found
  184. 01-01 15:14:56.113 488 488 I libmdmdetect: slpi subsystem located
  185. 01-01 15:14:56.113 488 488 I libmdmdetect: Found internal modem: modem
  186. 01-01 15:14:56.113 488 488 I libmdmdetect: modem subsystem found
  187. 01-01 15:14:56.114 490 490 I libmdmdetect: slpi subsystem located
  188. 01-01 15:14:56.114 490 490 I libmdmdetect: Found internal modem: modem
  189. 01-01 15:14:56.114 490 490 I libmdmdetect: modem subsystem found
  190. 01-01 15:14:56.114 490 490 I PerMgrSrv: Adding entry for modem : offTimeout : 500 ackTimeout : 200
  191. 01-01 15:14:56.114 490 490 I PerMgrSrv: Adding entry for slpi : offTimeout : 5000 ackTimeout : 200
  192. 01-01 15:14:56.117 499 499 I installd: installd firing up
  193. 01-01 15:14:56.117 499 499 D installd: Upgrading /data/media for multi-user
  194. 01-01 15:14:56.118 508 508 I tftp_server: Starting...
  195. 01-01 15:14:56.118 508 508 D tftp_server: pid=508 tid=508 tftp-server : DBG :[tftp_os_wakelocks_la.c, 203] Capset success!
  196. 01-01 15:14:56.119 490 490 I PerMgrSrv: Peripheral Mananager service start
  197. 01-01 15:14:56.119 490 490 I PerMgrSrv: power-off timeout 500,ms; event-ack timeout 200,ms; debug-mode false
  198. 01-01 15:14:56.119 490 490 I PerMgrSrv: Statistics for : modem
  199. 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Current State : is off-line
  200. 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Voter/Listener count : 0/0
  201. 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Power on count : 0
  202. 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Power off count: 0
  203. 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Client list:
  204. 01-01 15:14:56.119 490 490 I PerMgrSrv: Statistics for : slpi
  205. 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Current State : is off-line
  206. 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Voter/Listener count : 0/0
  207. 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Power on count : 0
  208. 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Power off count: 0
  209. 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Client list:
  210. 01-01 15:14:56.122 489 489 I libmdmdetect: No supported ESOC's found
  211. 01-01 15:14:56.123 489 489 I libmdmdetect: slpi subsystem located
  212. 01-01 15:14:56.123 489 489 I libmdmdetect: Found internal modem: modem
  213. 01-01 15:14:56.123 489 489 I libmdmdetect: modem subsystem found
  214. 01-01 15:14:56.126 490 528 I PerMgrSrv: QMI service start
  215. 01-01 15:14:56.128 491 491 D QSEECOMD: : Init dlopen(librpmb.so, RTLD_NOW) succeeds
  216. 01-01 15:14:56.128 491 491 D QSEECOMD: : Init::Init dlsym(g_FSHandle rpmb_init_service) succeeds
  217. 01-01 15:14:56.130 491 491 I rpmb_ufs: RPMB Mult = 16384, Rel_sec_cnt = 32
  218. 01-01 15:14:56.131 491 491 E DrmLibRpmb: rpmb_init succeeded! with ret = 0
  219. 01-01 15:14:56.131 491 491 D QSEECOMD: : Init rpmb_init_service ret = 0
  220. 01-01 15:14:56.131 491 491 D QSEECOMD: : RPMB system services: init (Listener ID = 8192)
  221. 01-01 15:14:56.131 491 491 E QSEECOMD: : Listener: index = 1, hierarchy = 0
  222. 01-01 15:14:56.134 491 491 D QSEECOMD: : Init dlopen(libssd.so, RTLD_NOW) succeeds
  223. 01-01 15:14:56.134 491 491 D QSEECOMD: : Init::Init dlsym(g_FSHandle ssd_init_service) succeeds
  224. 01-01 15:14:56.134 491 491 E SSD : ssd_init_service succeeded!
  225. 01-01 15:14:56.134 491 491 D QSEECOMD: : Init ssd_init_service ret = 0
  226. 01-01 15:14:56.134 491 491 D QSEECOMD: : SSD system services: init (Listener ID = 12288)
  227. 01-01 15:14:56.134 491 491 E QSEECOMD: : Listener: index = 2, hierarchy = 0
  228. 01-01 15:14:56.134 491 491 E QSEECOMD: : Init dlopen(libsecureui.so, RLTD_NOW) is failed....
  229. 01-01 15:14:56.134 491 491 D QSEECOMD: : SEC_UI_INIT failed, shall not start secure ui listener
  230. 01-01 15:14:56.135 491 491 D QSEECOMD: : Parent qseecom daemon process paused!!
  231. 01-01 15:14:56.139 508 508 D tftp_server: pid=508 tid=508 tftp-server : DBG :[tftp_server.c, 594] Server waiting for client-connection.
  232. 01-01 15:14:56.147 507 507 I libmdmdetect: No supported ESOC's found
  233. 01-01 15:14:56.147 507 507 I libmdmdetect: slpi subsystem located
  234. 01-01 15:14:56.147 507 507 I libmdmdetect: Found internal modem: modem
  235. 01-01 15:14:56.148 507 507 I libmdmdetect: modem subsystem found
  236. 01-01 15:14:56.148 507 507 E QCNEA : Cne Version 4.9
  237. 01-01 15:14:56.161 515 515 E adsprpc : vendor/qcom/proprietary/adsprpc/src/adsprpcd.c:26:adsp daemon starting
  238. 01-01 15:14:56.168 535 535 D QSEECOMD: : qseecom listener service threads starting!!!
  239. 01-01 15:14:56.169 535 535 D QSEECOMD: : Total listener services to start = 8
  240. 01-01 15:14:56.169 535 535 E QSEECOMD: : Listener: index = 0, hierarchy = 1
  241. 01-01 15:14:56.169 535 535 D QSEECOMD: : Init dlopen(librpmb.so, RTLD_NOW) succeeds
  242. 01-01 15:14:56.169 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle rpmb_start) succeeds
  243. 01-01 15:14:56.169 535 535 D QSEECOMAPI: QSEECom_register_listener 8192 sb_length = 0x5000
  244. 01-01 15:14:56.169 535 535 D QSEECOMD: : Init rpmb_start ret = 0
  245. 01-01 15:14:56.170 535 535 D QSEECOMD: : RPMB system services: Started (Listener ID = 8192)
  246. 01-01 15:14:56.170 535 535 E QSEECOMD: : Listener: index = 1, hierarchy = 1
  247. 01-01 15:14:56.170 535 535 D QSEECOMD: : Init dlopen(libssd.so, RTLD_NOW) succeeds
  248. 01-01 15:14:56.170 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle ssd_start) succeeds
  249. 01-01 15:14:56.170 535 535 D QSEECOMAPI: QSEECom_register_listener 12288 sb_length = 0x5000
  250. 01-01 15:14:56.170 535 535 D QSEECOMD: : Init ssd_start ret = 0
  251. 01-01 15:14:56.170 535 535 D QSEECOMD: : SSD system services: Started (Listener ID = 12288)
  252. 01-01 15:14:56.170 535 535 E QSEECOMD: : Listener: index = 2, hierarchy = 1
  253. 01-01 15:14:56.170 535 535 E QSEECOMD: : Init dlopen(libsecureui.so, RLTD_NOW) is failed....
  254. 01-01 15:14:56.170 535 535 E QSEECOMD: : Listener: index = 3, hierarchy = 1
  255. 01-01 15:14:56.172 494 494 I DEBUG : debuggerd: starting
  256. 01-01 15:14:56.174 483 483 I SurfaceFlinger: SurfaceFlinger is starting
  257. 01-01 15:14:56.177 483 483 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
  258. 01-01 15:14:56.179 535 535 D QSEECOMD: : Init dlopen(libdrmtime.so, RTLD_NOW) succeeds
  259. 01-01 15:14:56.179 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle atime_start) succeeds
  260. 01-01 15:14:56.179 535 535 D DrmLibTime: QSEE Time Listener: atime_start
  261. 01-01 15:14:56.179 535 535 D QSEECOMAPI: QSEECom_register_listener 11 sb_length = 0x5000
  262. 01-01 15:14:56.182 495 495 I DEBUG : debuggerd: starting
  263. 01-01 15:14:56.182 535 535 D DrmLibTime: registering fs service to QSEECom is done!
  264. 01-01 15:14:56.182 535 535 D DrmLibTime: begin to create a thread!
  265. 01-01 15:14:56.182 535 535 D DrmLibTime: Creating a pthread in atime_start is done! return 0
  266. 01-01 15:14:56.182 535 535 D QSEECOMD: : Init atime_start ret = 0
  267. 01-01 15:14:56.182 535 535 D QSEECOMD: : time services: Started (Listener ID = 11)
  268. 01-01 15:14:56.182 535 535 E QSEECOMD: : Listener: index = 4, hierarchy = 1
  269. 01-01 15:14:56.182 535 535 D QSEECOMD: : Init dlopen(libdrmfs.so, RTLD_NOW) succeeds
  270. 01-01 15:14:56.182 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle fs_start) succeeds
  271. 01-01 15:14:56.182 535 535 D QSEECOMAPI: QSEECom_register_listener 10 sb_length = 0x5000
  272. 01-01 15:14:56.183 535 535 D QSEECOMD: : Init fs_start ret = 0
  273. 01-01 15:14:56.183 535 535 D QSEECOMD: : file system services: Started (Listener ID = 10)
  274. 01-01 15:14:56.184 535 535 E QSEECOMD: : Listener: index = 5, hierarchy = 1
  275. 01-01 15:14:56.184 535 535 D QSEECOMD: : Init dlopen(libdrmfs.so, RTLD_NOW) succeeds
  276. 01-01 15:14:56.184 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle gpfs_start) succeeds
  277. 01-01 15:14:56.184 535 535 D QSEECOMAPI: QSEECom_register_listener 28672 sb_length = 0x7e000
  278. 01-01 15:14:56.189 535 535 D QSEECOMD: : Init gpfs_start ret = 0
  279. 01-01 15:14:56.189 535 535 D QSEECOMD: : gpfile system services: Started (Listener ID = 28672)
  280. 01-01 15:14:56.189 535 535 E QSEECOMD: : Listener: index = 6, hierarchy = 1
  281. 01-01 15:14:56.189 535 549 D DrmLibTime: QSEE Time Listener: dispatch
  282. 01-01 15:14:56.189 535 549 D DrmLibTime: before calling ioctl to read the next time_cmd
  283. 01-01 15:14:56.192 535 535 D QSEECOMD: : Init dlopen(libqisl.so, RTLD_NOW) succeeds
  284. 01-01 15:14:56.192 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle qisl_start) succeeds
  285. 01-01 15:14:56.192 535 552 I QISL : QSEE Interrupt Service Listener Thread is started
  286. 01-01 15:14:56.192 515 515 E adsprpc : vendor/qcom/proprietary/adsprpc/src/adsp_default_listener.c:28:adsp_default_listener_start started
  287. 01-01 15:14:56.192 535 552 D QSEECOMAPI: QSEECom_register_listener 36864 sb_length = 0x1f4
  288. 01-01 15:14:56.192 535 552 I QISL : QSEE Interrupt Service Listener was activated successfully
  289. 01-01 15:14:56.192 535 535 D QSEECOMD: : Init qisl_start ret = 0
  290. 01-01 15:14:56.193 535 535 D QSEECOMD: : interrupt services: Started (Listener ID = 36864)
  291. 01-01 15:14:56.193 535 535 E QSEECOMD: : Listener: index = 7, hierarchy = 1
  292. 01-01 15:14:56.193 493 493 I Netd : Netd 1.0 starting
  293. 01-01 15:14:56.194 499 499 I SELinux : SELinux: Loaded file_contexts contexts from /file_contexts.
  294. 01-01 15:14:56.195 499 499 D installd: Upgrading to shared /data/media/obb
  295. 01-01 15:14:56.197 536 536 I qcom-bluetooth: /system/etc/init.qcom.bt.sh: init.qcom.bt.sh config = onboot
  296. 01-01 15:14:56.198 535 535 D QSEECOMD: : Init dlopen(libGPreqcancel.so, RTLD_NOW) succeeds
  297. 01-01 15:14:56.198 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle gp_reqcancel_start) succeeds
  298. 01-01 15:14:56.198 535 535 D QSEECOMAPI: QSEECom_register_listener 4352 sb_length = 0x5000
  299. 01-01 15:14:56.202 493 493 D QtiConnectivityAdapter: Successfully loaded libconnectivitycontroller
  300. 01-01 15:14:56.202 493 493 D : initConnectivityController cons
  301. 01-01 15:14:56.202 493 493 D ConnectivityController: QtiTetherCommand cons done
  302. 01-01 15:14:56.202 493 493 I libconnctrl: Creating a NetlinkRelay
  303. 01-01 15:14:56.202 493 493 I libconnctrl: NetlinkRelay constructor
  304. 01-01 15:14:56.202 493 493 D TetherController: Setting IP forward enable = 0
  305. 01-01 15:14:56.210 512 512 I libmdmdetect: No supported ESOC's found
  306. 01-01 15:14:56.210 512 512 I libmdmdetect: slpi subsystem located
  307. 01-01 15:14:56.210 512 512 I libmdmdetect: Found internal modem: modem
  308. 01-01 15:14:56.210 512 512 I libmdmdetect: modem subsystem found
  309. 01-01 15:14:56.223 535 535 D QSEECOMD: : Init gp_reqcancel_start ret = 0
  310. 01-01 15:14:56.223 535 535 D QSEECOMD: : gp request cancellation services: Started (Listener ID = 4352)
  311. 01-01 15:14:56.225 514 514 I libmdmdetect: No supported ESOC's found
  312. 01-01 15:14:56.225 514 514 I libmdmdetect: slpi subsystem located
  313. 01-01 15:14:56.225 514 514 I libmdmdetect: Found internal modem: modem
  314. 01-01 15:14:56.225 514 514 I libmdmdetect: modem subsystem found
  315. 01-01 15:14:56.225 514 514 I ThermalEngine: Thermal daemon started
  316. 01-01 15:14:56.225 516 516 I libmdmdetect: No supported ESOC's found
  317. 01-01 15:14:56.226 516 516 I libmdmdetect: slpi subsystem located
  318. 01-01 15:14:56.226 516 516 I libmdmdetect: Found internal modem: modem
  319. 01-01 15:14:56.226 516 516 I libmdmdetect: modem subsystem found
  320. 01-01 15:14:56.228 499 499 D installd: Upgrading to /data/misc/user directories
  321. 01-01 15:14:56.229 514 514 I ThermalEngine: No target config file, falling back to '/system/etc/thermal-engine-zte.conf'
  322. 01-01 15:14:56.229 514 514 I ThermalEngine: devices_manager_init: Init
  323. 01-01 15:14:56.229 514 514 I ThermalEngine: Number of gpus :1
  324. 01-01 15:14:56.229 514 514 I Thermal-IOCTL: KTM IOCTL interface "/dev/msm_thermal_query" opened
  325. 01-01 15:14:56.229 514 514 E ThermalEngine: update_cpu_topology: Cluster Info[0]. Cluster Id: 0 cpu_bits:0x3 sync:1
  326. 01-01 15:14:56.229 514 514 E ThermalEngine: update_cpu_topology: Cluster Info[1]. Cluster Id: 1 cpu_bits:0xc sync:1
  327. 01-01 15:14:56.229 514 514 E ThermalEngine: adding voltage device
  328. 01-01 15:14:56.229 514 514 I ThermalEngine: vdd_rstr_init: Init KTM VDD RSTR enabled: 0
  329. 01-01 15:14:56.230 514 514 I ThermalEngine: cpr_band_init: Could not read /sys/module/msm_thermal/cpr_band/curr_cpr_band
  330. 01-01 15:14:56.230 514 514 I ThermalEngine: sensors_manager_init: Init
  331. --------- beginning of crash
  332. 01-01 15:14:56.241 563 563 F libc : page record for 0x7fb4872020 was not found (block_size=16)
  333. 01-01 15:14:56.241 501 501 I keystore: Found keymaster1 module Keymaster QTI HAL, version 100
  334. 01-01 15:14:56.241 501 501 I SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 122: Creating device
  335. 01-01 15:14:56.241 501 501 D SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 123: Device address: 0x7fac3a3000
  336. 01-01 15:14:56.251 516 516 E Diag_Lib: qpLogDiagInit <== result : 1
  337. 01-01 15:14:56.251 516 516 E Diag_Lib: QMID : gIsQXDMDisabled 0, gIsADBDisabled 1, gIsDebugDisabled 0, gIsIMSLogsDisabled 0
  338. 01-01 15:14:56.254 483 483 D libEGL : loaded /vendor/lib64/egl/libEGL_adreno.so
  339. 01-01 15:14:56.289 514 514 E ThermalEngine: bcl_setup: Error opening /sys/devices/soc/soc:qcom,bcl/iavail
  340. 01-01 15:14:56.289 514 514 E ThermalEngine: add_tgt_sensors_set: Error adding bcl
  341. 01-01 15:14:56.289 514 514 E ThermalEngine: sensors_init: Error adding BCL TS
  342. 01-01 15:14:56.290 514 581 I libmdmdetect: No supported ESOC's found
  343. 01-01 15:14:56.290 548 548 I libmdmdetect: No supported ESOC's found
  344. 01-01 15:14:56.290 514 581 I libmdmdetect: slpi subsystem located
  345. 01-01 15:14:56.290 514 581 I libmdmdetect: Found internal modem: modem
  346. 01-01 15:14:56.290 514 581 I libmdmdetect: modem subsystem found
  347. 01-01 15:14:56.290 548 548 I libmdmdetect: slpi subsystem located
  348. 01-01 15:14:56.290 548 548 I libmdmdetect: Found internal modem: modem
  349. 01-01 15:14:56.291 548 548 I libmdmdetect: modem subsystem found
  350. 01-01 15:14:56.291 512 512 I libmdmdetect: No supported ESOC's found
  351. 01-01 15:14:56.291 512 512 I libmdmdetect: slpi subsystem located
  352. 01-01 15:14:56.291 512 512 I libmdmdetect: Found internal modem: modem
  353. 01-01 15:14:56.291 512 512 I libmdmdetect: modem subsystem found
  354. 01-01 15:14:56.291 509 509 I libmdmdetect: No supported ESOC's found
  355. 01-01 15:14:56.292 509 509 I libmdmdetect: slpi subsystem located
  356. 01-01 15:14:56.292 509 509 I libmdmdetect: Found internal modem: modem
  357. 01-01 15:14:56.292 509 509 I libmdmdetect: modem subsystem found
  358. 01-01 15:14:56.294 546 546 I perfprofd: starting Android Wide Profiling daemon
  359. 01-01 15:14:56.294 546 546 E perfprofd: unable to open configuration file /data/data/com.google.android.gms/files/perfprofd.conf
  360. 01-01 15:14:56.295 546 546 I perfprofd: random seed set to 480930544
  361. 01-01 15:14:56.304 514 514 I ThermalEngine: Loading config file for virtual sensor
  362. 01-01 15:14:56.304 514 514 I ThermalEngine: Loading configuration file /system/etc/thermal-engine-zte.conf
  363. 01-01 15:14:56.304 514 514 E ThermalEngine: Unable to open config file '/system/etc/thermal-engine-zte.conf'
  364. 01-01 15:14:56.304 514 514 I ThermalEngine: [VIRTUAL-CPUS]
  365. 01-01 15:14:56.304 514 514 I ThermalEngine: #algo_type virtual
  366. 01-01 15:14:56.304 514 514 I ThermalEngine: trip_sensor tsens_tz_sensor11
  367. 01-01 15:14:56.304 514 514 I ThermalEngine: set_point 75000
  368. 01-01 15:14:56.304 514 514 I ThermalEngine: set_point_clr 65000
  369. 01-01 15:14:56.304 514 514 I ThermalEngine: sensors tsens_tz_sensor4 tsens_tz_sensor6 tsens_tz_sensor9 tsens_tz_sensor11
  370. 01-01 15:14:56.305 514 514 I ThermalEngine: weights
  371. 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 10
  372. 01-01 15:14:56.305 514 514 I ThermalEngine: math 2
  373. 01-01 15:14:56.305 514 514 I ThermalEngine: Loading configuration file /system/etc/thermal-engine-zte.conf
  374. 01-01 15:14:56.305 514 514 E ThermalEngine: Unable to open config file '/system/etc/thermal-engine-zte.conf'
  375. 01-01 15:14:56.305 514 514 I ThermalEngine: [PMIC-ALARM-MONITOR]
  376. 01-01 15:14:56.305 514 514 I ThermalEngine: #algo_type monitor
  377. 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 1000
  378. 01-01 15:14:56.305 514 514 I ThermalEngine: sensor pm8994_tz
  379. 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds 107000 127000
  380. 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds_clr 103000 123000
  381. 01-01 15:14:56.305 514 514 I ThermalEngine: actions hotplug_3+hotplug_2+hotplug_1+cluster1+cluster0 hotplug_3+hotplug_2+hotplug_1
  382. 01-01 15:14:56.305 514 514 I ThermalEngine: action_info 0+0+0+302400+302400 1+1+1
  383. 01-01 15:14:56.305 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS20]
  384. 01-01 15:14:56.305 514 514 I ThermalEngine: #algo_type monitor
  385. 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 1000
  386. 01-01 15:14:56.305 514 514 I ThermalEngine: sensor tsens_tz_sensor20
  387. 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds 5000
  388. 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds_clr 10000
  389. 01-01 15:14:56.305 514 514 I ThermalEngine: actions vdd_restriction
  390. 01-01 15:14:56.305 514 514 I ThermalEngine: action_info 1
  391. 01-01 15:14:56.305 514 514 I ThermalEngine: descending
  392. 01-01 15:14:56.305 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS19]
  393. 01-01 15:14:56.305 514 514 I ThermalEngine: #algo_type monitor
  394. 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 1000
  395. 01-01 15:14:56.305 514 514 I ThermalEngine: sensor tsens_tz_sensor19
  396. 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds 5000
  397. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
  398. 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
  399. 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
  400. 01-01 15:14:56.306 514 514 I ThermalEngine: descending
  401. 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS18]
  402. 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
  403. 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
  404. 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor18
  405. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
  406. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
  407. 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
  408. 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
  409. 01-01 15:14:56.306 514 514 I ThermalEngine: descending
  410. 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS17]
  411. 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
  412. 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
  413. 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor17
  414. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
  415. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
  416. 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
  417. 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
  418. 01-01 15:14:56.306 514 514 I ThermalEngine: descending
  419. 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS16]
  420. 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
  421. 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
  422. 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor16
  423. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
  424. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
  425. 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
  426. 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
  427. 01-01 15:14:56.306 514 514 I ThermalEngine: descending
  428. 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS15]
  429. 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
  430. 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
  431. 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor15
  432. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
  433. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
  434. 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
  435. 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
  436. 01-01 15:14:56.306 514 514 I ThermalEngine: descending
  437. 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS14]
  438. 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
  439. 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
  440. 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor14
  441. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
  442. 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
  443. 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
  444. 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
  445. 01-01 15:14:56.306 514 514 I ThermalEngine: descending
  446. 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS13]
  447. 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
  448. 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
  449. 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor13
  450. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
  451. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
  452. 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
  453. 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
  454. 01-01 15:14:56.307 514 514 I ThermalEngine: descending
  455. 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS12]
  456. 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
  457. 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
  458. 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor12
  459. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
  460. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
  461. 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
  462. 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
  463. 01-01 15:14:56.307 514 514 I ThermalEngine: descending
  464. 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS11]
  465. 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
  466. 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
  467. 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor11
  468. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
  469. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
  470. 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
  471. 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
  472. 01-01 15:14:56.307 514 514 I ThermalEngine: descending
  473. 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS10]
  474. 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
  475. 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
  476. 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor10
  477. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
  478. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
  479. 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
  480. 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
  481. 01-01 15:14:56.307 514 514 I ThermalEngine: descending
  482. 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS9]
  483. 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
  484. 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
  485. 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor9
  486. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
  487. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
  488. 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
  489. 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
  490. 01-01 15:14:56.307 514 514 I ThermalEngine: descending
  491. 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS8]
  492. 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
  493. 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
  494. 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor8
  495. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
  496. 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
  497. 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
  498. 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
  499. 01-01 15:14:56.307 514 514 I ThermalEngine: descending
  500. 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS7]
  501. 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
  502. 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
  503. 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor7
  504. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
  505. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
  506. 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
  507. 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
  508. 01-01 15:14:56.308 514 514 I ThermalEngine: descending
  509. 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS6]
  510. 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
  511. 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
  512. 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor6
  513. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
  514. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
  515. 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
  516. 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
  517. 01-01 15:14:56.308 514 514 I ThermalEngine: descending
  518. 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS5]
  519. 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
  520. 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
  521. 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor5
  522. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
  523. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
  524. 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
  525. 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
  526. 01-01 15:14:56.308 514 514 I ThermalEngine: descending
  527. 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS4]
  528. 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
  529. 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
  530. 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor4
  531. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
  532. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
  533. 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
  534. 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
  535. 01-01 15:14:56.308 514 514 I ThermalEngine: descending
  536. 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS3]
  537. 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
  538. 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
  539. 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor3
  540. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
  541. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
  542. 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
  543. 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
  544. 01-01 15:14:56.308 514 514 I ThermalEngine: descending
  545. 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS2]
  546. 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
  547. 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
  548. 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor2
  549. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
  550. 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
  551. 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
  552. 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
  553. 01-01 15:14:56.309 514 514 I ThermalEngine: descending
  554. 01-01 15:14:56.309 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS1]
  555. 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
  556. 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
  557. 01-01 15:14:56.309 514 514 I ThermalEngine: sensor tsens_tz_sensor1
  558. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 5000
  559. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 10000
  560. 01-01 15:14:56.309 514 514 I ThermalEngine: actions vdd_restriction
  561. 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1
  562. 01-01 15:14:56.309 514 514 I ThermalEngine: descending
  563. 01-01 15:14:56.309 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS0]
  564. 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
  565. 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
  566. 01-01 15:14:56.309 514 514 I ThermalEngine: sensor tsens_tz_sensor0
  567. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 5000
  568. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 10000
  569. 01-01 15:14:56.309 514 514 I ThermalEngine: actions vdd_restriction
  570. 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1
  571. 01-01 15:14:56.309 514 514 I ThermalEngine: descending
  572. 01-01 15:14:56.309 514 514 I ThermalEngine: [SKIN_CHG_LIMIT]
  573. 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
  574. 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
  575. 01-01 15:14:56.309 514 514 I ThermalEngine: sensor emmc_therm
  576. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 42000
  577. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 40000
  578. 01-01 15:14:56.309 514 514 I ThermalEngine: actions battery
  579. 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1
  580. 01-01 15:14:56.309 514 514 I ThermalEngine: [SKIN_CPU_MONITOR]
  581. 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
  582. 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
  583. 01-01 15:14:56.309 514 514 I ThermalEngine: sensor emmc_therm
  584. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 40000 41000 42000
  585. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 38000 39000 40000
  586. 01-01 15:14:56.309 514 514 I ThermalEngine: actions cluster0+cluster1 cluster0+cluster1 cluster0+cluster1
  587. 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1500000+1700000 1300000+1400000 1100000+1100000
  588. 01-01 15:14:56.309 514 514 I ThermalEngine: override 5000
  589. 01-01 15:14:56.309 514 514 I ThermalEngine: [SKIN_GPU_MONITOR]
  590. 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
  591. 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
  592. 01-01 15:14:56.309 514 514 I ThermalEngine: sensor emmc_therm
  593. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 41000 42000
  594. 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 39000 40000
  595. 01-01 15:14:56.309 514 514 I ThermalEngine: actions gpu gpu
  596. 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 510000000 315000000
  597. 01-01 15:14:56.309 514 514 I ThermalEngine: override 5000
  598. 01-01 15:14:56.310 514 514 I ThermalEngine: [SS-GPU]
  599. 01-01 15:14:56.310 514 514 I ThermalEngine: #algo_type ss
  600. 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 250
  601. 01-01 15:14:56.310 514 514 I ThermalEngine: sensor gpu
  602. 01-01 15:14:56.310 514 514 I ThermalEngine: device gpu
  603. 01-01 15:14:56.310 514 514 I ThermalEngine: set_point 95000
  604. 01-01 15:14:56.310 514 514 I ThermalEngine: set_point_clr 65000
  605. 01-01 15:14:56.310 514 514 I ThermalEngine: time_constant 0
  606. 01-01 15:14:56.310 514 514 I ThermalEngine: [SS-POPMEM]
  607. 01-01 15:14:56.310 514 514 I ThermalEngine: #algo_type ss
  608. 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 10
  609. 01-01 15:14:56.310 514 514 I ThermalEngine: sensor pop_mem
  610. 01-01 15:14:56.310 514 514 I ThermalEngine: device cluster1
  611. 01-01 15:14:56.310 514 514 I ThermalEngine: set_point 95000
  612. 01-01 15:14:56.310 514 514 I ThermalEngine: set_point_clr 65000
  613. 01-01 15:14:56.310 514 514 I ThermalEngine: time_constant 16
  614. 01-01 15:14:56.310 514 514 I ThermalEngine: [SS-CPUS-ALL]
  615. 01-01 15:14:56.310 514 514 I ThermalEngine: #algo_type ss
  616. 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 10
  617. 01-01 15:14:56.310 514 514 I ThermalEngine: sensor VIRTUAL-CPUS
  618. 01-01 15:14:56.310 514 514 I ThermalEngine: device cpu_voltage
  619. 01-01 15:14:56.310 514 514 I ThermalEngine: set_point 95000
  620. 01-01 15:14:56.310 514 514 I ThermalEngine: set_point_clr 65000
  621. 01-01 15:14:56.310 514 514 I ThermalEngine: time_constant 0
  622. 01-01 15:14:56.310 514 514 I ThermalEngine: [SPEAKER-CAL]
  623. 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 30000 30000 10 1800000
  624. 01-01 15:14:56.310 514 514 I ThermalEngine: sensor pm8994_tz
  625. 01-01 15:14:56.310 514 514 I ThermalEngine: sensors tsens_tz_sensor1 tsens_tz_sensor2 tsens_tz_sensor13 tsens_tz_sensor14 tsens_tz_sensor15
  626. 01-01 15:14:56.310 514 514 I ThermalEngine: temp_range 6000 10000 2000
  627. 01-01 15:14:56.310 514 514 I ThermalEngine: max_temp 45000
  628. 01-01 15:14:56.310 514 514 I ThermalEngine: offset -4000
  629. 01-01 15:14:56.311 568 568 F libc : page record for 0x7f8b21f020 was not found (block_size=16)
  630. 01-01 15:14:56.325 548 659 I libmdmdetect: No supported ESOC's found
  631. 01-01 15:14:56.326 548 659 I libmdmdetect: slpi subsystem located
  632. 01-01 15:14:56.326 548 659 I libmdmdetect: Found internal modem: modem
  633. 01-01 15:14:56.326 548 659 I libmdmdetect: modem subsystem found
  634. 01-01 15:14:56.333 535 535 D QSEECOMAPI: QSEECom_get_handle sb_length = 0x400
  635. 01-01 15:14:56.333 514 666 I ThermalEngine: vdd_restrict_qmi_request: MODEM req level(0) is recorded and waiting for completing QMI registration
  636. 01-01 15:14:56.333 514 666 I ThermalEngine: vdd_restrict_qmi_request: ADSP req level(0) is recorded and waiting for completing QMI registration
  637. 01-01 15:14:56.333 514 666 I ThermalEngine: hotplug_ktm_disable_cb: write out 0
  638. 01-01 15:14:56.334 535 535 D QSEECOMAPI: App is not loaded in QSEE
  639. 01-01 15:14:56.334 535 535 E QSEECOMAPI: Error::Cannot open the file /firmware/image/keymaste.mdt errno = 2
  640. 01-01 15:14:56.334 535 535 E QSEECOMAPI: Error::Loading image failed with ret = -1
  641. 01-01 15:14:56.334 535 535 D QSEECOMAPI: QSEECom_get_handle sb_length = 0x400
  642. 01-01 15:14:56.334 535 535 D QSEECOMAPI: App is already loaded QSEE and app id = 4
  643. 01-01 15:14:56.349 548 659 E QMI_FW : QMUXD: WARNING qmi_qmux_if_pwr_up_init failed! rc=-1
  644. 01-02 06:29:46.346 445 445 I auditd : type=1403 audit(0.0:2): policy loaded auid=4294967295 ses=4294967295
  645. 01-02 06:29:46.886 433 433 I e2fsck : type=1400 audit(0.0:3): avc: denied { read } for name="sda9" dev="tmpfs" ino=1755 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=1
  646. 01-02 06:29:46.886 433 433 I e2fsck : type=1400 audit(0.0:4): avc: denied { open } for path="/dev/block/sda9" dev="tmpfs" ino=1755 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=1
  647. 01-02 06:29:46.886 433 433 I e2fsck : type=1400 audit(0.0:5): avc: denied { write } for name="sda9" dev="tmpfs" ino=1755 scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=1
  648. 01-02 06:29:46.886 433 433 I e2fsck : type=1400 audit(0.0:6): avc: denied { ioctl } for path="/dev/block/sda9" dev="tmpfs" ino=1755 ioctlcmd=127c scontext=u:r:fsck:s0 tcontext=u:object_r:block_device:s0 tclass=blk_file permissive=1
  649. 01-02 06:29:47.826 568 568 I init : type=1400 audit(0.0:7): avc: denied { execute_no_trans } for path="/system/bin/modemservice" dev="sde13" ino=351 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=file permissive=1
  650. 01-01 02:32:10.984 569 569 I gx_fpd : type=1400 audit(0.0:8): avc: denied { call } for scontext=u:r:init:s0 tcontext=u:r:servicemanager:s0 tclass=binder permissive=1
  651. 01-01 02:32:11.034 1 1 I init : type=1400 audit(0.0:9): avc: denied { write } for name="interactive" dev="sysfs" ino=46562 scontext=u:r:init:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=1
  652. 01-01 02:32:11.074 570 570 I fingerprintd_gx: type=1400 audit(0.0:10): avc: denied { transfer } for scontext=u:r:init:s0 tcontext=u:r:servicemanager:s0 tclass=binder permissive=1
  653. 01-01 02:32:11.074 569 569 I gx_fpd : type=1400 audit(0.0:11): avc: denied { write } for name="qseecom" dev="tmpfs" ino=17428 scontext=u:r:init:s0 tcontext=u:object_r:tee_device:s0 tclass=chr_file permissive=1
  654. 01-01 02:32:11.074 569 569 I gx_fpd : type=1400 audit(0.0:12): avc: denied { ioctl } for path="/dev/qseecom" dev="tmpfs" ino=17428 ioctlcmd=970a scontext=u:r:init:s0 tcontext=u:object_r:tee_device:s0 tclass=chr_file permissive=1
  655. 01-01 02:32:11.074 482 482 I servicemanager: type=1400 audit(0.0:13): avc: denied { search } for name="570" dev="proc" ino=641 scontext=u:r:servicemanager:s0 tcontext=u:r:init:s0 tclass=dir permissive=1
  656. 01-01 02:32:11.074 482 482 I servicemanager: type=1400 audit(0.0:14): avc: denied { read } for name="current" dev="proc" ino=19440 scontext=u:r:servicemanager:s0 tcontext=u:r:init:s0 tclass=file permissive=1
  657. 01-01 02:32:11.074 482 482 I servicemanager: type=1400 audit(0.0:15): avc: denied { open } for path="/proc/570/attr/current" dev="proc" ino=19440 scontext=u:r:servicemanager:s0 tcontext=u:r:init:s0 tclass=file permissive=1
  658. 01-01 02:32:11.074 482 482 I servicemanager: type=1400 audit(0.0:16): avc: denied { getattr } for scontext=u:r:servicemanager:s0 tcontext=u:r:init:s0 tclass=process permissive=1
  659. 01-01 02:32:11.184 482 482 I servicemanager: type=1400 audit(0.0:17): avc: denied { search } for name="571" dev="proc" ino=16647 scontext=u:r:servicemanager:s0 tcontext=u:r:init:s0 tclass=dir permissive=1
  660. 01-01 02:32:11.344 550 550 I qseecomd: type=1400 audit(0.0:18): avc: denied { remove_name } for name="gxfeature_table" dev="sda9" ino=1736717 scontext=u:r:tee:s0 tcontext=u:object_r:system_data_file:s0 tclass=dir permissive=1
  661. 01-01 02:32:11.344 550 550 I qseecomd: type=1400 audit(0.0:19): avc: denied { unlink } for name="gxfeature_table" dev="sda9" ino=1736717 scontext=u:r:tee:s0 tcontext=u:object_r:system_data_file:s0 tclass=file permissive=1
  662. 01-01 02:32:11.622 690 690 I Dpps : static DppsServer *DppsServer::GetInstance(): DppsServer ref count increased to 1
  663. 01-01 02:32:11.623 690 690 I Dpps : AbaContext():18 ABA context instantiation
  664. 01-01 02:32:11.623 690 690 I Dpps : AmbientLightContext():17 AL context instantiation
  665. 01-01 02:32:11.623 690 690 I Dpps : InitFeatureContext():171 Initialize feature context
  666. 01-01 02:32:11.623 690 690 I Dpps : InitFeatureContext():203 ABA context is not enabled
  667. 01-01 02:32:11.623 690 690 I Dpps : InitContext():69 display_fd 5, panel 1, sensor type 2 display_type 0
  668. 01-01 02:32:11.623 690 690 I Dpps : OpenCommonSysfsFds():341 lcd_bl_event_fd_ is 8
  669. 01-01 02:32:11.623 690 690 I Dpps : OpenCommonSysfsFds():350 blank_event_fd_ is 9
  670. 01-01 02:32:11.623 690 690 I Dpps : OpenCommonSysfsFds():358 lcd_brightness_fd_ is 11
  671. 01-01 02:32:11.624 690 690 I Dpps : SelectLightSensor():468 sensor_type 2
  672. 01-01 02:32:11.624 690 690 I Dpps : SelectLightSensor():471 sensor_type_ 2
  673. 01-01 02:32:11.624 690 690 I Dpps : InitLightSensor():503 sensor_type_ 2
  674. 01-01 02:32:11.624 690 690 I Dpps : InitLightSensor():524 light sensor initialization ret 0
  675. 01-01 02:32:11.624 690 690 I Dpps : CreateAmbientLightThread():141 Create AL thread
  676. 01-01 02:32:11.624 690 690 I Dpps : CreateAmbientLightThread():160 Create AL thread done ret 0
  677. 01-01 02:32:11.624 690 690 I Dpps : InitFeatureContext():223 Initialize feature context done ret 0
  678. 01-01 02:32:11.625 690 922 I Dpps : ProcessAmbientLightThread():98 AL thread execution started
  679. 01-01 02:32:11.625 690 921 I Dpps : PollThreadLoop():111 Getting manager and light sensor instance
  680. 01-01 02:32:11.634 690 921 I ServiceManager: Waiting for service permission...
  681. 01-01 02:32:11.641 483 483 I SDM : ExtensionInterface::CreateExtensionInterface:
  682. 01-01 02:32:11.641 483 483 I SDM : SDM-EXTENSION Version: Date: 07/16/16, Commit: a54089c, Change: I9ac9d238cb
  683. 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: SDE Version = 500, SDE Revision = 10070002, RGB = 4, VIG = 4, DMA = 2, Cursor = 2
  684. 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: Upscale Ratio = 20, Downscale Ratio = 4, Blending Stages = 7
  685. 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: BWC = 0, UBWC = 1, Decimation = 1, Tile Format = 0
  686. 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: SourceSplit = 1
  687. 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: MaxLowBw = 9600000 , MaxHighBw = 9600000
  688. 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: MaxPipeBw = 4500000 KBps, MaxSDEClock = 412500000 Hz, ClockFudgeFactor = 1.050000
  689. 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: Prefill factors: Tiled_NV12 = 8, Tiled = 4, Linear = 1, Scale = 1, Fudge_factor = 2
  690. 01-01 02:32:11.643 483 483 I SDM : HWInfo::GetHWResourceInfo: ROTATOR = 2, Rotator Downscale = 1
  691. 01-01 02:32:11.645 483 483 I SDM
  692. C:\Users\Jasmine>ccE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement