Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Microsoft Windows [Version 10.0.14393]
- (c) 2016 Microsoft Corporation. All rights reserved.
- C:\Users\Jasmine>adb boot
- Android Debug Bridge version 1.0.31
- -a - directs adb to listen on all interfaces for a connection
- -d - directs command to the only connected USB device
- returns an error if more than one USB device is present.
- -e - directs command to the only running emulator.
- returns an error if more than one emulator is running.
- -s <specific device> - directs command to the device or emulator with the given
- serial number or qualifier. Overrides ANDROID_SERIAL
- environment variable.
- -p <product name or path> - simple product name like 'sooner', or
- a relative/absolute path to a product
- out directory like 'out/target/product/sooner'.
- If -p is not specified, the ANDROID_PRODUCT_OUT
- environment variable is used, which must
- be an absolute path.
- -H - Name of adb server host (default: localhost)
- -P - Port of adb server (default: 5037)
- devices [-l] - list all connected devices
- ('-l' will also list device qualifiers)
- connect <host>[:<port>] - connect to a device via TCP/IP
- Port 5555 is used by default if no port number is specified.
- disconnect [<host>[:<port>]] - disconnect from a TCP/IP device.
- Port 5555 is used by default if no port number is specified.
- Using this command with no additional arguments
- will disconnect from all connected TCP/IP devices.
- device commands:
- adb push <local> <remote> - copy file/dir to device
- adb pull <remote> [<local>] - copy file/dir from device
- adb sync [ <directory> ] - copy host->device only if changed
- (-l means list but don't copy)
- (see 'adb help all')
- adb shell - run remote shell interactively
- adb shell <command> - run remote shell command
- adb emu <command> - run emulator console command
- adb logcat [ <filter-spec> ] - View device log
- adb forward --list - list all forward socket connections.
- the format is a list of lines with the following format:
- <serial> " " <local> " " <remote> "\n"
- adb forward <local> <remote> - forward socket connections
- forward specs are one of:
- tcp:<port>
- localabstract:<unix domain socket name>
- localreserved:<unix domain socket name>
- localfilesystem:<unix domain socket name>
- dev:<character device name>
- jdwp:<process pid> (remote only)
- adb forward --no-rebind <local> <remote>
- - same as 'adb forward <local> <remote>' but fails
- if <local> is already forwarded
- adb forward --remove <local> - remove a specific forward socket connection
- adb forward --remove-all - remove all forward socket connections
- adb jdwp - list PIDs of processes hosting a JDWP transport
- adb install [-l] [-r] [-s] [--algo <algorithm name> --key <hex-encoded key> --iv <hex-encoded iv>] <file>
- - push this package file to the device and install it
- ('-l' means forward-lock the app)
- ('-r' means reinstall the app, keeping its data)
- ('-s' means install on SD card instead of internal storage)
- ('--algo', '--key', and '--iv' mean the file is encrypted already)
- adb uninstall [-k] <package> - remove this app package from the device
- ('-k' means keep the data and cache directories)
- adb bugreport - return all information from the device
- that should be included in a bug report.
- adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>]
- - write an archive of the device's data to <file>.
- If no -f option is supplied then the data is written
- to "backup.ab" in the current directory.
- (-apk|-noapk enable/disable backup of the .apks themselves
- in the archive; the default is noapk.)
- (-obb|-noobb enable/disable backup of any installed apk expansion
- (aka .obb) files associated with each application; the default
- is noobb.)
- (-shared|-noshared enable/disable backup of the device's
- shared storage / SD card contents; the default is noshared.)
- (-all means to back up all installed applications)
- (-system|-nosystem toggles whether -all automatically includes
- system applications; the default is to include system apps)
- (<packages...> is the list of applications to be backed up. If
- the -all or -shared flags are passed, then the package
- list is optional. Applications explicitly given on the
- command line will be included even if -nosystem would
- ordinarily cause them to be omitted.)
- adb restore <file> - restore device contents from the <file> backup archive
- adb help - show this help message
- adb version - show version num
- scripting:
- adb wait-for-device - block until device is online
- adb start-server - ensure that there is a server running
- adb kill-server - kill the server if it is running
- adb get-state - prints: offline | bootloader | device
- adb get-serialno - prints: <serial-number>
- adb get-devpath - prints: <device-path>
- adb status-window - continuously print device status for a specified device
- adb remount - remounts the /system partition on the device read-write
- adb reboot [bootloader|recovery] - reboots the device, optionally into the bootloader or recovery program
- adb reboot-bootloader - reboots the device into the bootloader
- adb root - restarts the adbd daemon with root permissions
- adb usb - restarts the adbd daemon listening on USB
- adb tcpip <port> - restarts the adbd daemon listening on TCP on the specified port
- networking:
- adb ppp <tty> [parameters] - Run PPP over USB.
- Note: you should not automatically start a PPP connection.
- <tty> refers to the tty for PPP stream. Eg. dev:/dev/omap_csmi_tty1
- [parameters] - Eg. defaultroute debug dump local notty usepeerdns
- adb sync notes: adb sync [ <directory> ]
- <localdir> can be interpreted in several ways:
- - If <directory> is not specified, both /system and /data partitions will be updated.
- - If it is "system" or "data", only the corresponding partition
- is updated.
- environmental variables:
- ADB_TRACE - Print debug information. A comma separated list of the following values
- 1 or all, adb, sockets, packets, rwx, usb, sync, sysdeps, transport, jdwp
- ANDROID_SERIAL - The serial number to connect to. -s takes priority over this if given.
- ANDROID_LOG_TAGS - When used with the logcat option, only these debug tags are printed.
- C:\Users\Jasmine>adb reboot-bootloader
- adb server is out of date. killing...
- * daemon started successfully *
- error: device not found
- C:\Users\Jasmine>adb devices
- List of devices attached
- C:\Users\Jasmine>android_log_tags
- 'android_log_tags' is not recognized as an internal or external command,
- operable program or batch file.
- C:\Users\Jasmine>adb logcat
- - waiting for device -
- --------- beginning of main
- 01-01 15:14:52.366 445 445 W auditd : type=2000 audit(0.0:1): initialized
- --------- beginning of system
- 01-01 15:14:55.480 453 453 I vold : Vold 3.0 (the awakening) firing up
- 01-01 15:14:55.480 453 453 V vold : Detected support for: exfat ext4 f2fs ntfs vfat
- 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.
- 01-01 15:14:55.529 459 459 I sysinit : Running /system/etc/init.d/00banner
- 01-01 15:14:55.542 461 461 I cm : ____ _ _ ____ _ _ ____ ____ ____ _ _ _ _ ____ ___
- 01-01 15:14:55.547 462 462 I cm : | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \
- 01-01 15:14:55.553 463 463 I cm : |___ | | | | \| |__| |__] |___ | \| | | |__| |__/
- 01-01 15:14:55.571 466 466 I cm : Welcome to Android 6.0.1 / CyanogenMod-13.0-20160908-UNOFFICIAL-ailsa_ii
- 01-01 15:14:55.578 467 467 I sysinit : Running /system/etc/init.d/90userinit
- 01-01 15:14:56.060 485 485 I rmt_storage: Shared memory initialised successfully.
- 01-01 15:14:56.060 484 484 I irsc_util: Starting irsc tool
- 01-01 15:14:56.060 485 485 I rmt_storage: Registering modemst1: 0x4a /boot/modem_fs1
- 01-01 15:14:56.060 485 485 I rmt_storage: Registering modemst2: 0x4b /boot/modem_fs2
- 01-01 15:14:56.060 485 485 I rmt_storage: Registering fsc: 0xff /boot/modem_fsc
- 01-01 15:14:56.060 485 485 I rmt_storage: Registering fsg: 0x58 /boot/modem_fsg
- 01-01 15:14:56.060 485 485 I rmt_storage: 4 GPT partitions found
- 01-01 15:14:56.060 485 485 I rmt_storage: Capset success!
- 01-01 15:14:56.060 481 481 I lowmemorykiller: Using in-kernel low memory killer interface
- 01-01 15:14:56.062 484 484 I irsc_util: Num of entries:286
- 01-01 15:14:56.063 484 484 I irsc_util: Ending irsc tool
- 01-01 15:14:56.088 491 491 D QSEECOMD: : qseecom listener services process entry PPID = 1
- 01-01 15:14:56.088 491 491 E QSEECOMD: : Listener: index = 0, hierarchy = 0
- 01-01 15:14:56.095 488 488 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.095 488 488 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.095 488 488 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.095 488 488 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.101 486 486 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.102 486 486 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.102 486 486 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.102 486 486 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.106 490 490 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.107 490 490 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.107 490 490 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.107 490 490 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.107 490 490 I libmdmdetect: No supported ESOC's found
- 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...
- 01-01 15:14:56.113 488 488 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.113 488 488 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.113 488 488 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.113 488 488 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.114 490 490 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.114 490 490 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.114 490 490 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.114 490 490 I PerMgrSrv: Adding entry for modem : offTimeout : 500 ackTimeout : 200
- 01-01 15:14:56.114 490 490 I PerMgrSrv: Adding entry for slpi : offTimeout : 5000 ackTimeout : 200
- 01-01 15:14:56.117 499 499 I installd: installd firing up
- 01-01 15:14:56.117 499 499 D installd: Upgrading /data/media for multi-user
- 01-01 15:14:56.118 508 508 I tftp_server: Starting...
- 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!
- 01-01 15:14:56.119 490 490 I PerMgrSrv: Peripheral Mananager service start
- 01-01 15:14:56.119 490 490 I PerMgrSrv: power-off timeout 500,ms; event-ack timeout 200,ms; debug-mode false
- 01-01 15:14:56.119 490 490 I PerMgrSrv: Statistics for : modem
- 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Current State : is off-line
- 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Voter/Listener count : 0/0
- 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Power on count : 0
- 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Power off count: 0
- 01-01 15:14:56.119 490 490 I PerMgrSrv: modem: Client list:
- 01-01 15:14:56.119 490 490 I PerMgrSrv: Statistics for : slpi
- 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Current State : is off-line
- 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Voter/Listener count : 0/0
- 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Power on count : 0
- 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Power off count: 0
- 01-01 15:14:56.119 490 490 I PerMgrSrv: slpi: Client list:
- 01-01 15:14:56.122 489 489 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.123 489 489 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.123 489 489 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.123 489 489 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.126 490 528 I PerMgrSrv: QMI service start
- 01-01 15:14:56.128 491 491 D QSEECOMD: : Init dlopen(librpmb.so, RTLD_NOW) succeeds
- 01-01 15:14:56.128 491 491 D QSEECOMD: : Init::Init dlsym(g_FSHandle rpmb_init_service) succeeds
- 01-01 15:14:56.130 491 491 I rpmb_ufs: RPMB Mult = 16384, Rel_sec_cnt = 32
- 01-01 15:14:56.131 491 491 E DrmLibRpmb: rpmb_init succeeded! with ret = 0
- 01-01 15:14:56.131 491 491 D QSEECOMD: : Init rpmb_init_service ret = 0
- 01-01 15:14:56.131 491 491 D QSEECOMD: : RPMB system services: init (Listener ID = 8192)
- 01-01 15:14:56.131 491 491 E QSEECOMD: : Listener: index = 1, hierarchy = 0
- 01-01 15:14:56.134 491 491 D QSEECOMD: : Init dlopen(libssd.so, RTLD_NOW) succeeds
- 01-01 15:14:56.134 491 491 D QSEECOMD: : Init::Init dlsym(g_FSHandle ssd_init_service) succeeds
- 01-01 15:14:56.134 491 491 E SSD : ssd_init_service succeeded!
- 01-01 15:14:56.134 491 491 D QSEECOMD: : Init ssd_init_service ret = 0
- 01-01 15:14:56.134 491 491 D QSEECOMD: : SSD system services: init (Listener ID = 12288)
- 01-01 15:14:56.134 491 491 E QSEECOMD: : Listener: index = 2, hierarchy = 0
- 01-01 15:14:56.134 491 491 E QSEECOMD: : Init dlopen(libsecureui.so, RLTD_NOW) is failed....
- 01-01 15:14:56.134 491 491 D QSEECOMD: : SEC_UI_INIT failed, shall not start secure ui listener
- 01-01 15:14:56.135 491 491 D QSEECOMD: : Parent qseecom daemon process paused!!
- 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.
- 01-01 15:14:56.147 507 507 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.147 507 507 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.147 507 507 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.148 507 507 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.148 507 507 E QCNEA : Cne Version 4.9
- 01-01 15:14:56.161 515 515 E adsprpc : vendor/qcom/proprietary/adsprpc/src/adsprpcd.c:26:adsp daemon starting
- 01-01 15:14:56.168 535 535 D QSEECOMD: : qseecom listener service threads starting!!!
- 01-01 15:14:56.169 535 535 D QSEECOMD: : Total listener services to start = 8
- 01-01 15:14:56.169 535 535 E QSEECOMD: : Listener: index = 0, hierarchy = 1
- 01-01 15:14:56.169 535 535 D QSEECOMD: : Init dlopen(librpmb.so, RTLD_NOW) succeeds
- 01-01 15:14:56.169 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle rpmb_start) succeeds
- 01-01 15:14:56.169 535 535 D QSEECOMAPI: QSEECom_register_listener 8192 sb_length = 0x5000
- 01-01 15:14:56.169 535 535 D QSEECOMD: : Init rpmb_start ret = 0
- 01-01 15:14:56.170 535 535 D QSEECOMD: : RPMB system services: Started (Listener ID = 8192)
- 01-01 15:14:56.170 535 535 E QSEECOMD: : Listener: index = 1, hierarchy = 1
- 01-01 15:14:56.170 535 535 D QSEECOMD: : Init dlopen(libssd.so, RTLD_NOW) succeeds
- 01-01 15:14:56.170 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle ssd_start) succeeds
- 01-01 15:14:56.170 535 535 D QSEECOMAPI: QSEECom_register_listener 12288 sb_length = 0x5000
- 01-01 15:14:56.170 535 535 D QSEECOMD: : Init ssd_start ret = 0
- 01-01 15:14:56.170 535 535 D QSEECOMD: : SSD system services: Started (Listener ID = 12288)
- 01-01 15:14:56.170 535 535 E QSEECOMD: : Listener: index = 2, hierarchy = 1
- 01-01 15:14:56.170 535 535 E QSEECOMD: : Init dlopen(libsecureui.so, RLTD_NOW) is failed....
- 01-01 15:14:56.170 535 535 E QSEECOMD: : Listener: index = 3, hierarchy = 1
- 01-01 15:14:56.172 494 494 I DEBUG : debuggerd: starting
- 01-01 15:14:56.174 483 483 I SurfaceFlinger: SurfaceFlinger is starting
- 01-01 15:14:56.177 483 483 I SurfaceFlinger: SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
- 01-01 15:14:56.179 535 535 D QSEECOMD: : Init dlopen(libdrmtime.so, RTLD_NOW) succeeds
- 01-01 15:14:56.179 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle atime_start) succeeds
- 01-01 15:14:56.179 535 535 D DrmLibTime: QSEE Time Listener: atime_start
- 01-01 15:14:56.179 535 535 D QSEECOMAPI: QSEECom_register_listener 11 sb_length = 0x5000
- 01-01 15:14:56.182 495 495 I DEBUG : debuggerd: starting
- 01-01 15:14:56.182 535 535 D DrmLibTime: registering fs service to QSEECom is done!
- 01-01 15:14:56.182 535 535 D DrmLibTime: begin to create a thread!
- 01-01 15:14:56.182 535 535 D DrmLibTime: Creating a pthread in atime_start is done! return 0
- 01-01 15:14:56.182 535 535 D QSEECOMD: : Init atime_start ret = 0
- 01-01 15:14:56.182 535 535 D QSEECOMD: : time services: Started (Listener ID = 11)
- 01-01 15:14:56.182 535 535 E QSEECOMD: : Listener: index = 4, hierarchy = 1
- 01-01 15:14:56.182 535 535 D QSEECOMD: : Init dlopen(libdrmfs.so, RTLD_NOW) succeeds
- 01-01 15:14:56.182 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle fs_start) succeeds
- 01-01 15:14:56.182 535 535 D QSEECOMAPI: QSEECom_register_listener 10 sb_length = 0x5000
- 01-01 15:14:56.183 535 535 D QSEECOMD: : Init fs_start ret = 0
- 01-01 15:14:56.183 535 535 D QSEECOMD: : file system services: Started (Listener ID = 10)
- 01-01 15:14:56.184 535 535 E QSEECOMD: : Listener: index = 5, hierarchy = 1
- 01-01 15:14:56.184 535 535 D QSEECOMD: : Init dlopen(libdrmfs.so, RTLD_NOW) succeeds
- 01-01 15:14:56.184 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle gpfs_start) succeeds
- 01-01 15:14:56.184 535 535 D QSEECOMAPI: QSEECom_register_listener 28672 sb_length = 0x7e000
- 01-01 15:14:56.189 535 535 D QSEECOMD: : Init gpfs_start ret = 0
- 01-01 15:14:56.189 535 535 D QSEECOMD: : gpfile system services: Started (Listener ID = 28672)
- 01-01 15:14:56.189 535 535 E QSEECOMD: : Listener: index = 6, hierarchy = 1
- 01-01 15:14:56.189 535 549 D DrmLibTime: QSEE Time Listener: dispatch
- 01-01 15:14:56.189 535 549 D DrmLibTime: before calling ioctl to read the next time_cmd
- 01-01 15:14:56.192 535 535 D QSEECOMD: : Init dlopen(libqisl.so, RTLD_NOW) succeeds
- 01-01 15:14:56.192 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle qisl_start) succeeds
- 01-01 15:14:56.192 535 552 I QISL : QSEE Interrupt Service Listener Thread is started
- 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
- 01-01 15:14:56.192 535 552 D QSEECOMAPI: QSEECom_register_listener 36864 sb_length = 0x1f4
- 01-01 15:14:56.192 535 552 I QISL : QSEE Interrupt Service Listener was activated successfully
- 01-01 15:14:56.192 535 535 D QSEECOMD: : Init qisl_start ret = 0
- 01-01 15:14:56.193 535 535 D QSEECOMD: : interrupt services: Started (Listener ID = 36864)
- 01-01 15:14:56.193 535 535 E QSEECOMD: : Listener: index = 7, hierarchy = 1
- 01-01 15:14:56.193 493 493 I Netd : Netd 1.0 starting
- 01-01 15:14:56.194 499 499 I SELinux : SELinux: Loaded file_contexts contexts from /file_contexts.
- 01-01 15:14:56.195 499 499 D installd: Upgrading to shared /data/media/obb
- 01-01 15:14:56.197 536 536 I qcom-bluetooth: /system/etc/init.qcom.bt.sh: init.qcom.bt.sh config = onboot
- 01-01 15:14:56.198 535 535 D QSEECOMD: : Init dlopen(libGPreqcancel.so, RTLD_NOW) succeeds
- 01-01 15:14:56.198 535 535 D QSEECOMD: : Init::Init dlsym(g_FSHandle gp_reqcancel_start) succeeds
- 01-01 15:14:56.198 535 535 D QSEECOMAPI: QSEECom_register_listener 4352 sb_length = 0x5000
- 01-01 15:14:56.202 493 493 D QtiConnectivityAdapter: Successfully loaded libconnectivitycontroller
- 01-01 15:14:56.202 493 493 D : initConnectivityController cons
- 01-01 15:14:56.202 493 493 D ConnectivityController: QtiTetherCommand cons done
- 01-01 15:14:56.202 493 493 I libconnctrl: Creating a NetlinkRelay
- 01-01 15:14:56.202 493 493 I libconnctrl: NetlinkRelay constructor
- 01-01 15:14:56.202 493 493 D TetherController: Setting IP forward enable = 0
- 01-01 15:14:56.210 512 512 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.210 512 512 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.210 512 512 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.210 512 512 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.223 535 535 D QSEECOMD: : Init gp_reqcancel_start ret = 0
- 01-01 15:14:56.223 535 535 D QSEECOMD: : gp request cancellation services: Started (Listener ID = 4352)
- 01-01 15:14:56.225 514 514 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.225 514 514 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.225 514 514 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.225 514 514 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.225 514 514 I ThermalEngine: Thermal daemon started
- 01-01 15:14:56.225 516 516 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.226 516 516 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.226 516 516 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.226 516 516 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.228 499 499 D installd: Upgrading to /data/misc/user directories
- 01-01 15:14:56.229 514 514 I ThermalEngine: No target config file, falling back to '/system/etc/thermal-engine-zte.conf'
- 01-01 15:14:56.229 514 514 I ThermalEngine: devices_manager_init: Init
- 01-01 15:14:56.229 514 514 I ThermalEngine: Number of gpus :1
- 01-01 15:14:56.229 514 514 I Thermal-IOCTL: KTM IOCTL interface "/dev/msm_thermal_query" opened
- 01-01 15:14:56.229 514 514 E ThermalEngine: update_cpu_topology: Cluster Info[0]. Cluster Id: 0 cpu_bits:0x3 sync:1
- 01-01 15:14:56.229 514 514 E ThermalEngine: update_cpu_topology: Cluster Info[1]. Cluster Id: 1 cpu_bits:0xc sync:1
- 01-01 15:14:56.229 514 514 E ThermalEngine: adding voltage device
- 01-01 15:14:56.229 514 514 I ThermalEngine: vdd_rstr_init: Init KTM VDD RSTR enabled: 0
- 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
- 01-01 15:14:56.230 514 514 I ThermalEngine: sensors_manager_init: Init
- --------- beginning of crash
- 01-01 15:14:56.241 563 563 F libc : page record for 0x7fb4872020 was not found (block_size=16)
- 01-01 15:14:56.241 501 501 I keystore: Found keymaster1 module Keymaster QTI HAL, version 100
- 01-01 15:14:56.241 501 501 I SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 122: Creating device
- 01-01 15:14:56.241 501 501 D SoftKeymaster: system/keymaster/soft_keymaster_device.cpp, Line 123: Device address: 0x7fac3a3000
- 01-01 15:14:56.251 516 516 E Diag_Lib: qpLogDiagInit <== result : 1
- 01-01 15:14:56.251 516 516 E Diag_Lib: QMID : gIsQXDMDisabled 0, gIsADBDisabled 1, gIsDebugDisabled 0, gIsIMSLogsDisabled 0
- 01-01 15:14:56.254 483 483 D libEGL : loaded /vendor/lib64/egl/libEGL_adreno.so
- 01-01 15:14:56.289 514 514 E ThermalEngine: bcl_setup: Error opening /sys/devices/soc/soc:qcom,bcl/iavail
- 01-01 15:14:56.289 514 514 E ThermalEngine: add_tgt_sensors_set: Error adding bcl
- 01-01 15:14:56.289 514 514 E ThermalEngine: sensors_init: Error adding BCL TS
- 01-01 15:14:56.290 514 581 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.290 548 548 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.290 514 581 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.290 514 581 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.290 514 581 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.290 548 548 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.290 548 548 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.291 548 548 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.291 512 512 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.291 512 512 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.291 512 512 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.291 512 512 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.291 509 509 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.292 509 509 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.292 509 509 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.292 509 509 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.294 546 546 I perfprofd: starting Android Wide Profiling daemon
- 01-01 15:14:56.294 546 546 E perfprofd: unable to open configuration file /data/data/com.google.android.gms/files/perfprofd.conf
- 01-01 15:14:56.295 546 546 I perfprofd: random seed set to 480930544
- 01-01 15:14:56.304 514 514 I ThermalEngine: Loading config file for virtual sensor
- 01-01 15:14:56.304 514 514 I ThermalEngine: Loading configuration file /system/etc/thermal-engine-zte.conf
- 01-01 15:14:56.304 514 514 E ThermalEngine: Unable to open config file '/system/etc/thermal-engine-zte.conf'
- 01-01 15:14:56.304 514 514 I ThermalEngine: [VIRTUAL-CPUS]
- 01-01 15:14:56.304 514 514 I ThermalEngine: #algo_type virtual
- 01-01 15:14:56.304 514 514 I ThermalEngine: trip_sensor tsens_tz_sensor11
- 01-01 15:14:56.304 514 514 I ThermalEngine: set_point 75000
- 01-01 15:14:56.304 514 514 I ThermalEngine: set_point_clr 65000
- 01-01 15:14:56.304 514 514 I ThermalEngine: sensors tsens_tz_sensor4 tsens_tz_sensor6 tsens_tz_sensor9 tsens_tz_sensor11
- 01-01 15:14:56.305 514 514 I ThermalEngine: weights
- 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 10
- 01-01 15:14:56.305 514 514 I ThermalEngine: math 2
- 01-01 15:14:56.305 514 514 I ThermalEngine: Loading configuration file /system/etc/thermal-engine-zte.conf
- 01-01 15:14:56.305 514 514 E ThermalEngine: Unable to open config file '/system/etc/thermal-engine-zte.conf'
- 01-01 15:14:56.305 514 514 I ThermalEngine: [PMIC-ALARM-MONITOR]
- 01-01 15:14:56.305 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.305 514 514 I ThermalEngine: sensor pm8994_tz
- 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds 107000 127000
- 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds_clr 103000 123000
- 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
- 01-01 15:14:56.305 514 514 I ThermalEngine: action_info 0+0+0+302400+302400 1+1+1
- 01-01 15:14:56.305 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS20]
- 01-01 15:14:56.305 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.305 514 514 I ThermalEngine: sensor tsens_tz_sensor20
- 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.305 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.305 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.305 514 514 I ThermalEngine: descending
- 01-01 15:14:56.305 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS19]
- 01-01 15:14:56.305 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.305 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.305 514 514 I ThermalEngine: sensor tsens_tz_sensor19
- 01-01 15:14:56.305 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.306 514 514 I ThermalEngine: descending
- 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS18]
- 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor18
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.306 514 514 I ThermalEngine: descending
- 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS17]
- 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor17
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.306 514 514 I ThermalEngine: descending
- 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS16]
- 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor16
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.306 514 514 I ThermalEngine: descending
- 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS15]
- 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor15
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.306 514 514 I ThermalEngine: descending
- 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS14]
- 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor14
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.306 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.306 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.306 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.306 514 514 I ThermalEngine: descending
- 01-01 15:14:56.306 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS13]
- 01-01 15:14:56.306 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.306 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.306 514 514 I ThermalEngine: sensor tsens_tz_sensor13
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.307 514 514 I ThermalEngine: descending
- 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS12]
- 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor12
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.307 514 514 I ThermalEngine: descending
- 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS11]
- 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor11
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.307 514 514 I ThermalEngine: descending
- 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS10]
- 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor10
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.307 514 514 I ThermalEngine: descending
- 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS9]
- 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor9
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.307 514 514 I ThermalEngine: descending
- 01-01 15:14:56.307 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS8]
- 01-01 15:14:56.307 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.307 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.307 514 514 I ThermalEngine: sensor tsens_tz_sensor8
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.307 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.307 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.307 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.307 514 514 I ThermalEngine: descending
- 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS7]
- 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor7
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.308 514 514 I ThermalEngine: descending
- 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS6]
- 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor6
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.308 514 514 I ThermalEngine: descending
- 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS5]
- 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor5
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.308 514 514 I ThermalEngine: descending
- 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS4]
- 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor4
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.308 514 514 I ThermalEngine: descending
- 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS3]
- 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor3
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.308 514 514 I ThermalEngine: descending
- 01-01 15:14:56.308 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS2]
- 01-01 15:14:56.308 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.308 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.308 514 514 I ThermalEngine: sensor tsens_tz_sensor2
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.308 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.308 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.308 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.309 514 514 I ThermalEngine: descending
- 01-01 15:14:56.309 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS1]
- 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.309 514 514 I ThermalEngine: sensor tsens_tz_sensor1
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.309 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.309 514 514 I ThermalEngine: descending
- 01-01 15:14:56.309 514 514 I ThermalEngine: [VDD_RSTR_MONITOR-TSENS0]
- 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.309 514 514 I ThermalEngine: sensor tsens_tz_sensor0
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 5000
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 10000
- 01-01 15:14:56.309 514 514 I ThermalEngine: actions vdd_restriction
- 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.309 514 514 I ThermalEngine: descending
- 01-01 15:14:56.309 514 514 I ThermalEngine: [SKIN_CHG_LIMIT]
- 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.309 514 514 I ThermalEngine: sensor emmc_therm
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 42000
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 40000
- 01-01 15:14:56.309 514 514 I ThermalEngine: actions battery
- 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1
- 01-01 15:14:56.309 514 514 I ThermalEngine: [SKIN_CPU_MONITOR]
- 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.309 514 514 I ThermalEngine: sensor emmc_therm
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 40000 41000 42000
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 38000 39000 40000
- 01-01 15:14:56.309 514 514 I ThermalEngine: actions cluster0+cluster1 cluster0+cluster1 cluster0+cluster1
- 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 1500000+1700000 1300000+1400000 1100000+1100000
- 01-01 15:14:56.309 514 514 I ThermalEngine: override 5000
- 01-01 15:14:56.309 514 514 I ThermalEngine: [SKIN_GPU_MONITOR]
- 01-01 15:14:56.309 514 514 I ThermalEngine: #algo_type monitor
- 01-01 15:14:56.309 514 514 I ThermalEngine: sampling 1000
- 01-01 15:14:56.309 514 514 I ThermalEngine: sensor emmc_therm
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds 41000 42000
- 01-01 15:14:56.309 514 514 I ThermalEngine: thresholds_clr 39000 40000
- 01-01 15:14:56.309 514 514 I ThermalEngine: actions gpu gpu
- 01-01 15:14:56.309 514 514 I ThermalEngine: action_info 510000000 315000000
- 01-01 15:14:56.309 514 514 I ThermalEngine: override 5000
- 01-01 15:14:56.310 514 514 I ThermalEngine: [SS-GPU]
- 01-01 15:14:56.310 514 514 I ThermalEngine: #algo_type ss
- 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 250
- 01-01 15:14:56.310 514 514 I ThermalEngine: sensor gpu
- 01-01 15:14:56.310 514 514 I ThermalEngine: device gpu
- 01-01 15:14:56.310 514 514 I ThermalEngine: set_point 95000
- 01-01 15:14:56.310 514 514 I ThermalEngine: set_point_clr 65000
- 01-01 15:14:56.310 514 514 I ThermalEngine: time_constant 0
- 01-01 15:14:56.310 514 514 I ThermalEngine: [SS-POPMEM]
- 01-01 15:14:56.310 514 514 I ThermalEngine: #algo_type ss
- 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 10
- 01-01 15:14:56.310 514 514 I ThermalEngine: sensor pop_mem
- 01-01 15:14:56.310 514 514 I ThermalEngine: device cluster1
- 01-01 15:14:56.310 514 514 I ThermalEngine: set_point 95000
- 01-01 15:14:56.310 514 514 I ThermalEngine: set_point_clr 65000
- 01-01 15:14:56.310 514 514 I ThermalEngine: time_constant 16
- 01-01 15:14:56.310 514 514 I ThermalEngine: [SS-CPUS-ALL]
- 01-01 15:14:56.310 514 514 I ThermalEngine: #algo_type ss
- 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 10
- 01-01 15:14:56.310 514 514 I ThermalEngine: sensor VIRTUAL-CPUS
- 01-01 15:14:56.310 514 514 I ThermalEngine: device cpu_voltage
- 01-01 15:14:56.310 514 514 I ThermalEngine: set_point 95000
- 01-01 15:14:56.310 514 514 I ThermalEngine: set_point_clr 65000
- 01-01 15:14:56.310 514 514 I ThermalEngine: time_constant 0
- 01-01 15:14:56.310 514 514 I ThermalEngine: [SPEAKER-CAL]
- 01-01 15:14:56.310 514 514 I ThermalEngine: sampling 30000 30000 10 1800000
- 01-01 15:14:56.310 514 514 I ThermalEngine: sensor pm8994_tz
- 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
- 01-01 15:14:56.310 514 514 I ThermalEngine: temp_range 6000 10000 2000
- 01-01 15:14:56.310 514 514 I ThermalEngine: max_temp 45000
- 01-01 15:14:56.310 514 514 I ThermalEngine: offset -4000
- 01-01 15:14:56.311 568 568 F libc : page record for 0x7f8b21f020 was not found (block_size=16)
- 01-01 15:14:56.325 548 659 I libmdmdetect: No supported ESOC's found
- 01-01 15:14:56.326 548 659 I libmdmdetect: slpi subsystem located
- 01-01 15:14:56.326 548 659 I libmdmdetect: Found internal modem: modem
- 01-01 15:14:56.326 548 659 I libmdmdetect: modem subsystem found
- 01-01 15:14:56.333 535 535 D QSEECOMAPI: QSEECom_get_handle sb_length = 0x400
- 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
- 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
- 01-01 15:14:56.333 514 666 I ThermalEngine: hotplug_ktm_disable_cb: write out 0
- 01-01 15:14:56.334 535 535 D QSEECOMAPI: App is not loaded in QSEE
- 01-01 15:14:56.334 535 535 E QSEECOMAPI: Error::Cannot open the file /firmware/image/keymaste.mdt errno = 2
- 01-01 15:14:56.334 535 535 E QSEECOMAPI: Error::Loading image failed with ret = -1
- 01-01 15:14:56.334 535 535 D QSEECOMAPI: QSEECom_get_handle sb_length = 0x400
- 01-01 15:14:56.334 535 535 D QSEECOMAPI: App is already loaded QSEE and app id = 4
- 01-01 15:14:56.349 548 659 E QMI_FW : QMUXD: WARNING qmi_qmux_if_pwr_up_init failed! rc=-1
- 01-02 06:29:46.346 445 445 I auditd : type=1403 audit(0.0:2): policy loaded auid=4294967295 ses=4294967295
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 01-01 02:32:11.622 690 690 I Dpps : static DppsServer *DppsServer::GetInstance(): DppsServer ref count increased to 1
- 01-01 02:32:11.623 690 690 I Dpps : AbaContext():18 ABA context instantiation
- 01-01 02:32:11.623 690 690 I Dpps : AmbientLightContext():17 AL context instantiation
- 01-01 02:32:11.623 690 690 I Dpps : InitFeatureContext():171 Initialize feature context
- 01-01 02:32:11.623 690 690 I Dpps : InitFeatureContext():203 ABA context is not enabled
- 01-01 02:32:11.623 690 690 I Dpps : InitContext():69 display_fd 5, panel 1, sensor type 2 display_type 0
- 01-01 02:32:11.623 690 690 I Dpps : OpenCommonSysfsFds():341 lcd_bl_event_fd_ is 8
- 01-01 02:32:11.623 690 690 I Dpps : OpenCommonSysfsFds():350 blank_event_fd_ is 9
- 01-01 02:32:11.623 690 690 I Dpps : OpenCommonSysfsFds():358 lcd_brightness_fd_ is 11
- 01-01 02:32:11.624 690 690 I Dpps : SelectLightSensor():468 sensor_type 2
- 01-01 02:32:11.624 690 690 I Dpps : SelectLightSensor():471 sensor_type_ 2
- 01-01 02:32:11.624 690 690 I Dpps : InitLightSensor():503 sensor_type_ 2
- 01-01 02:32:11.624 690 690 I Dpps : InitLightSensor():524 light sensor initialization ret 0
- 01-01 02:32:11.624 690 690 I Dpps : CreateAmbientLightThread():141 Create AL thread
- 01-01 02:32:11.624 690 690 I Dpps : CreateAmbientLightThread():160 Create AL thread done ret 0
- 01-01 02:32:11.624 690 690 I Dpps : InitFeatureContext():223 Initialize feature context done ret 0
- 01-01 02:32:11.625 690 922 I Dpps : ProcessAmbientLightThread():98 AL thread execution started
- 01-01 02:32:11.625 690 921 I Dpps : PollThreadLoop():111 Getting manager and light sensor instance
- 01-01 02:32:11.634 690 921 I ServiceManager: Waiting for service permission...
- 01-01 02:32:11.641 483 483 I SDM : ExtensionInterface::CreateExtensionInterface:
- 01-01 02:32:11.641 483 483 I SDM : SDM-EXTENSION Version: Date: 07/16/16, Commit: a54089c, Change: I9ac9d238cb
- 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
- 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: Upscale Ratio = 20, Downscale Ratio = 4, Blending Stages = 7
- 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: BWC = 0, UBWC = 1, Decimation = 1, Tile Format = 0
- 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: SourceSplit = 1
- 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: MaxLowBw = 9600000 , MaxHighBw = 9600000
- 01-01 02:32:11.642 483 483 I SDM : HWInfo::GetHWResourceInfo: MaxPipeBw = 4500000 KBps, MaxSDEClock = 412500000 Hz, ClockFudgeFactor = 1.050000
- 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
- 01-01 02:32:11.643 483 483 I SDM : HWInfo::GetHWResourceInfo: ROTATOR = 2, Rotator Downscale = 1
- 01-01 02:32:11.645 483 483 I SDM
- C:\Users\Jasmine>ccE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement