Android手机中有个debuggerd进程,当发生Native Crash,系统会自动调用debuggerd来dump到tombstone文件(所在目录:/data/tombstones)中。
另外也可以通过主动执行debuggerd命令来实时获取进程所有线程栈。
要想成功获取进程的线程栈,必须满足如下条件:
1. 手机要先被root
2. adb要以root方式启动(执行adb root)
3. adb shell之后,执行su,进入root用户,然后执行setenforce 0命令,来临时关闭selinux
4. 如果有debuggerd进程已经attach到目标进程,要先kill掉,然后立即打印进程所有线程栈 注:debuggerd杀死可能导致进程退出,所有kill掉后立即打印线程栈
通过ps -elf | grep debuggerd | grep -v grep命令查找,然后执行killall -9 debuggerd && debuggerd -b <pid>
:/ # debuggerd -b 32725 debuggerd -b 32725 ----- pid 32725 at 2021-04-14 17:00:32 ----- Cmd line: com.tencent.mf.uam ABI: 'arm64' ".tencent.mf.uam" sysTid=32725 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 000000000003fe8c <anonymous:000000009eab4000> (android.os.Looper.loop+396) #07 pc 000000000055dadc /system/lib64/libart.so (art_quick_osr_stub+44) #08 pc 0000000000308a98 /system/lib64/libart.so (art::jit::Jit::MaybeDoOnStackReplacement(art::Thread*, art::ArtMethod*, unsigned int, int, art::JValue*)+1996) #09 pc 0000000000532ee0 /system/lib64/libart.so (MterpMaybeDoOnStackReplacement+144) #10 pc 00000000005546f0 /system/lib64/libart.so (ExecuteMterpImpl+33136) #11 pc 0000000000bebd6a /system/framework/boot-framework.vdex (android.os.Looper.loop+974) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #16 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #17 pc 0000000000435476 /system/framework/boot-framework.vdex (android.app.ActivityThread.main+214) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #20 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #21 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #22 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #23 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #24 pc 00000000004612a4 /system/lib64/libart.so (art::InvokeMethod(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jobject*, _jobject*, unsigned long)+1440) #25 pc 00000000003f0c24 /system/lib64/libart.so (art::Method_invoke(_JNIEnv*, _jobject*, _jobject*, _jobjectArray*)+52) #26 pc 000000000078eed4 /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Class.getDeclaredMethodInternal [DEDUPED]+180) #27 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #28 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #29 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #30 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #31 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #32 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #33 pc 00000000012a4dc0 /system/framework/boot-framework.vdex (com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run+22) #34 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #35 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #36 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #37 pc 00000000024acf58 /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (com.android.internal.os.ZygoteInit.main+2248) #38 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #39 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #40 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #41 pc 000000000045f4b0 /system/lib64/libart.so (art::InvokeWithVarArgs(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, std::__va_list)+424) #42 pc 0000000000363748 /system/lib64/libart.so (art::JNI::CallStaticVoidMethodV(_JNIEnv*, _jclass*, _jmethodID*, std::__va_list)+652) #43 pc 00000000000be2d8 /system/lib64/libandroid_runtime.so (_JNIEnv::CallStaticVoidMethod(_jclass*, _jmethodID*, ...)+116) #44 pc 00000000000c0e9c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::start(char const*, android::Vector<android::String8> const&, bool)+924) #45 pc 0000000000002528 /system/bin/app_process64 (main+2012) #46 pc 00000000000c8600 /system/lib64/libc.so (__libc_init+88) "XgStat" sysTid=547 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #10 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #11 pc 0000000000bec398 /system/framework/boot-framework.vdex (android.os.MessageQueue.next+38) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #22 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #23 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #26 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #27 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #28 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #29 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #30 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #31 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #32 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #33 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) ".baseapi.thread" sysTid=548 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #07 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #11 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #12 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #21 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #22 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #23 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #24 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #25 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #26 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #27 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #28 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:32725_3" sysTid=560 #00 pc 000000000007abbc /system/lib64/libc.so (__ioctl+4) #01 pc 000000000002aa78 /system/lib64/libc.so (ioctl+132) #02 pc 000000000005ce68 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244) #03 pc 000000000005d048 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+28) #04 pc 000000000005d908 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108) #05 pc 000000000007fe14 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) #06 pc 00000000000101fc /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284) #07 pc 00000000000c119c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:32725_4" sysTid=612 #00 pc 000000000007abbc /system/lib64/libc.so (__ioctl+4) #01 pc 000000000002aa78 /system/lib64/libc.so (ioctl+132) #02 pc 000000000005ce68 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244) #03 pc 000000000005d048 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+28) #04 pc 000000000005d908 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108) #05 pc 000000000007fe14 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) #06 pc 00000000000101fc /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284) #07 pc 00000000000c119c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:32725_5" sysTid=653 #00 pc 000000000007abbc /system/lib64/libc.so (__ioctl+4) #01 pc 000000000002aa78 /system/lib64/libc.so (ioctl+132) #02 pc 000000000005ce68 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244) #03 pc 000000000005d048 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+28) #04 pc 000000000005d908 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108) #05 pc 000000000007fe14 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) #06 pc 00000000000101fc /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284) #07 pc 00000000000c119c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1486 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 0000000011816ef4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (UEngine::UpdateTimeAndHandleMaxTickRate()+2908) #03 pc 000000000a75f8e8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FEngineLoop::Tick()+7856) #04 pc 000000000a75b678 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (AndroidMain(android_app*)+4060) #05 pc 000000000a76d48c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (android_main+160) #06 pc 000000000a7abaf8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Thread-86" sysTid=1487 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000015814 /system/lib64/libutils.so (android::Looper::pollAll(int, int*, int*, void**)+260) #03 pc 0000000000012374 /system/lib64/libandroid.so (ALooper_pollAll+96) #04 pc 000000000a76d5f4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:intercep" sysTid=1488 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #10 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #11 pc 0000000000bec398 /system/framework/boot-framework.vdex (android.os.MessageQueue.next+38) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #22 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #23 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #26 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #27 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #28 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #29 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #30 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #31 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #32 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #33 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "MemoryUsageThre" sysTid=1489 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #07 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #11 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #12 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #21 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #22 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #23 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #24 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #25 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #26 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #27 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #28 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TDM-report-1" sysTid=1496 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 00000000000670f0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libTDataMaster.so #04 pc 00000000000666e8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libTDataMaster.so #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "XLogThread" sysTid=1499 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 0000000000069ce0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::Logger::_XLogThread(void*)+356) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "BuglyThread-1" sysTid=1504 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 00000000003bf40c /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+900) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000dfe66 /system/framework/boot-core-oj.vdex (java.lang.Thread.parkFor$+58) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000001fb8c4 /system/framework/boot-core-oj.vdex (sun.misc.Unsafe.park+28) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001c0150 /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.LockSupport.parkNanos+32) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #28 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #29 pc 00000000001befbc /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos+98) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #34 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #35 pc 00000000001b6452 /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take+146) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #40 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #41 pc 00000000001b601e /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #44 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #45 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #46 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #47 pc 00000000001b94e0 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.getTask+172) #48 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #49 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #50 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #51 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #52 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #53 pc 00000000001b9e60 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+30) #54 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #55 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #56 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #57 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #58 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #59 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #60 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #61 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #62 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #63 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #64 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #65 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #66 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #67 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #68 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #69 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #70 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #71 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #72 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #73 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #74 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #75 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "BuglyThread-2" sysTid=1505 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000dfe66 /system/framework/boot-core-oj.vdex (java.lang.Thread.parkFor$+58) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000001fb8c4 /system/framework/boot-core-oj.vdex (sun.misc.Unsafe.park+28) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001c011c /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.LockSupport.park+24) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #28 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #29 pc 00000000001bf080 /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await+50) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #34 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #35 pc 00000000001b6438 /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take+120) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #40 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #41 pc 00000000001b601e /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #44 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #45 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #46 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #47 pc 00000000001b94e0 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.getTask+172) #48 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #49 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #50 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #51 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #52 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #53 pc 00000000001b9e60 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+30) #54 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #55 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #56 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #57 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #58 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #59 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #60 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #61 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #62 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #63 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #64 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #65 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #66 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #67 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #68 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #69 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #70 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #71 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #72 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #73 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #74 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #75 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "BuglyThread-3" sysTid=1506 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000dfe66 /system/framework/boot-core-oj.vdex (java.lang.Thread.parkFor$+58) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000001fb8c4 /system/framework/boot-core-oj.vdex (sun.misc.Unsafe.park+28) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001c011c /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.LockSupport.park+24) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #28 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #29 pc 00000000001bf080 /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await+50) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #34 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #35 pc 00000000001b6438 /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take+120) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #40 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #41 pc 00000000001b601e /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #44 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #45 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #46 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #47 pc 00000000001b94e0 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.getTask+172) #48 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #49 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #50 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #51 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #52 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #53 pc 00000000001b9e60 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+30) #54 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #55 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #56 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #57 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #58 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #59 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #60 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #61 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #62 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #63 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #64 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #65 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #66 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #67 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #68 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #69 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #70 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #71 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #72 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #73 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #74 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #75 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Bugly-ThreadMon" sysTid=1507 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 00000000003bf40c /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+900) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 000000000055636c /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Thread.sleep+188) #05 pc 00000000000442ec <anonymous:000000009eab4000> (java.lang.Thread.sleep+316) #06 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #07 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #11 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #12 pc 00000000000e00d0 /system/framework/boot-core-oj.vdex (java.lang.Thread.sleep+2) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #15 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #16 pc 00000000000b202c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/oat/arm64/base.odex (offset 0x53000) (com.tencent.bugly.proguard.ab.run+332) #17 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #18 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #19 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #20 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #21 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #22 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #23 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "MSDKV5-Timer-2" sysTid=1511 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 00000000000c239c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libMSDKCore.so #04 pc 00000000000c20f4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libMSDKCore.so #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "specialhttpdns-" sysTid=1512 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #07 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #11 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #12 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #21 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #22 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #23 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #24 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #25 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #26 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #27 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #28 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "OkHttp Connecti" sysTid=1516 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 00000000003bf40c /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+900) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000147e4 /system/framework/boot-okhttp.vdex (com.android.okhttp.ConnectionPool$1.run+72) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #16 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #17 pc 00000000001b9ee4 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+162) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #28 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #29 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #32 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #33 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #34 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #35 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #36 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #37 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #38 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #39 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "ent.File.Tracer" sysTid=1520 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #10 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #11 pc 0000000000bec398 /system/framework/boot-framework.vdex (android.os.MessageQueue.next+38) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #22 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #23 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #26 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #27 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #28 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #29 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #30 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #31 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #32 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #33 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) ".tencent.mf.uam" sysTid=1521 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000006f3c4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so #02 pc 00000000000705c0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::OperationQueueImp::onThreadProc(void*)+556) #03 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #04 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Thread-85" sysTid=1522 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 0000000000070524 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::OperationQueueImp::onThreadProc(void*)+400) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) ".tencent.mf.uam" sysTid=1523 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000006f3c4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so #02 pc 00000000000705c0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::OperationQueueImp::onThreadProc(void*)+556) #03 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #04 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) ".tencent.mf.uam" sysTid=1524 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000006f3c4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so #02 pc 00000000000702fc /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::OperationQueueImp::onThreadManageProc(void*)+420) #03 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #04 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Okio Watchdog" sysTid=1525 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dc70c /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.notify [DEDUPED]+124) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 000000000002ec64 /system/framework/boot-okhttp.vdex (com.android.okhttp.okio.AsyncTimeout.awaitTimeout+24) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #16 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #17 pc 000000000002ec3e /system/framework/boot-okhttp.vdex (com.android.okhttp.okio.AsyncTimeout.access$000) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #22 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #23 pc 000000000002eb9c /system/framework/boot-okhttp.vdex (com.android.okhttp.okio.AsyncTimeout$Watchdog.run) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #26 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #27 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #28 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #29 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #30 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #31 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #32 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #33 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) ".tencent.mf.uam" sysTid=1526 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 00000000000a3664 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libGVoice.so #03 pc 000000000009c32c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libGVoice.so #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "XLogThread" sysTid=1527 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 0000000000069ce0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::Logger::_XLogThread(void*)+356) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "queued-work-loo" sysTid=1528 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #07 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #11 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #12 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #21 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #22 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #23 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #24 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #25 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #26 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #27 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #28 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TDM-report-bi-2" sysTid=1529 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 00000000000670f0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libTDataMaster.so #04 pc 00000000000666e8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libTDataMaster.so #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "CThreadBase" sysTid=1538 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 0000000000078db8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::CThreadBase::Sleep(int)+76) #02 pc 00000000000729f0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::CTimerImp::OnThreadProc()+156) #03 pc 0000000000079908 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloudcore.so (ABase::CThreadBase::onThreadProc(void*)+752) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "RenderThread" sysTid=1539 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000351864 /system/lib64/libhwui.so "hwuiTask1" sysTid=1542 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000031be5c /system/lib64/libhwui.so (android::uirenderer::TaskManager::WorkerThread::threadLoop()+328) "GameThread" sysTid=1543 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 000000000cf497f8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #03 pc 000000000cf48e50 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphNP 0" sysTid=1555 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphNP 1" sysTid=1557 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphNP 2" sysTid=1558 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphNP 3" sysTid=1560 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphHP 4" sysTid=1561 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphHP 5" sysTid=1566 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphHP 6" sysTid=1572 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphHP 7" sysTid=1573 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphThread" sysTid=1574 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphThread" sysTid=1575 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphBP 10" sysTid=1576 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "TaskGraphBP 11" sysTid=1577 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf95298 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasks()+2292) #05 pc 000000000cf93ff4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::ProcessTasksUntilQuit(int)+84) #06 pc 000000000cf93dec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FTaskThreadAnyThread::Run()+60) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "StatsThread" sysTid=1583 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf97e84 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksNamedThread(int, bool)+3140) #05 pc 000000000cf96210 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksUntilQuit(int)+140) #06 pc 000000000d3b94b4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FStatsThread::Run()+104) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 0" sysTid=1584 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 1" sysTid=1585 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 2" sysTid=1586 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Thread-100" sysTid=1587 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 4" sysTid=1588 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 5" sysTid=1589 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "FAsyncW-_UAGame" sysTid=1590 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 000000000d2a2548 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FAsyncWriter::Run()+260) #03 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #04 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "HttpManager" sysTid=1598 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 000000000da3b1ac /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FHttpThread::Run()+124) #03 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #04 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 6" sysTid=1599 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 7" sysTid=1600 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 8" sysTid=1601 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "PoolThread 9" sysTid=1602 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000d0c3b58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FQueuedThread::Run()+580) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "RHIThread" sysTid=1603 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf97e84 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksNamedThread(int, bool)+3140) #05 pc 000000000cf96210 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksUntilQuit(int)+140) #06 pc 000000000e63da64 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRHIThread::Run()+108) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "FMediaTicker" sysTid=1618 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 000000000d01a0a4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FGenericPlatformProcess::Sleep(float)+764) #03 pc 000000001043dc10 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FMediaTicker::Run()+116) #04 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #05 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #06 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #07 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "FMessag-.Router" sysTid=1634 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 000000000d01ad68 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1080) #04 pc 000000000e10c47c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FMessageRouter::Run()+116) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1657 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 0000000012c11658 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1659 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000002e5d0 /system/lib64/libc.so (sem_wait+120) #03 pc 0000000012b66740 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "NativeThread" sysTid=1663 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000002e5d0 /system/lib64/libc.so (sem_wait+120) #03 pc 0000000012bcdd38 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1665 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000002e5d0 /system/lib64/libc.so (sem_wait+120) #03 pc 0000000012b6e57c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "NativeThread" sysTid=1666 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000002e5d0 /system/lib64/libc.so (sem_wait+120) #03 pc 0000000012bd36ec /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "AudioTrack" sysTid=1676 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 000000000008002c /system/lib64/libaudioclient.so (android::ClientProxy::obtainBuffer(android::Proxy::Buffer*, timespec const*, timespec*)+676) #02 pc 0000000000079550 /system/lib64/libaudioclient.so (android::AudioTrack::obtainBuffer(android::AudioTrack::Buffer*, timespec const*, timespec*, unsigned long*)+536) #03 pc 0000000000078a34 /system/lib64/libaudioclient.so (android::AudioTrack::processAudioBuffer()+3736) #04 pc 000000000007788c /system/lib64/libaudioclient.so (android::AudioTrack::AudioTrackThread::threadLoop()+252) #05 pc 0000000000010194 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+180) #06 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #07 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "tgpa_vmpss" sysTid=1680 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #07 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #11 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #12 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #21 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #22 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #23 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #24 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #25 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #26 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #27 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #28 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Routine" sysTid=1695 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 00000000003bf40c /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+900) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 000000000055636c /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Thread.sleep+188) #05 pc 00000000000442ec <anonymous:000000009eab4000> (java.lang.Thread.sleep+316) #06 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #07 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #11 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #12 pc 00000000000e00d0 /system/framework/boot-core-oj.vdex (java.lang.Thread.sleep+2) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 00000000003aed16 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/oat/arm64/base.vdex (com.tencent.gcloud.gpm.apm.Routine.run+540) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #21 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #22 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #23 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #24 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #25 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #26 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #27 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #28 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #29 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #30 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #31 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #32 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #33 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #34 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1696 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000002e5d0 /system/lib64/libc.so (sem_wait+120) #03 pc 000000000005259c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libGPM.so (GCloud::GPM::comitter_thread(void*)+132) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "apm_tick_thread" sysTid=1697 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 0000000000054c50 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libGPM.so (GCloud::GPM::apmTicker(void*)+840) #03 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #04 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "gem-work" sysTid=1698 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #07 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #11 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #12 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #21 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #22 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #23 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #24 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #25 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #26 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #27 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #28 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "FAsyncLoading" sysTid=1707 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 000000000d01ad68 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1080) #04 pc 000000000d6114f0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FAsyncLoadingThread::TickAsyncThread(bool, bool, float, bool&, FFlushTree*)+1232) #05 pc 000000000d613864 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FAsyncLoadingThread::Run()+392) #06 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #07 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "FFileTransfer" sysTid=1709 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 000000000d01ad68 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1080) #04 pc 00000000125e3530 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FFileTransferRunnable::Run()+164) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "AudioTrack" sysTid=1724 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 000000000008002c /system/lib64/libaudioclient.so (android::ClientProxy::obtainBuffer(android::Proxy::Buffer*, timespec const*, timespec*)+676) #02 pc 0000000000079550 /system/lib64/libaudioclient.so (android::AudioTrack::obtainBuffer(android::AudioTrack::Buffer*, timespec const*, timespec*, unsigned long*)+536) #03 pc 0000000000078a34 /system/lib64/libaudioclient.so (android::AudioTrack::processAudioBuffer()+3736) #04 pc 000000000007788c /system/lib64/libaudioclient.so (android::AudioTrack::AudioTrackThread::threadLoop()+252) #05 pc 0000000000010194 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+180) #06 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #07 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "AudioMi-nder(1)" sysTid=1730 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 000000000d01ad68 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1080) #04 pc 0000000010128438 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (Audio::IAudioMixerPlatformInterface::RunInternal()+328) #05 pc 0000000010128924 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (Audio::IAudioMixerPlatformInterface::Run()+64) #06 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #07 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "AudioThread" sysTid=1731 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf97e84 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksNamedThread(int, bool)+3140) #05 pc 000000000cf96210 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksUntilQuit(int)+140) #06 pc 0000000010835a58 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FAudioThread::Run()+120) #07 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #08 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #09 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #10 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GCloudRead" sysTid=1732 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 000000000d01a0a4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FGenericPlatformProcess::Sleep(float)+764) #03 pc 000000000aa746a0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (UMFGCloudMessageObserver::ConnectorReadThreadMainLoop()+136) #04 pc 000000000aac4a1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FConnectorReadRunable::Run()+12) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "tp_schedule3" sysTid=1733 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cedc /system/lib64/libc.so (sleep+52) #02 pc 0000000000053a84 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #03 pc 00000000000538c0 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #04 pc 00000000001ff94c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GCloudT-bserver" sysTid=1736 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 000000000d01a0a4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FGenericPlatformProcess::Sleep(float)+764) #03 pc 000000000aa86414 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (UMFGCloudTssObserver::ThreadMainLoop()+116) #04 pc 000000000aacad54 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FGCloudTssObserverRunable::Run()+12) #05 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #06 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "pool-1-thread-1" sysTid=1743 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000dfe66 /system/framework/boot-core-oj.vdex (java.lang.Thread.parkFor$+58) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000001fb8c4 /system/framework/boot-core-oj.vdex (sun.misc.Unsafe.park+28) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001c011c /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.LockSupport.park+24) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #28 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #29 pc 00000000001bf080 /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await+50) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #34 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #35 pc 00000000001b2cc4 /system/framework/boot-core-oj.vdex (java.util.concurrent.LinkedBlockingQueue.take+32) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #40 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #41 pc 00000000001b94e0 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.getTask+172) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #44 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #45 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #46 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #47 pc 00000000001b9e60 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+30) #48 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #49 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #50 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #51 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #52 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #53 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #54 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #55 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #56 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #57 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #58 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #59 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #60 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #61 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #62 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #63 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #64 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #65 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #66 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #67 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #68 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #69 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "tp_schedule3" sysTid=1752 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cedc /system/lib64/libc.so (sleep+52) #02 pc 0000000000193334 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #03 pc 000000000013dd5c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #04 pc 00000000001858dc /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "tp_schedule3" sysTid=1753 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cedc /system/lib64/libc.so (sleep+52) #02 pc 0000000000193334 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #03 pc 0000000000182660 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #04 pc 00000000001858dc /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Thread-97" sysTid=1754 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cedc /system/lib64/libc.so (sleep+52) #02 pc 0000000000260c1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #03 pc 00000000000528ac /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #04 pc 0000000000052a60 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #05 pc 00000000001ff94c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #06 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #07 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "ConnectivityThr" sysTid=1769 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 0000000000021994 <anonymous:000000009eab4000> (android.os.Looper.loop+564) #07 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #08 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #09 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #10 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #11 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #12 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #13 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #14 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #15 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #16 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #17 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #18 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #19 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #20 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #21 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #22 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #23 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "tp_worker" sysTid=1772 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cedc /system/lib64/libc.so (sleep+52) #02 pc 0000000000058e88 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #03 pc 00000000000528ac /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #04 pc 0000000000052a2c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #05 pc 00000000001ff94c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libtersafe.so #06 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #07 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "pool-2-thread-1" sysTid=1824 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000001a7cc <anonymous:000000009eab4000> (android.os.MessageQueue.next+204) #06 pc 0000000000021994 <anonymous:000000009eab4000> (android.os.Looper.loop+564) #07 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #08 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #09 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #10 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #11 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #12 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #13 pc 00000000003a20a6 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/oat/arm64/base.vdex (com.tencent.cos.xml.transfer.TaskStateMonitor.run+154) #14 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #15 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #16 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #17 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #18 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #19 pc 00000000001abdda /system/framework/boot-core-oj.vdex (java.util.concurrent.Executors$RunnableAdapter.call+4) #20 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #21 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #22 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #23 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #24 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #25 pc 00000000001b1016 /system/framework/boot-core-oj.vdex (java.util.concurrent.FutureTask.run+62) #26 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #27 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #28 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #29 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #30 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #31 pc 00000000001b9ee4 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+162) #32 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #33 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #34 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #35 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #36 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #37 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #38 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #39 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #40 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #41 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #42 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #43 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #44 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #45 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #46 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #47 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #48 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #49 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #50 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #51 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #52 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #53 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "OkHttp Connecti" sysTid=1831 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 00000000003bf40c /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+900) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000004b8a02 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/oat/arm64/base.vdex (okhttp3.ConnectionPool$1.run+76) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #16 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #17 pc 00000000001b9ee4 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+162) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #28 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #29 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #32 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #33 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #34 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #35 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #36 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #37 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #38 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #39 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "RenderThread" sysTid=1835 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000d01ae1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FPThreadEvent::Wait(unsigned int, bool)+1260) #04 pc 000000000cf97e84 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksNamedThread(int, bool)+3140) #05 pc 000000000cf96210 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FNamedTaskThread::ProcessTasksUntilQuit(int)+140) #06 pc 000000000e61e680 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (RenderingThreadMain(FEvent*)+212) #07 pc 000000000e63e10c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRenderingThread::Run()+24) #08 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #09 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #10 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #11 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "RTHeartBeat 1" sysTid=1838 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 000000000d01a0a4 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FGenericPlatformProcess::Sleep(float)+764) #03 pc 000000000e645050 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRenderingThreadTickHeartbeat::Run()+188) #04 pc 000000000d0baee8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::Run()+152) #05 pc 000000000cf90b1c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libUE4.so (offset 0xa749000) (FRunnableThreadPThread::_ThreadProc(void*)+80) #06 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #07 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "StepEvent Proce" sysTid=1839 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000dfe66 /system/framework/boot-core-oj.vdex (java.lang.Thread.parkFor$+58) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000001fb8c4 /system/framework/boot-core-oj.vdex (sun.misc.Unsafe.park+28) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001c011c /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.LockSupport.park+24) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #28 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #29 pc 00000000001be31e /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedLongSynchronizer.parkAndCheckInterrupt) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #34 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #35 pc 00000000001bfe78 /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer.doAcquireSharedInterruptibly+66) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #40 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #41 pc 00000000001bfc8a /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly+24) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #44 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #45 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #46 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #47 pc 00000000001b70d8 /system/framework/boot-core-oj.vdex (java.util.concurrent.Semaphore.acquire+6) #48 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #49 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #50 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #51 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #52 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #53 pc 00000000003c08d2 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/oat/arm64/base.vdex (com.tencent.gcloud.gpm.stepevent.StepEventProcessor.run+8) #54 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #55 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #56 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #57 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #58 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #59 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #60 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #61 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #62 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #63 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #64 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #65 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #66 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #67 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #68 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #69 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "gem-scheduled-0" sysTid=1901 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 00000000003bf40c /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+900) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000dfe66 /system/framework/boot-core-oj.vdex (java.lang.Thread.parkFor$+58) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000001fb8c4 /system/framework/boot-core-oj.vdex (sun.misc.Unsafe.park+28) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001c0150 /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.LockSupport.parkNanos+32) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #28 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #29 pc 00000000001befbc /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos+98) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #34 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #35 pc 00000000001b6452 /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take+146) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #40 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #41 pc 00000000001b601e /system/framework/boot-core-oj.vdex (java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #44 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #45 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #46 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #47 pc 00000000001b94e0 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.getTask+172) #48 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #49 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #50 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #51 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #52 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #53 pc 00000000001b9e60 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+30) #54 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #55 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #56 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #57 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #58 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #59 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #60 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #61 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #62 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #63 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #64 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #65 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #66 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #67 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #68 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #69 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #70 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #71 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #72 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #73 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #74 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #75 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:32725_6" sysTid=1916 #00 pc 000000000007abbc /system/lib64/libc.so (__ioctl+4) #01 pc 000000000002aa78 /system/lib64/libc.so (ioctl+132) #02 pc 000000000005ce68 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244) #03 pc 000000000005d048 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+28) #04 pc 000000000005d908 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108) #05 pc 000000000007fe14 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) #06 pc 00000000000101fc /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284) #07 pc 00000000000c119c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "MSDKV5-Work-4" sysTid=1933 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 00000000000cdb14 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libMSDKCore.so #04 pc 00000000000cda8c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libMSDKCore.so #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1946 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 0000000000377c60 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #03 pc 0000000000365e3c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1947 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f798 /system/lib64/libc.so (pthread_cond_timedwait+120) #03 pc 0000000000368544 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #04 pc 0000000000368614 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #05 pc 0000000000475b40 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #06 pc 000000000045fab8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1948 #00 pc 000000000007b4d4 /system/lib64/libc.so (nanosleep+4) #01 pc 000000000004cfe4 /system/lib64/libc.so (usleep+76) #02 pc 0000000000474ac8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #03 pc 000000000045fab8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "GameThread" sysTid=1949 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000225ac /system/lib64/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+140) #02 pc 000000000008f6f4 /system/lib64/libc.so (pthread_cond_wait+60) #03 pc 000000000036854c /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #04 pc 0000000000368614 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #05 pc 000000000045fd94 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #06 pc 000000000045fab8 /data/app/com.tencent.mf.uam-VmZZrN8dNrnQTjaoCcrCIA==/lib/arm64/libgcloud.so #07 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #08 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:32725_7" sysTid=2174 #00 pc 000000000007abbc /system/lib64/libc.so (__ioctl+4) #01 pc 000000000002aa78 /system/lib64/libc.so (ioctl+132) #02 pc 000000000005ce68 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244) #03 pc 000000000005d048 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+28) #04 pc 000000000005d908 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108) #05 pc 000000000007fe14 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) #06 pc 00000000000101fc /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284) #07 pc 00000000000c119c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Thread-125" sysTid=2199 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000dfe66 /system/framework/boot-core-oj.vdex (java.lang.Thread.parkFor$+58) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000001fb8c4 /system/framework/boot-core-oj.vdex (sun.misc.Unsafe.park+28) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000001c011c /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.LockSupport.park+24) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #28 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #29 pc 00000000001bf080 /system/framework/boot-core-oj.vdex (java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await+50) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #34 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #35 pc 00000000001b2cc4 /system/framework/boot-core-oj.vdex (java.util.concurrent.LinkedBlockingQueue.take+32) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #40 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #41 pc 00000000001b94e0 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.getTask+172) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #44 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #45 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #46 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #47 pc 00000000001b9e60 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor.runWorker+30) #48 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #49 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #50 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #51 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #52 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #53 pc 00000000001b8f80 /system/framework/boot-core-oj.vdex (java.util.concurrent.ThreadPoolExecutor$Worker.run+4) #54 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #55 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #56 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #57 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #58 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #59 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #60 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #61 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #62 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #63 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #64 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #65 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #66 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #67 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #68 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #69 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Jit thread pool" sysTid=32731 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000004b21f8 /system/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+260) #03 pc 00000000004b1760 /system/lib64/libart.so (art::ThreadPoolWorker::Run()+124) #04 pc 00000000004b1220 /system/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+148) #05 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #06 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Signal Catcher" sysTid=32732 #00 pc 000000000007acb0 /system/lib64/libc.so (__rt_sigtimedwait+8) #01 pc 000000000002f410 /system/lib64/libc.so (sigwait+124) #02 pc 0000000000483094 /system/lib64/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+388) #03 pc 0000000000481a3c /system/lib64/libart.so (art::SignalCatcher::Run(void*)+272) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "ADB-JDWP Connec" sysTid=32733 #00 pc 000000000007abec /system/lib64/libc.so (__ppoll+4) #01 pc 000000000002d034 /system/lib64/libc.so (poll+88) #02 pc 0000000000006d08 /system/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+836) #03 pc 00000000000052d0 /system/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1060) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:filter-p" sysTid=32734 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dc70c /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.notify [DEDUPED]+124) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 0000000000c0a780 /system/framework/boot-framework.vdex (android.os.statistics.PerfEventReporter$ProcPerfEventFilterThread.loopOnce+60) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #16 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #17 pc 0000000000c0a998 /system/framework/boot-framework.vdex (android.os.statistics.PerfEventReporter$ProcPerfEventFilterThread.run+110) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #20 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #21 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #22 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #23 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #24 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #25 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #26 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #27 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:read-per" sysTid=32735 #00 pc 000000000007abec /system/lib64/libc.so (__ppoll+4) #01 pc 000000000002d034 /system/lib64/libc.so (poll+88) #02 pc 00000000001b7068 /system/lib64/libandroid_runtime.so (android::os::statistics::PerfEventReporter::waitForPerfEventArrived(_JNIEnv*, int)+184) #03 pc 0000000000e9a4c8 /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.mtp.MtpServer.native_configure [DEDUPED]+152) #04 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #05 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #06 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #07 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #08 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #09 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #10 pc 0000000000c0ae36 /system/framework/boot-framework.vdex (android.os.statistics.PerfEventReporter.access$000) #11 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #12 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #13 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #14 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #15 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #16 pc 0000000000c0ad14 /system/framework/boot-framework.vdex (android.os.statistics.PerfEventReporter$ProcPerfEventReaderThread.loopOnce+46) #17 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #18 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #19 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #20 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #21 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #22 pc 0000000000c0ae0e /system/framework/boot-framework.vdex (android.os.statistics.PerfEventReporter$ProcPerfEventReaderThread.run+84) #23 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #24 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #25 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #26 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #27 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #28 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #29 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #30 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #31 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #32 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:looper-c" sysTid=32736 #00 pc 000000000007aad0 /system/lib64/libc.so (__epoll_pwait+8) #01 pc 0000000000014f04 /system/lib64/libutils.so (android::Looper::pollInner(int)+304) #02 pc 0000000000014d38 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+60) #03 pc 0000000000133348 /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) #04 pc 0000000000dfa50c /system/framework/arm64/boot-framework.oat (offset 0xa4f000) (android.media.MediaExtractor.seekTo [DEDUPED]+140) #05 pc 000000000003b6bc <anonymous:000000009eab4000> (android.os.MessageQueue.next+140) #06 pc 000000000055dadc /system/lib64/libart.so (art_quick_osr_stub+44) #07 pc 0000000000308a98 /system/lib64/libart.so (art::jit::Jit::MaybeDoOnStackReplacement(art::Thread*, art::ArtMethod*, unsigned int, int, art::JValue*)+1996) #08 pc 0000000000532ee0 /system/lib64/libart.so (MterpMaybeDoOnStackReplacement+144) #09 pc 00000000005546f0 /system/lib64/libart.so (ExecuteMterpImpl+33136) #10 pc 0000000000bec46c /system/framework/boot-framework.vdex (android.os.MessageQueue.next+250) #11 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #12 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #13 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #14 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #15 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #16 pc 0000000000beba1c /system/framework/boot-framework.vdex (android.os.Looper.loop+128) #17 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #18 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #19 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #20 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #21 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #22 pc 0000000000bd8964 /system/framework/boot-framework.vdex (android.os.HandlerThread.run+56) #23 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #24 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #25 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #26 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #27 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #28 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #29 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #30 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #31 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #32 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "ReferenceQueueD" sysTid=32737 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dc70c /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.notify [DEDUPED]+124) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000001791f8 /system/framework/boot-core-libart.vdex (java.lang.Daemons$ReferenceQueueDaemon.runInternal+30) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 0000000000178b24 /system/framework/boot-core-libart.vdex (java.lang.Daemons$Daemon.run+20) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #22 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #23 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #26 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #27 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #28 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #29 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #30 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #31 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #32 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #33 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "FinalizerDaemon" sysTid=32738 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 00000000003bf3f4 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+876) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 00000000002dcadc /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Object.wait [DEDUPED]+140) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 00000000000d7b18 /system/framework/boot-core-oj.vdex (java.lang.Object.wait+2) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 00000000000e9b9c /system/framework/boot-core-oj.vdex (java.lang.ref.ReferenceQueue.remove+58) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #22 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #23 pc 00000000000e9b54 /system/framework/boot-core-oj.vdex (java.lang.ref.ReferenceQueue.remove+4) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #26 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #27 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #28 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #29 pc 0000000000178d56 /system/framework/boot-core-libart.vdex (java.lang.Daemons$FinalizerDaemon.runInternal+110) #30 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #31 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #32 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #33 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #34 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #35 pc 0000000000178b24 /system/framework/boot-core-libart.vdex (java.lang.Daemons$Daemon.run+20) #36 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #37 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #38 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #39 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #40 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #41 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #42 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #43 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #44 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #45 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #46 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #47 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #48 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #49 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #50 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #51 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "FinalizerWatchd" sysTid=32739 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 00000000003bf40c /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, long, int, bool, art::ThreadState)+900) #03 pc 00000000003c10e8 /system/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::mirror::Object*, long, int, bool, art::ThreadState)+424) #04 pc 000000000055636c /system/framework/arm64/boot-core-oj.oat (offset 0x2dc000) (java.lang.Thread.sleep+188) #05 pc 00000000000442ec <anonymous:000000009eab4000> (java.lang.Thread.sleep+316) #06 pc 000000000055da4c /system/lib64/libart.so (art_quick_invoke_static_stub+604) #07 pc 00000000000d076c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+232) #08 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #09 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #10 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #11 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #12 pc 00000000000e00d0 /system/framework/boot-core-oj.vdex (java.lang.Thread.sleep+2) #13 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #14 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #15 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #16 pc 000000000052dddc /system/lib64/libart.so (MterpInvokeStatic+204) #17 pc 000000000054fe94 /system/lib64/libart.so (ExecuteMterpImpl+14612) #18 pc 0000000000178e06 /system/framework/boot-core-libart.vdex (java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor+50) #19 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #20 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #21 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #22 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #23 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #24 pc 0000000000178ebe /system/framework/boot-core-libart.vdex (java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization+36) #25 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #26 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #27 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #28 pc 000000000052dc18 /system/lib64/libart.so (MterpInvokeDirect+296) #29 pc 000000000054fe14 /system/lib64/libart.so (ExecuteMterpImpl+14484) #30 pc 00000000001790ae /system/framework/boot-core-libart.vdex (java.lang.Daemons$FinalizerWatchdogDaemon.runInternal+26) #31 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #32 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #33 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #34 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #35 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #36 pc 0000000000178b24 /system/framework/boot-core-libart.vdex (java.lang.Daemons$Daemon.run+20) #37 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #38 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #39 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #40 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #41 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #42 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #43 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #44 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #45 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #46 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #47 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #48 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #49 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #50 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #51 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #52 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "HeapTaskDaemon" sysTid=32740 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8bb4 /system/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+168) #02 pc 000000000022e31c /system/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+504) #03 pc 000000000022eb70 /system/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+96) #04 pc 000000000038687c /system/framework/arm64/boot-core-libart.oat (offset 0x187000) (dalvik.system.VMRuntime.clampGrowthLimit [DEDUPED]+124) #05 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #06 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #07 pc 0000000000280dbc /system/lib64/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+344) #08 pc 000000000027add0 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+968) #09 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #10 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #11 pc 0000000000179186 /system/framework/boot-core-libart.vdex (java.lang.Daemons$HeapTaskDaemon.runInternal+38) #12 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #13 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #14 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #15 pc 000000000052c8d8 /system/lib64/libart.so (MterpInvokeVirtual+588) #16 pc 000000000054fd14 /system/lib64/libart.so (ExecuteMterpImpl+14228) #17 pc 0000000000178b24 /system/framework/boot-core-libart.vdex (java.lang.Daemons$Daemon.run+20) #18 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #19 pc 000000000025a5c8 /system/lib64/libart.so (art::interpreter::ArtInterpreterToInterpreterBridge(art::Thread*, art::CodeItemDataAccessor const&, art::ShadowFrame*, art::JValue*)+216) #20 pc 000000000027adb4 /system/lib64/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+940) #21 pc 000000000052d854 /system/lib64/libart.so (MterpInvokeInterface+1392) #22 pc 000000000054ff14 /system/lib64/libart.so (ExecuteMterpImpl+14740) #23 pc 00000000000dff84 /system/framework/boot-core-oj.vdex (java.lang.Thread.run+12) #24 pc 0000000000254ad4 /system/lib64/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEb.llvm.1893940555+488) #25 pc 000000000051d18c /system/lib64/libart.so (artQuickToInterpreterBridge+1020) #26 pc 00000000005668fc /system/lib64/libart.so (art_quick_to_interpreter_bridge+92) #27 pc 000000000055d788 /system/lib64/libart.so (art_quick_invoke_stub+584) #28 pc 00000000000d074c /system/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+200) #29 pc 000000000045f850 /system/lib64/libart.so (art::(anonymous namespace)::InvokeWithArgArray(art::ScopedObjectAccessAlreadyRunnable const&, art::ArtMethod*, art::(anonymous namespace)::ArgArray*, art::JValue*, char const*)+104) #30 pc 000000000046090c /system/lib64/libart.so (art::InvokeVirtualOrInterfaceWithJValues(art::ScopedObjectAccessAlreadyRunnable const&, _jobject*, _jmethodID*, jvalue*)+424) #31 pc 000000000048ed5c /system/lib64/libart.so (art::Thread::CreateCallback(void*)+1092) #32 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #33 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:32725_1" sysTid=32741 #00 pc 000000000007abbc /system/lib64/libc.so (__ioctl+4) #01 pc 000000000002aa78 /system/lib64/libc.so (ioctl+132) #02 pc 000000000005ce68 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244) #03 pc 000000000005d048 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+28) #04 pc 000000000005d8dc /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+64) #05 pc 000000000007fe14 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) #06 pc 00000000000101fc /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284) #07 pc 00000000000c119c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Binder:32725_2" sysTid=32742 #00 pc 000000000007abbc /system/lib64/libc.so (__ioctl+4) #01 pc 000000000002aa78 /system/lib64/libc.so (ioctl+132) #02 pc 000000000005ce68 /system/lib64/libbinder.so (android::IPCThreadState::talkWithDriver(bool)+244) #03 pc 000000000005d048 /system/lib64/libbinder.so (android::IPCThreadState::getAndExecuteCommand()+28) #04 pc 000000000005d908 /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+108) #05 pc 000000000007fe14 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) #06 pc 00000000000101fc /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+284) #07 pc 00000000000c119c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) #08 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #09 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68) "Profile Saver" sysTid=32751 #00 pc 000000000001f3ec /system/lib64/libc.so (syscall+28) #01 pc 00000000000d8788 /system/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+148) #02 pc 0000000000323cec /system/lib64/libart.so (art::ProfileSaver::Run()+604) #03 pc 00000000003270f8 /system/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+92) #04 pc 00000000000901b0 /system/lib64/libc.so (__pthread_start(void*)+36) #05 pc 0000000000023930 /system/lib64/libc.so (__start_thread+68)