Status Update
Comments
vi...@google.com <vi...@google.com> #2
Main question is, can the same instance of a worker be used in multiple places? And if so, it looks like things are broken.
ro...@bbc.co.uk <ro...@bbc.co.uk> #3
vi...@google.com <vi...@google.com>
ra...@google.com <ra...@google.com>
am...@google.com <am...@google.com> #4
ra...@google.com <ra...@google.com>
rn...@google.com <rn...@google.com> #5
I think I would expect the same instance to be able to be used multiple times, but runs after it's first would be 'skipped'. What do you think of that concept?
ns...@google.com <ns...@google.com>
ro...@bbc.co.uk <ro...@bbc.co.uk> #6
sc...@google.com <sc...@google.com> #7
ro...@bbc.co.uk <ro...@bbc.co.uk> #8
val chainA = (1, 2).then(4)
val chainB = (2, 3).then(5)
WorkContinuation.combine(chainA, chainB).enqueue()
// 1 2 3
// \/ \/
// 4 5
Tree example in the code along with ones from comments above.
Attached project
sc...@google.com <sc...@google.com> #9
Essentially what WorkManager does is this. If your Worker has no prerequisites, then its eligible to run. So in your example (1, 2) and (2, 3) have no prerequisites, So they will get scheduled first.
We also ensure that 2 only executes once.
Once they are done running, we look for dependencies that might get unblocked (depending on the status of the Worker which unblocked it). So 4, 5 will eventually get unblocked once all their prerequisites are successful.
to...@google.com <to...@google.com> #10
What could be going on here? Is this type of chaining not intended?
private fun createWorkContinuations(): List<WorkContinuation> {
val downloadAnnotationDigestWorker = createWorker<DownloadAnnotationDigestWorker>()
val downloadAssetsWorker = createWorker<DownloadAssetsWorker>()
val downloadCommentsWorker = createWorker<DownloadCommentsWorker>()
val downloadDocumentsWorker = createWorker<DownloadDocumentsWorker>()
val downloadEventsWorker = createWorker<DownloadEventsWorker>()
val downloadFieldReportsWorker = createWorker<DownloadFieldReportsWorker>()
val downloadHistorySetWorker = createWorker<DownloadHistorySetWorker>()
val downloadIssueListsWorker = createWorker<DownloadIssueListsWorker>()
val downloadProjectDigestWorker = createWorker<DownloadProjectDigestWorker>()
val downloadRfiWorker = createWorker<DownloadRfisWorker>()
val downloadSheetsWorker = createWorker<DownloadSheetsWorker>()
val downloadSheetTextWorker = createWorker<DownloadSheetTextWorker>()
val downloadSheetVersionsWorker = createWorker<DownloadSheetVersionsWorker>()
val downloadSnapshotsWorker = createWorker<DownloadSnapshotsWorker>()
val downloadStampMetaWorker = createWorker<DownloadStampMetaWorker>()
val downloadTasksWorker = createWorker<DownloadTasksWorker>()
val downloadUserEventsWorker = createWorker<DownloadUserEventsWorker>()
val downloadUserGroupsWorker = createWorker<DownloadUserGroupsWorker>()
val downloadUsersWorker = createWorker<DownloadUsersWorker>()
val path1 = WorkManager.getInstance()
.beginWith(listOf(downloadHistorySetWorker, downloadSheetVersionsWorker))
.then(downloadSheetsWorker)
val path2 = WorkManager.getInstance()
.beginWith(
listOf(
downloadSheetsWorker,
downloadSheetVersionsWorker,
downloadCommentsWorker,
downloadTasksWorker,
downloadProjectDigestWorker,
downloadAnnotationDigestWorker
)
)
.then(downloadUserEventsWorker)
val path3 = WorkManager.getInstance()
.beginWith(
listOf(
downloadRfiWorker,
downloadProjectDigestWorker,
downloadAnnotationDigestWorker,
downloadFieldReportsWorker,
downloadSnapshotsWorker,
downloadTasksWorker
)
)
.then(downloadAssetsWorker)
val path4 = WorkManager.getInstance()
.beginWith(
listOf(
downloadProjectDigestWorker
)
)
.then(downloadRfiWorker)
val path5 = WorkManager.getInstance()
.beginWith(
listOf(
downloadAnnotationDigestWorker
)
)
.then(downloadFieldReportsWorker)
val allItems = WorkManager.getInstance()
.beginWith(
listOf(
downloadAnnotationDigestWorker,
downloadAssetsWorker,
downloadCommentsWorker,
downloadDocumentsWorker,
downloadEventsWorker,
downloadFieldReportsWorker,
downloadHistorySetWorker,
downloadIssueListsWorker,
downloadProjectDigestWorker,
downloadRfiWorker,
downloadSheetsWorker,
downloadSheetTextWorker,
downloadSheetVersionsWorker,
downloadSnapshotsWorker,
downloadStampMetaWorker,
downloadTasksWorker,
downloadUserEventsWorker,
downloadUserGroupsWorker,
downloadUsersWorker
)
)
return listOf(path1, path2, path3, path4, path5, allItems)
}
WorkContinuation
.combine(createWorkContinuations())
.then(OneTimeWorkRequestBuilder<FinalWorker>().build())
.enqueue()
Output
2018-12-12 13:40:32.838 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadHistorySetWorker@901a7a0::class.java - Started
2018-12-12 13:40:32.843 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSheetVersionsWorker@f699dcc::class.java - Started
2018-12-12 13:40:32.846 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadCommentsWorker@92e891b::class.java - Started
2018-12-12 13:40:34.329 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadCommentsWorker@92e891b::class.java - Done
2018-12-12 13:40:34.330 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadTasksWorker@ffc4473::class.java - Started
2018-12-12 13:40:34.958 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSheetVersionsWorker@f699dcc::class.java - Done
2018-12-12 13:40:34.958 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadProjectDigestWorker@2cc012e::class.java - Started
2018-12-12 13:40:35.820 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadProjectDigestWorker@2cc012e::class.java - Done
2018-12-12 13:40:35.822 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadAnnotationDigestWorker@594c565::class.java - Started
2018-12-12 13:40:35.929 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadHistorySetWorker@901a7a0::class.java - Done
2018-12-12 13:40:35.930 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadRfisWorker@c7ae448::class.java - Started
2018-12-12 13:40:38.734 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadRfisWorker@c7ae448::class.java - Done
2018-12-12 13:40:38.735 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadFieldReportsWorker@fff3063::class.java - Started
2018-12-12 13:40:38.860 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadTasksWorker@ffc4473::class.java - Done
2018-12-12 13:40:38.861 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSnapshotsWorker@e5111de::class.java - Started
2018-12-12 13:40:39.397 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadAnnotationDigestWorker@594c565::class.java - Done
2018-12-12 13:40:39.398 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadDocumentsWorker@8dad1d5::class.java - Started
2018-12-12 13:40:39.899 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadFieldReportsWorker@fff3063::class.java - Done
2018-12-12 13:40:39.900 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadEventsWorker@d3ef78::class.java - Started
2018-12-12 13:40:40.682 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSnapshotsWorker@e5111de::class.java - Done
2018-12-12 13:40:40.683 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadIssueListsWorker@e5097b7::class.java - Started
2018-12-12 13:40:44.137 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadDocumentsWorker@8dad1d5::class.java - Done
2018-12-12 13:40:44.138 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSheetTextWorker@9c4d042::class.java - Started
2018-12-12 13:40:44.207 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadEventsWorker@d3ef78::class.java - Done
2018-12-12 13:40:44.207 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadStampMetaWorker@855de89::class.java - Started
2018-12-12 13:40:45.507 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadIssueListsWorker@e5097b7::class.java - Done
2018-12-12 13:40:45.508 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadUserGroupsWorker@40c1abc::class.java - Started
2018-12-12 13:40:46.180 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadStampMetaWorker@855de89::class.java - Done
2018-12-12 13:40:46.181 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadUsersWorker@5011ecb::class.java - Started
2018-12-12 13:40:46.615 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadUserGroupsWorker@40c1abc::class.java - Done
2018-12-12 13:40:46.616 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSheetsWorker@c8b0166::class.java - Started
2018-12-12 13:40:48.392 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadUsersWorker@5011ecb::class.java - Done
2018-12-12 13:40:48.600 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSheetTextWorker@9c4d042::class.java - Done
2018-12-12 13:40:50.577 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadSheetsWorker@c8b0166::class.java - Done
2018-12-12 13:40:50.600 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadUserEventsWorker@4fb50bb::class.java - Started
2018-12-12 13:40:52.083 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadUserEventsWorker@4fb50bb::class.java - Done
2018-12-12 13:41:08.753 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadRfisWorker@4a72ac6::class.java - Started
2018-12-12 13:41:13.529 6156-6225/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadRfisWorker@4a72ac6::class.java - Done
2018-12-12 13:41:13.758 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadFieldReportsWorker@5cd6ad9::class.java - Started
2018-12-12 13:41:18.384 6156-6226/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadFieldReportsWorker@5cd6ad9::class.java - Done
2018-12-12 13:41:18.411 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadAssetsWorker@2f5d176::class.java - Started
2018-12-12 13:41:18.718 6156-6224/com.plangrid.android.devgrid I/System.out: com.plangrid.android.workmanager.DownloadAssetsWorker@2f5d176::class.java - Done
2018-12-12 13:41:18.757 6156-6226/com.plangrid.android.devgrid I/System.out: ALL WORK COMPLETE
ro...@bbc.co.uk <ro...@bbc.co.uk> #11
We'd also like to see more verbose WorkManager logs - right now, you're only showing your own app's logs, so I don't know what's happening inside WorkManager.
el...@gmail.com <el...@gmail.com> #12
ja...@gmail.com <ja...@gmail.com> #13
mi...@gmail.com <mi...@gmail.com> #14
What you are seeing is the same bug (
When you have multiple subgraphs that define dependencies on the same `WorkRequest` we did not check if we already ran the Worker (i.e. if It was `BLOCKED`).
This should be fixed in beta01.
This should also fix the other problem where each subgraph defines conflicting dependencies. Something like:
A B
| |
B A
-------
|
Combined
In both the cases we will only run A, B exactly once.
ma...@gmail.com <ma...@gmail.com> #15
Thank you very much for your help and quick responses!
bo...@google.com <bo...@google.com> #16
re #12: are you ok sharing the apk and repro steps? And can you share logcat from starting the app to when the crash happens.
Or if anyone has a consistent repro ideally on a pixel 6 pro device.
ch...@gmail.com <ch...@gmail.com> #17
mi...@gmail.com <mi...@gmail.com> #18
az...@gmail.com <az...@gmail.com> #19
be...@ripl.com <be...@ripl.com> #20
ma...@gmail.com <ma...@gmail.com> #21
we...@shopee.com <we...@shopee.com> #22
we...@shopee.com <we...@shopee.com> #23
SIGABRT: Abort program: [FATAL:output_surface_provider_webview.cc(81)] Non owned context lost!
SIGTRAP: Trace/breakpoint trap
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/data/app/~~XqtkHK8Ff7dTq8ck4pb8Hg==/com.google.android.webview-MefwP-vtB304zzhLx9nWtg==/base.apk!libmonochrome.so:0 |
/system/lib64/libhwui.so:48 | android::uirenderer::WebViewFunctor::destroyContext()
/system/lib64/libhwui.so:16 | android::uirenderer::WebViewFunctor::~WebViewFunctor()
/system/lib64/libhwui.so:308 | android::uirenderer::WebViewFunctorManager::destroyFunctor(int)
/system/lib64/libhwui.so:220 | android::uirenderer::WorkQueue::process()
/system/lib64/libhwui.so:88 | android::uirenderer::renderthread::RenderThread::threadLoop()
/system/lib64/libutils.so:260 | android::Thread::_threadLoop(void*)
/system/lib64/libutils.so:412 | thread_data_t::trampoline(thread_data_t const*)
/apex/com.android.runtime/lib64/bionic/libc.so!libc.so:64 | __pthread_start(void*)
/apex/com.android.runtime/lib64/bionic/libc.so:64 | __start_thread
we...@shopee.com <we...@shopee.com> #24
Os Version: 11
Brand: Xiaomi
Device Model: M2003J15SC
mi...@migrosonline.ch <mi...@migrosonline.ch> #25
I am able to reproduce it easily with the webview and embedded youtube iframe using PierfrancescoSoffritti/android-youtube-player library. See project and video attached.
Android System WebView version 113.0.5672.132 Pixel 7 Android version 13
10:48:50.803 A GrContext is abandoned/device lost at start of CanvasContext::draw
10:48:50.876 A runtime.cc:681] Runtime aborting...
runtime.cc:681] Dumping all threads without mutator lock held
runtime.cc:681] All threads:
runtime.cc:681] DALVIK THREADS (44):
runtime.cc:681] "RenderThread" prio=10 tid=18 Runnable
runtime.cc:681] | group="" sCount=0 ucsCount=0 flags=0 obj=0x13e806a8 self=0xb4000079236a35e0
runtime.cc:681] | sysTid=14517 nice=-10 cgrp=system sched=0/0 handle=0x7737606cb0
runtime.cc:681] | state=R schedstat=( 7642132338 620073314 13534 ) utm=463 stm=300 core=5 HZ=100
runtime.cc:681] | stack=0x773750f000-0x7737511000 stackSize=991KB
runtime.cc:681] | held mutexes= "abort lock" "mutator lock"(shared held)
runtime.cc:681] native: #00 pc 00000000006b13a0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #01 pc 0000000000719cf0 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, bool, BacktraceMap*, bool) const+236) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 0000000000729248 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+216) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #03 pc 0000000000374f6c /apex/com.android.art/lib64/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+448) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #04 pc 0000000000727728 /apex/com.android.art/lib64/libart.so (art::ThreadList::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, bool)+292) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #05 pc 00000000006ffa28 /apex/com.android.art/lib64/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+212) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #06 pc 00000000006fa194 /apex/com.android.art/lib64/libart.so (art::Runtime::Abort(char const*)+964) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #07 pc 0000000000016ea8 /apex/com.android.art/lib64/libbase.so (android::base::SetAborter(std::__1::function<void (char const*)>&&)::$_3::__invoke(char const*)+80) (BuildId: 420d56eac27a210c92900f3ddb760c86)
runtime.cc:681] native: #08 pc 0000000000009f04 /system/lib64/liblog.so (__android_log_assert+292) (BuildId: 83100f716c2699f05eed85c01584921e)
runtime.cc:681] native: #09 pc 0000000000428554 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::draw()+2180) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #10 pc 00000000004b5ab4 /system/lib64/libhwui.so (std::__1::__function::__func<android::uirenderer::renderthread::DrawFrameTask::postAndWait()::$_0, std::__1::allocator<android::uirenderer::renderthread::DrawFrameTask::postAndWait()::$_0>, void ()>::operator()() (.__uniq.264041412789356548918088680803242235290.c1671e787f244890c877724752face20)+644) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #11 pc 000000000058b504 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+644) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #12 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #13 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #14 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "main" prio=10 tid=1 Native
10:48:50.876 A runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x72038478 self=0xb40000792366bbe0
runtime.cc:681] | sysTid=14481 nice=-10 cgrp=system sched=0/0 handle=0x7a6f3de4f8
runtime.cc:681] | state=S schedstat=( 6847920072 1489767009 31248 ) utm=553 stm=131 core=4 HZ=100
runtime.cc:681] | stack=0x7ff1fe5000-0x7ff1fe7000 stackSize=8188KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 0000000000236380 /system/lib64/libhwui.so (android::android_view_ThreadedRenderer_syncAndDrawFrame(_JNIEnv*, _jobject*, long, _jlongArray*, int) (.__uniq.98142604362848954914070330402921370559)+592) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] at android.graphics.HardwareRenderer.nSyncAndDrawFrame(Native method)
runtime.cc:681] at android.graphics.HardwareRenderer.syncAndDrawFrame(HardwareRenderer.java:457)
runtime.cc:681] at android.view.ThreadedRenderer.draw(ThreadedRenderer.java:811)
runtime.cc:681] at android.view.ViewRootImpl.draw(ViewRootImpl.java:4768)
runtime.cc:681] at android.view.ViewRootImpl.performDraw(ViewRootImpl.java:4479)
runtime.cc:681] at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:3666)
runtime.cc:681] at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:2350)
runtime.cc:681] at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:9194)
runtime.cc:681] at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1231)
runtime.cc:681] at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1239)
runtime.cc:681] at android.view.Choreographer.doCallbacks(Choreographer.java:899)
runtime.cc:681] at android.view.Choreographer.doFrame(Choreographer.java:832)
runtime.cc:681] at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:1214)
runtime.cc:681] at android.os.Handler.handleCallback(Handler.java:942)
runtime.cc:681] at android.os.Handler.dispatchMessage(Handler.java:99)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:201)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.app.ActivityThread.main(ActivityThread.java:7884)
runtime.cc:681] at java.lang.reflect.Method.invoke(Native method)
runtime.cc:681] at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:548)
runtime.cc:681] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:936)
runtime.cc:681]
runtime.cc:681] "Signal Catcher" prio=10 tid=6 WaitingInMainSignalCatcherLoop
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e801f8 self=0xb40000792367d200
runtime.cc:681] | sysTid=14487 nice=-20 cgrp=system sched=0/0 handle=0x7796319cb0
runtime.cc:681] | state=S schedstat=( 177287 4761 1 ) utm=0 stm=0 core=6 HZ=100
runtime.cc:681] | stack=0x7796222000-0x7796224000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad018 /apex/com.android.runtime/lib64/bionic/libc.so (__rt_sigtimedwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000063f38 /apex/com.android.runtime/lib64/bionic/libc.so (sigwait64+88) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 000000000057fa74 /apex/com.android.art/lib64/libart.so (art::SignalCatcher::WaitForSignal(art::Thread*, art::SignalSet&)+112) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
10:48:50.876 A runtime.cc:681] native: #03 pc 000000000057f67c /apex/com.android.art/lib64/libart.so (art::SignalCatcher::Run(void*)+232) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #04 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #05 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "perfetto_hprof_listener" prio=10 tid=7 Native (still starting up)
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x0 self=0xb40000792367edd0
runtime.cc:681] | sysTid=14488 nice=-20 cgrp=system sched=0/0 handle=0x779421bcb0
runtime.cc:681] | state=S schedstat=( 114502 0 1 ) utm=0 stm=0 core=6 HZ=100
runtime.cc:681] | stack=0x7794124000-0x7794126000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ac334 /apex/com.android.runtime/lib64/bionic/libc.so (read+4) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 000000000001e10c /apex/com.android.art/lib64/libperfetto_hprof.so (void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, ArtPlugin_Initialize::$_34> >(void*)+264) (BuildId: f7f741da67bb911fea60db7836809941)
runtime.cc:681] native: #02 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ADB-JDWP Connection Control Thread" prio=10 tid=8 WaitingInMainDebuggerLoop
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80270 self=0xb400007923670f50
runtime.cc:681] | sysTid=14489 nice=-20 cgrp=system sched=0/0 handle=0x779411dcb0
runtime.cc:681] | state=S schedstat=( 838341 22216 6 ) utm=0 stm=0 core=6 HZ=100
runtime.cc:681] | stack=0x7794026000-0x7794028000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad6f8 /apex/com.android.runtime/lib64/bionic/libc.so (__ppoll+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 000000000006104c /apex/com.android.runtime/lib64/bionic/libc.so (poll+92) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 0000000000009abc /apex/com.android.art/lib64/libadbconnection.so (adbconnection::AdbConnectionState::RunPollLoop(art::Thread*)+724) (BuildId: 4cfd822a130736431539d54e5665fa7f)
runtime.cc:681] native: #03 pc 0000000000008160 /apex/com.android.art/lib64/libadbconnection.so (adbconnection::CallbackFunction(void*)+1360) (BuildId: 4cfd822a130736431539d54e5665fa7f)
runtime.cc:681] native: #04 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #05 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "Jit thread pool worker thread 0" prio=5 tid=9 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e802e8 self=0xb400007923697330
runtime.cc:681] | sysTid=14490 nice=9 cgrp=system sched=0/0 handle=0x7741c32cb0
runtime.cc:681] | state=S schedstat=( 408214913 408660452 2257 ) utm=25 stm=15 core=4 HZ=100
runtime.cc:681] | stack=0x7741b33000-0x7741b35000 stackSize=1023KB
runtime.cc:681] | held mutexes=
10:48:50.876 A runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000003a9ae4 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 000000000062d514 /apex/com.android.art/lib64/libart.so (art::ThreadPool::GetTask(art::Thread*)+120) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #03 pc 000000000062d374 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Run()+136) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #04 pc 000000000062d250 /apex/com.android.art/lib64/libart.so (art::ThreadPoolWorker::Callback(void*)+164) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #05 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #06 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "HeapTaskDaemon" prio=5 tid=10 WaitingForTaskProcessor
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81b50 self=0xb400007923693b90
runtime.cc:681] | sysTid=14491 nice=4 cgrp=system sched=0/0 handle=0x7740b2ccb0
runtime.cc:681] | state=S schedstat=( 83210120 9812211 61 ) utm=7 stm=1 core=4 HZ=100
runtime.cc:681] | stack=0x7740a29000-0x7740a2b000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000003a9ae4 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 0000000000485728 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::GetTask(art::Thread*)+792) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #03 pc 00000000004853c4 /apex/com.android.art/lib64/libart.so (art::gc::TaskProcessor::RunAllTasks(art::Thread*)+32) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] at dalvik.system.VMRuntime.runHeapTasks(Native method)
runtime.cc:681] at java.lang.Daemons$HeapTaskDaemon.runInternal(Daemons.java:609)
runtime.cc:681] at java.lang.Daemons$Daemon.run(Daemons.java:140)
runtime.cc:681] at java.lang.Thread.run(Thread.java:1012)
runtime.cc:681]
runtime.cc:681] "ReferenceQueueDaemon" prio=5 tid=11 Waiting
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80360 self=0xb400007923695760
runtime.cc:681] | sysTid=14492 nice=4 cgrp=system sched=0/0 handle=0x7740a22cb0
runtime.cc:681] | state=S schedstat=( 5731610 3319700 27 ) utm=0 stm=0 core=3 HZ=100
runtime.cc:681] | stack=0x774091f000-0x7740921000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000003a9ae4 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 00000000004e0cd0 /apex/com.android.art/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::ObjPtr<art::mirror::Object>, long, int, bool, art::ThreadState)+2632) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] at java.lang.Object.wait(Native method)
runtime.cc:681] - waiting on <0x044689fd> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
runtime.cc:681] at java.lang.Object.wait(Object.java:442)
10:48:50.876 A runtime.cc:681] at java.lang.Object.wait(Object.java:568)
runtime.cc:681] at java.lang.Daemons$ReferenceQueueDaemon.runInternal(Daemons.java:232)
runtime.cc:681] - locked <0x044689fd> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
runtime.cc:681] at java.lang.Daemons$Daemon.run(Daemons.java:140)
runtime.cc:681] at java.lang.Thread.run(Thread.java:1012)
runtime.cc:681]
runtime.cc:681] "FinalizerWatchdogDaemon" prio=5 tid=12 Waiting
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e803d8 self=0xb40000792369c6a0
runtime.cc:681] | sysTid=14494 nice=4 cgrp=system sched=0/0 handle=0x773e80ecb0
runtime.cc:681] | state=S schedstat=( 903727 706420 7 ) utm=0 stm=0 core=2 HZ=100
runtime.cc:681] | stack=0x773e70b000-0x773e70d000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000003a9ae4 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 00000000004e0cd0 /apex/com.android.art/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::ObjPtr<art::mirror::Object>, long, int, bool, art::ThreadState)+2632) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] at java.lang.Object.wait(Native method)
runtime.cc:681] - waiting on <0x06c206f2> (a java.lang.Daemons$FinalizerWatchdogDaemon)
runtime.cc:681] at java.lang.Object.wait(Object.java:442)
runtime.cc:681] at java.lang.Object.wait(Object.java:568)
runtime.cc:681] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepUntilNeeded(Daemons.java:385)
runtime.cc:681] - locked <0x06c206f2> (a java.lang.Daemons$FinalizerWatchdogDaemon)
runtime.cc:681] at java.lang.Daemons$FinalizerWatchdogDaemon.runInternal(Daemons.java:365)
runtime.cc:681] at java.lang.Daemons$Daemon.run(Daemons.java:140)
runtime.cc:681] at java.lang.Thread.run(Thread.java:1012)
runtime.cc:681]
runtime.cc:681] "FinalizerDaemon" prio=5 tid=13 Waiting
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80450 self=0xb400007923698f00
runtime.cc:681] | sysTid=14493 nice=4 cgrp=system sched=0/0 handle=0x773f918cb0
runtime.cc:681] | state=S schedstat=( 8143066 1114259 9 ) utm=0 stm=0 core=5 HZ=100
runtime.cc:681] | stack=0x773f815000-0x773f817000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000003a9ae4 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 00000000004e0cd0 /apex/com.android.art/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::ObjPtr<art::mirror::Object>, long, int, bool, art::ThreadState)+2632) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] at java.lang.Object.wait(Native method)
runtime.cc:681] - waiting on <0x0fe6e143> (a java.lang.Object)
runtime.cc:681] at java.lang.Object.wait(Object.java:442)
runtime.cc:681] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)
runtime.cc:681] - locked <0x0fe6e143> (a java.lang.Object)
runtime.cc:681] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)
runtime.cc:681] at java.lang.Daemons$FinalizerDaemon.runInternal(Daemons.java:300)
runtime.cc:681] at java.lang.Daemons$Daemon.run(Daemons.java:140)
runtime.cc:681] at java.lang.Thread.run(Thread.java:1012)
runtime.cc:681]
runtime.cc:681] "binder:14481_1" prio=5 tid=14 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e804c8 self=0xb40000792369fe40
runtime.cc:681] | sysTid=14495 nice=0 cgrp=system sched=0/0 handle=0x773c5dbcb0
10:48:50.876 A runtime.cc:681] | state=S schedstat=( 254771531 89964428 1640 ) utm=15 stm=9 core=4 HZ=100
runtime.cc:681] | stack=0x773c4e4000-0x773c4e6000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ac618 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 000000000005e72c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000950dc /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #03 pc 0000000000094f88 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #04 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #05 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #06 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #07 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "binder:14481_2" prio=5 tid=15 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80540 self=0xb40000792369aad0
runtime.cc:681] | sysTid=14496 nice=0 cgrp=system sched=0/0 handle=0x773b4ddcb0
runtime.cc:681] | state=S schedstat=( 2465170 199260 6 ) utm=0 stm=0 core=5 HZ=100
runtime.cc:681] | stack=0x773b3e6000-0x773b3e8000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ac618 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 000000000005e72c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000950dc /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #03 pc 0000000000094f88 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #04 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #05 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #06 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #07 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "binder:14481_3" prio=5 tid=16 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e805b8 self=0xb40000792369e270
runtime.cc:681] | sysTid=14497 nice=0 cgrp=system sched=0/0 handle=0x773a3dfcb0
runtime.cc:681] | state=S schedstat=( 114578619 57875485 699 ) utm=7 stm=4 core=7 HZ=100
runtime.cc:681] | stack=0x773a2e8000-0x773a2ea000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ac618 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
10:48:50.876 A runtime.cc:681] native: #01 pc 000000000005e72c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000950dc /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #03 pc 0000000000094f88 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #04 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #05 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #06 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #07 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "Profile Saver" prio=5 tid=17 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80630 self=0xb4000079236a1a10
runtime.cc:681] | sysTid=14515 nice=9 cgrp=system sched=0/0 handle=0x7738837cb0
runtime.cc:681] | state=S schedstat=( 28083130 6749918 30 ) utm=2 stm=0 core=4 HZ=100
runtime.cc:681] | stack=0x7738740000-0x7738742000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000004e1ef8 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::TimedWait(art::Thread*, long, int)+252) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 000000000055a420 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::Run()+524) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #03 pc 0000000000559798 /apex/com.android.art/lib64/libart.so (art::ProfileSaver::RunProfileSaverThread(void*)+152) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #04 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #05 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "Chrome_ProcessLauncherThread" prio=5 tid=20 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80890 self=0xb4000079236af890
runtime.cc:681] | sysTid=14551 nice=0 cgrp=system sched=0/0 handle=0x773215bcb0
runtime.cc:681] | state=S schedstat=( 43495888 23310504 139 ) utm=2 stm=1 core=2 HZ=100
runtime.cc:681] | stack=0x7732058000-0x773205a000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
10:48:50.876 A runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "ThreadPoolForeg" prio=5 tid=22 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80a48 self=0xb4000079236b1460
runtime.cc:681] | sysTid=14555 nice=0 cgrp=system sched=0/0 handle=0x772fa49cb0
runtime.cc:681] | state=S schedstat=( 846736106 304853431 4969 ) utm=52 stm=31 core=7 HZ=100
runtime.cc:681] | stack=0x772f952000-0x772f954000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1654 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_timedwait+132) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025b0cd4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fca34 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620bd8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000025c1a3c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19a8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "GoogleApiHandler" prio=5 tid=23 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80ac0 self=0xb4000079236adcc0
runtime.cc:681] | sysTid=14558 nice=9 cgrp=system sched=0/0 handle=0x772b74fcb0
runtime.cc:681] | state=S schedstat=( 10172528 12437499 66 ) utm=1 stm=0 core=7 HZ=100
runtime.cc:681] | stack=0x772b64c000-0x772b64e000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
10:48:50.876 A runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "MediaCodec_looper" prio=10 tid=21 Runnable
runtime.cc:681] | group="" sCount=0 ucsCount=0 flags=0 obj=0x13480028 self=0xb4000079237434a0
runtime.cc:681] | sysTid=15330 nice=-10 cgrp=system sched=0/0 handle=0x7797ca0cb0
runtime.cc:681] | state=R schedstat=( 1193901143 407361719 6230 ) utm=59 stm=59 core=1 HZ=100
runtime.cc:681] | stack=0x7797ba9000-0x7797bab000 stackSize=991KB
runtime.cc:681] | held mutexes= "mutator lock"(shared held)
runtime.cc:681] native: #00 pc 00000000006b13a0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #01 pc 0000000000719cf0 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, bool, BacktraceMap*, bool) const+236) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 0000000000729248 /apex/com.android.art/lib64/libart.so (art::DumpCheckpoint::Run(art::Thread*)+216) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #03 pc 00000000004260b0 /apex/com.android.art/lib64/libart.so (art::Thread::RunCheckpointFunction()+140) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #04 pc 0000000000786ecc /apex/com.android.art/lib64/libart.so (artTestSuspendFromCode+48) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #05 pc 0000000000460f3c /apex/com.android.art/lib64/libart.so (art_quick_test_suspend+156) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #06 pc 0000000000200804 /apex/com.android.art/lib64/libart.so (ExecuteNterpImpl+1908) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #07 pc 0000000000341314 /system/framework/framework.jar (android.media.MediaCodec$BufferInfo.<init>)
runtime.cc:681] native: #08 pc 0000000000457b6c /apex/com.android.art/lib64/libart.so (art_quick_invoke_stub+556) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #09 pc 0000000000484e54 /apex/com.android.art/lib64/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+156) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #10 pc 00000000005a5e20 /apex/com.android.art/lib64/libart.so (art::JNI<true>::CallNonvirtualVoidMethodV(_JNIEnv*, _jobject*, _jclass*, _jmethodID*, std::__va_list)+408) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #11 pc 00000000005a55ac /apex/com.android.art/lib64/libart.so (art::JNI<true>::NewObjectV(_JNIEnv*, _jclass*, _jmethodID*, std::__va_list)+212) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #12 pc 0000000000585fd4 /apex/com.android.art/lib64/libart.so (art::(anonymous namespace)::CheckJNI::NewObjectV(_JNIEnv*, _jclass*, _jmethodID*, std::__va_list) (.__uniq.99033978352804627313491551960229047428.llvm.14780401260801329705)+312) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
10:48:50.876 A runtime.cc:681] native: #13 pc 000000000003e408 /system/lib64/libmedia_jni.so (_JNIEnv::NewObject(_jclass*, _jmethodID*, ...)+120) (BuildId: 710623d60d6a6c3632adb8eeaebe5b17)
runtime.cc:681] native: #14 pc 00000000000487b8 /system/lib64/libmedia_jni.so (android::JMediaCodec::handleCallback(android::sp<android::AMessage> const&)+520) (BuildId: 710623d60d6a6c3632adb8eeaebe5b17)
runtime.cc:681] native: #15 pc 00000000000199d4 /system/lib64/libstagefright_foundation.so (android::AHandler::deliverMessage(android::sp<android::AMessage> const&)+84) (BuildId: e25831bf42d0848944e14db97a3daa0c)
runtime.cc:681] native: #16 pc 000000000002013c /system/lib64/libstagefright_foundation.so (android::AMessage::deliver()+188) (BuildId: e25831bf42d0848944e14db97a3daa0c)
runtime.cc:681] native: #17 pc 000000000001ae5c /system/lib64/libstagefright_foundation.so (android::ALooper::loop()+636) (BuildId: e25831bf42d0848944e14db97a3daa0c)
runtime.cc:681] native: #18 pc 0000000000014738 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+344) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #19 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #20 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #21 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] at android.media.MediaCodec$BufferInfo.<init>(MediaCodec.java:1590)
runtime.cc:681]
runtime.cc:681] "Chrome_IOThread" prio=7 tid=24 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80ba0 self=0xb4000079236b4c00
runtime.cc:681] | sysTid=14559 nice=-4 cgrp=system sched=0/0 handle=0x772a645cb0
runtime.cc:681] | state=S schedstat=( 4278258075 1370498812 25470 ) utm=280 stm=147 core=5 HZ=100
runtime.cc:681] | stack=0x772a54e000-0x772a550000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000050ca4cc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #02 pc 00000000050c84c8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #03 pc 00000000025b0120 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025b8218 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025b7da8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 00000000025b7c08 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 000000000321cfb4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
10:48:50.876 A runtime.cc:681] native: #08 pc 00000000026c3528 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #11 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ThreadPoolForeg" prio=5 tid=25 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80c18 self=0xb4000079236b9f70
runtime.cc:681] | sysTid=14556 nice=0 cgrp=system sched=0/0 handle=0x772e94bcb0
runtime.cc:681] | state=S schedstat=( 189487752 71368243 840 ) utm=13 stm=5 core=4 HZ=100
runtime.cc:681] | stack=0x772e854000-0x772e856000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1654 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_timedwait+132) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025b0cd4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fca34 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620bd8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000025c1a3c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19a8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
10:48:50.876 A runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ThreadPoolSingl" prio=5 tid=26 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80c90 self=0xb4000079236b83a0
runtime.cc:681] | sysTid=14606 nice=0 cgrp=system sched=0/0 handle=0x771fc59cb0
runtime.cc:681] | state=S schedstat=( 1999567177 678462940 9782 ) utm=151 stm=48 core=2 HZ=100
runtime.cc:681] | stack=0x771fb62000-0x771fb64000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1654 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_timedwait+132) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025b0cd4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fca34 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620bd8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000022a97fc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "PlatformServiceBridgeHandlerThread" prio=5 tid=27 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80d08 self=0xb4000079236b67d0
runtime.cc:681] | sysTid=14608 nice=0 cgrp=system sched=0/0 handle=0x771da5dcb0
runtime.cc:681] | state=S schedstat=( 42105829 25690966 480 ) utm=3 stm=0 core=1 HZ=100
runtime.cc:681] | stack=0x771d95a000-0x771d95c000 stackSize=1039KB
runtime.cc:681] | held mutexes=
10:48:50.876 A runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "CleanupReference" prio=5 tid=28 Waiting
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80de8 self=0xb4000079236bf2e0
runtime.cc:681] | sysTid=14617 nice=0 cgrp=system sched=0/0 handle=0x771a757cb0
runtime.cc:681] | state=S schedstat=( 111491 4965 2 ) utm=0 stm=0 core=7 HZ=100
runtime.cc:681] | stack=0x771a654000-0x771a656000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 00000000003a9ae4 /apex/com.android.art/lib64/libart.so (art::ConditionVariable::WaitHoldingLocks(art::Thread*)+140) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 00000000004e0cd0 /apex/com.android.art/lib64/libart.so (art::Monitor::Wait(art::Thread*, art::ObjPtr<art::mirror::Object>, long, int, bool, art::ThreadState)+2632) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] at java.lang.Object.wait(Native method)
runtime.cc:681] - waiting on <0x0ac283c0> (a java.lang.Object)
runtime.cc:681] at java.lang.Object.wait(Object.java:442)
runtime.cc:681] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:203)
runtime.cc:681] - locked <0x0ac283c0> (a java.lang.Object)
runtime.cc:681] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:224)
runtime.cc:681] at Vj.run(chromium-TrichromeWebViewGoogle6432.aab-stable-567213234:3)
runtime.cc:681]
runtime.cc:681] "ConnectivityThread" prio=5 tid=29 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80e80 self=0xb4000079236c0eb0
runtime.cc:681] | sysTid=14619 nice=0 cgrp=system sched=0/0 handle=0x771964dcb0
runtime.cc:681] | state=S schedstat=( 18662069 8343503 53 ) utm=1 stm=0 core=7 HZ=100
runtime.cc:681] | stack=0x771954a000-0x771954c000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "binder:14481_4" prio=5 tid=30 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80f60 self=0xb4000079236bd710
runtime.cc:681] | sysTid=14631 nice=0 cgrp=system sched=0/0 handle=0x7716249cb0
10:48:50.876 A runtime.cc:681] | state=S schedstat=( 428173163 144493975 2637 ) utm=28 stm=14 core=7 HZ=100
runtime.cc:681] | stack=0x7716152000-0x7716154000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ac618 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 000000000005e72c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000950dc /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #03 pc 0000000000094f88 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #04 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #05 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #06 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #07 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "hwuiTask0" prio=6 tid=31 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e80fd8 self=0xb4000079236c4650
runtime.cc:681] | sysTid=14657 nice=-2 cgrp=system sched=0/0 handle=0x7716e92cb0
runtime.cc:681] | state=S schedstat=( 509969 1623166 12 ) utm=0 stm=0 core=7 HZ=100
runtime.cc:681] | stack=0x7716d9b000-0x7716d9d000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 000000000006ab04 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)+20) (BuildId: 4dcd8d74d9438a75d978c50d1e997325)
runtime.cc:681] native: #04 pc 0000000000254cb0 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #05 pc 0000000000254f1c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #06 pc 0000000000254e58 /system/lib64/libhwui.so (void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, android::uirenderer::CommonPool::CommonPool()::$_0> >(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #07 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #08 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "hwuiTask1" prio=6 tid=32 Native
10:48:50.876 A runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81050 self=0xb4000079236c7df0
runtime.cc:681] | sysTid=14658 nice=-2 cgrp=system sched=0/0 handle=0x7716d94cb0
runtime.cc:681] | state=S schedstat=( 517579 3450642 9 ) utm=0 stm=0 core=7 HZ=100
runtime.cc:681] | stack=0x7716c9d000-0x7716c9f000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 000000000006ab04 /system/lib64/libc++.so (std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)+20) (BuildId: 4dcd8d74d9438a75d978c50d1e997325)
runtime.cc:681] native: #04 pc 0000000000254cb0 /system/lib64/libhwui.so (android::uirenderer::CommonPool::workerLoop()+96) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #05 pc 0000000000254f1c /system/lib64/libhwui.so (android::uirenderer::CommonPool::CommonPool()::$_0::operator()() const (.__uniq.99815402873434996937524029735804459536)+188) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #06 pc 0000000000254e58 /system/lib64/libhwui.so (void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, android::uirenderer::CommonPool::CommonPool()::$_0> >(void*) (.__uniq.99815402873434996937524029735804459536)+40) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #07 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #08 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "AudioThread" prio=5 tid=33 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e810c8 self=0xb4000079236dafe0
runtime.cc:681] | sysTid=14586 nice=0 cgrp=system sched=0/0 handle=0x772624dcb0
runtime.cc:681] | state=S schedstat=( 57028364 45120924 220 ) utm=3 stm=2 core=0 HZ=100
runtime.cc:681] | stack=0x7726156000-0x7726158000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025fbdf0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fcad0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
10:48:50.876 A runtime.cc:681] native: #06 pc 00000000025b88a4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025b8218 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000025b7da8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025b7c08 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000026c3528 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #12 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #13 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "Chrome_InProcGpuThread" prio=7 tid=34 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81140 self=0xb4000079236e56c0
runtime.cc:681] | sysTid=14663 nice=-4 cgrp=system sched=0/0 handle=0x77168e8cb0
runtime.cc:681] | state=S schedstat=( 4949589461 1079514391 12108 ) utm=379 stm=115 core=5 HZ=100
runtime.cc:681] | stack=0x77167f1000-0x77167f3000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1654 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_timedwait+132) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025b0cd4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fca34 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 00000000025b88a4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
10:48:50.876 A runtime.cc:681] native: #07 pc 00000000025b8218 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000025b7da8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025b7c08 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000026c3528 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #12 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #13 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "GAC_Executor[0]" prio=5 tid=35 TimedWaiting
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e811b8 self=0xb4000079236e0350
runtime.cc:681] | sysTid=14690 nice=0 cgrp=system sched=0/0 handle=0x7709c9fcb0
runtime.cc:681] | state=S schedstat=( 3787111 3030762 11 ) utm=0 stm=0 core=1 HZ=100
runtime.cc:681] | stack=0x7709b9c000-0x7709b9e000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000467e58 /apex/com.android.art/lib64/libart.so (art::Thread::Park(bool, long)+616) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 0000000000467688 /apex/com.android.art/lib64/libart.so (art::Unsafe_park(_JNIEnv*, _jobject*, unsigned char, long) (.__uniq.319429422067363160645159987129209045680)+160) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] at jdk.internal.misc.Unsafe.park(Native method)
runtime.cc:681] - waiting on an unknown object
runtime.cc:681] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)
runtime.cc:681] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)
runtime.cc:681] at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:458)
runtime.cc:681] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
runtime.cc:681] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)
runtime.cc:681] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
runtime.cc:681] at L80.run(chromium-TrichromeWebViewGoogle6432.aab-stable-567213234:8)
runtime.cc:681] at java.lang.Thread.run(Thread.java:1012)
runtime.cc:681]
runtime.cc:681] "GAC_Executor[1]" prio=5 tid=36 TimedWaiting
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81338 self=0xb4000079236ee1d0
runtime.cc:681] | sysTid=14692 nice=0 cgrp=system sched=0/0 handle=0x7708b95cb0
runtime.cc:681] | state=S schedstat=( 2564047 139364 10 ) utm=0 stm=0 core=1 HZ=100
runtime.cc:681] | stack=0x7708a92000-0x7708a94000 stackSize=1039KB
runtime.cc:681] | held mutexes=
10:48:50.876 A runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000467e58 /apex/com.android.art/lib64/libart.so (art::Thread::Park(bool, long)+616) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 0000000000467688 /apex/com.android.art/lib64/libart.so (art::Unsafe_park(_JNIEnv*, _jobject*, unsigned char, long) (.__uniq.319429422067363160645159987129209045680)+160) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] at jdk.internal.misc.Unsafe.park(Native method)
runtime.cc:681] - waiting on an unknown object
runtime.cc:681] at java.util.concurrent.locks.LockSupport.parkNanos(LockSupport.java:234)
runtime.cc:681] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.awaitNanos(AbstractQueuedSynchronizer.java:2123)
runtime.cc:681] at java.util.concurrent.LinkedBlockingQueue.poll(LinkedBlockingQueue.java:458)
runtime.cc:681] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1062)
runtime.cc:681] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1123)
runtime.cc:681] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:637)
runtime.cc:681] at L80.run(chromium-TrichromeWebViewGoogle6432.aab-stable-567213234:8)
runtime.cc:681] at java.lang.Thread.run(Thread.java:1012)
runtime.cc:681]
runtime.cc:681] "JavaBridge" prio=5 tid=37 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81410 self=0xb4000079236ec600
runtime.cc:681] | sysTid=14707 nice=0 cgrp=system sched=0/0 handle=0x7707a8bcb0
runtime.cc:681] | state=S schedstat=( 181336306 32049194 746 ) utm=15 stm=2 core=1 HZ=100
runtime.cc:681] | stack=0x7707988000-0x770798a000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "ThreadPoolForeg" prio=5 tid=38 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e814f0 self=0xb4000079236f3540
runtime.cc:681] | sysTid=14585 nice=0 cgrp=system sched=0/0 handle=0x772834bcb0
runtime.cc:681] | state=S schedstat=( 3735351 3247154 11 ) utm=0 stm=0 core=6 HZ=100
runtime.cc:681] | stack=0x7728254000-0x7728256000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
10:48:50.876 A runtime.cc:681] native: #03 pc 00000000025fbdf0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fcad0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620c2c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000025c1a3c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19a8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ThreadPoolForeg" prio=5 tid=39 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81568 self=0xb4000079236f6ce0
runtime.cc:681] | sysTid=14557 nice=0 cgrp=system sched=0/0 handle=0x772e84dcb0
runtime.cc:681] | state=S schedstat=( 36118571 22911574 205 ) utm=2 stm=0 core=6 HZ=100
runtime.cc:681] | stack=0x772e756000-0x772e758000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f660 /apex/com.android.runtime/lib64/bionic/libc.so (syscall+32) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1654 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_timedwait+132) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025b0cd4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fca34 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
10:48:50.876 A runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620bd8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000025c1a3c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19a8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ThreadPoolForeg" prio=5 tid=40 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e815e0 self=0xb4000079236ff7f0
runtime.cc:681] | sysTid=14584 nice=0 cgrp=system sched=0/0 handle=0x7728449cb0
runtime.cc:681] | state=S schedstat=( 3956905 5855715 55 ) utm=0 stm=0 core=3 HZ=100
runtime.cc:681] | stack=0x7728352000-0x7728354000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025fbdf0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fcad0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620c2c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
10:48:50.876 A runtime.cc:681] native: #08 pc 00000000025c1a3c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19a8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ThreadPoolSingl" prio=5 tid=42 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81658 self=0xb4000079237145b0
runtime.cc:681] | sysTid=14592 nice=0 cgrp=system sched=0/0 handle=0x7724051cb0
runtime.cc:681] | state=S schedstat=( 4572714 13050251 45 ) utm=0 stm=0 core=2 HZ=100
runtime.cc:681] | stack=0x7723f5a000-0x7723f5c000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025fbdf0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fcad0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620c2c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 00000000022a97fc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
10:48:50.876 A runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "AudioPortEventHandler" prio=5 tid=41 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e816d0 self=0xb400007923709ed0
runtime.cc:681] | sysTid=14758 nice=0 cgrp=system sched=0/0 handle=0x7705e14cb0
runtime.cc:681] | state=S schedstat=( 350545 90739 1 ) utm=0 stm=0 core=4 HZ=100
runtime.cc:681] | stack=0x7705d11000-0x7705d13000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "HwBinder:14481_1" prio=10 tid=46 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e817b0 self=0xb40000792375ba00
runtime.cc:681] | sysTid=14768 nice=-10 cgrp=system sched=0/0 handle=0x76fb417cb0
runtime.cc:681] | state=S schedstat=( 1707696269 444802794 7733 ) utm=64 stm=106 core=2 HZ=100
runtime.cc:681] | stack=0x76fb320000-0x76fb322000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ac618 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 000000000005e72c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 0000000000081000 /system/lib64/libhidlbase.so (android::hardware::IPCThreadState::joinThreadPool(bool)+688) (BuildId: 794ff1ee2cb0a67125256551f0cd9c21)
runtime.cc:681] native: #03 pc 0000000000080d38 /system/lib64/libhidlbase.so (android::hardware::PoolThread::threadLoop()+24) (BuildId: 794ff1ee2cb0a67125256551f0cd9c21)
runtime.cc:681] native: #04 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #05 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #06 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #07 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ThreadPoolSingl" prio=5 tid=47 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81828 self=0xb400007923772390
runtime.cc:681] | sysTid=14623 nice=0 cgrp=system sched=0/0 handle=0x7718543cb0
runtime.cc:681] | state=S schedstat=( 36313275 11207275 148 ) utm=2 stm=0 core=5 HZ=100
runtime.cc:681] | stack=0x771844c000-0x771844e000 stackSize=991KB
runtime.cc:681] | held mutexes=
10:48:50.876 A runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 00000000025fbdf0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #04 pc 00000000025fcad0 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #05 pc 00000000025fc6f4 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #06 pc 0000000002620c2c /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #07 pc 00000000025c0128 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #08 pc 000000000308ea70 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #09 pc 00000000025c19e8 /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #10 pc 00000000025fbffc /data/app/~~KjLfMlPjXbm2i8Byyd7o0g==/com.google.android.trichromelibrary_567213234-3ruD1BwSPfCRJlTnpZm6oA==/base.apk (offset 8a9000) (???) (BuildId: a97d4c228d614920e1cf0628bee0856e4f495748)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "CameraManager" prio=5 tid=48 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e818a0 self=0xb400007923775b30
runtime.cc:681] | sysTid=14783 nice=0 cgrp=system sched=0/0 handle=0x76f8536cb0
runtime.cc:681] | state=S schedstat=( 256307 22705 2 ) utm=0 stm=0 core=6 HZ=100
runtime.cc:681] | stack=0x76f8433000-0x76f8435000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
10:48:50.876 A runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "queued-work-looper" prio=6 tid=2 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81980 self=0xb4000079236c2a80
runtime.cc:681] | sysTid=14821 nice=-2 cgrp=system sched=0/0 handle=0x7799178cb0
runtime.cc:681] | state=S schedstat=( 533528 158732 2 ) utm=0 stm=0 core=1 HZ=100
runtime.cc:681] | stack=0x7799075000-0x7799077000 stackSize=1039KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ad5f8 /apex/com.android.runtime/lib64/bionic/libc.so (__epoll_pwait+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000010f00 /system/lib64/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+176) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #02 pc 000000000015f33c /system/lib64/libandroid_runtime.so (android::android_os_MessageQueue_nativePollOnce(_JNIEnv*, _jobject*, long, int)+44) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] at android.os.MessageQueue.nativePollOnce(Native method)
runtime.cc:681] at android.os.MessageQueue.next(MessageQueue.java:335)
runtime.cc:681] at android.os.Looper.loopOnce(Looper.java:161)
runtime.cc:681] at android.os.Looper.loop(Looper.java:288)
runtime.cc:681] at android.os.HandlerThread.run(HandlerThread.java:67)
runtime.cc:681]
runtime.cc:681] "binder:14481_5" prio=5 tid=5 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x13e81ad8 self=0xb40000792376ebf0
runtime.cc:681] | sysTid=14930 nice=0 cgrp=system sched=0/0 handle=0x7798d6ecb0
runtime.cc:681] | state=S schedstat=( 100261790 54516392 644 ) utm=6 stm=3 core=0 HZ=100
runtime.cc:681] | stack=0x7798c77000-0x7798c79000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 00000000000ac618 /apex/com.android.runtime/lib64/bionic/libc.so (__ioctl+8) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 000000000005e72c /apex/com.android.runtime/lib64/bionic/libc.so (ioctl+156) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000950dc /system/lib64/libbinder.so (android::IPCThreadState::joinThreadPool(bool)+316) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #03 pc 0000000000094f88 /system/lib64/libbinder.so (android::PoolThread::threadLoop()+24) (BuildId: 5f5bf5a71dd1e5608b2a1611686e5ae9)
runtime.cc:681] native: #04 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #05 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #06 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #07 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "AudioTrack" prio=10 tid=4 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x12e40020 self=0xb400007923738dc0
runtime.cc:681] | sysTid=15077 nice=-16 cgrp=system sched=0/0 handle=0x7798e6ecb0
runtime.cc:681] | state=S schedstat=( 472893346 82152086 2933 ) utm=23 stm=23 core=3 HZ=100
runtime.cc:681] | stack=0x7798d77000-0x7798d79000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
10:48:50.876 A runtime.cc:681] native: #01 pc 00000000000a93fc /system/lib64/libaudioclient.so (android::ClientProxy::obtainBuffer(android::Proxy::Buffer*, timespec const*, timespec*)+716) (BuildId: dcbec64a1bcda4b29472d42c95ad6783)
runtime.cc:681] native: #02 pc 000000000009734c /system/lib64/libaudioclient.so (android::AudioTrack::obtainBuffer(android::AudioTrack::Buffer*, timespec const*, timespec*, unsigned long*)+556) (BuildId: dcbec64a1bcda4b29472d42c95ad6783)
runtime.cc:681] native: #03 pc 000000000009621c /system/lib64/libaudioclient.so (android::AudioTrack::processAudioBuffer()+2636) (BuildId: dcbec64a1bcda4b29472d42c95ad6783)
runtime.cc:681] native: #04 pc 00000000000954e0 /system/lib64/libaudioclient.so (android::AudioTrack::AudioTrackThread::threadLoop()+272) (BuildId: dcbec64a1bcda4b29472d42c95ad6783)
runtime.cc:681] native: #05 pc 0000000000014738 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+344) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #06 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #07 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #08 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] "ImageReader-1x1f23u256m2-14481-6" prio=5 tid=19 Native
runtime.cc:681] | group="" sCount=1 ucsCount=0 flags=1 obj=0x133c10d0 self=0xb400007923798770
runtime.cc:681] | sysTid=15329 nice=0 cgrp=system sched=0/0 handle=0x7797d9ecb0
runtime.cc:681] | state=S schedstat=( 19592655 3812613 452 ) utm=1 stm=0 core=0 HZ=100
runtime.cc:681] | stack=0x7797ca7000-0x7797ca9000 stackSize=991KB
runtime.cc:681] | held mutexes=
runtime.cc:681] native: #00 pc 000000000004f65c /apex/com.android.runtime/lib64/bionic/libc.so (syscall+28) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #01 pc 0000000000053f40 /apex/com.android.runtime/lib64/bionic/libc.so (__futex_wait_ex(void volatile*, bool, int, bool, timespec const*)+144) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #02 pc 00000000000c1598 /apex/com.android.runtime/lib64/bionic/libc.so (pthread_cond_wait+72) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #03 pc 000000000001ad5c /system/lib64/libstagefright_foundation.so (android::ALooper::loop()+380) (BuildId: e25831bf42d0848944e14db97a3daa0c)
runtime.cc:681] native: #04 pc 0000000000014738 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+344) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #05 pc 00000000000c8f6c /system/lib64/libandroid_runtime.so (android::AndroidRuntime::javaThreadShell(void*)+140) (BuildId: c037f3c34e04670185373f499ab73dbf)
runtime.cc:681] native: #06 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #07 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
runtime.cc:681] Aborting thread:
runtime.cc:681] "RenderThread" prio=10 tid=18 Native
runtime.cc:681] | group="" sCount=0 ucsCount=0 flags=0 obj=0x13e806a8 self=0xb4000079236a35e0
runtime.cc:681] | sysTid=14517 nice=-10 cgrp=system sched=0/0 handle=0x7737606cb0
runtime.cc:681] | state=R schedstat=( 7679275160 622393953 13635 ) utm=466 stm=301 core=5 HZ=100
runtime.cc:681] | stack=0x773750f000-0x7737511000 stackSize=991KB
runtime.cc:681] | held mutexes= "abort lock" "mutator lock"(shared held)
10:48:50.876 A runtime.cc:681] native: #00 pc 00000000006b13a0 /apex/com.android.art/lib64/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+128) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #01 pc 0000000000719cf0 /apex/com.android.art/lib64/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, bool, BacktraceMap*, bool) const+236) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #02 pc 00000000006ffeb0 /apex/com.android.art/lib64/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, art::Thread*) const+60) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #03 pc 00000000006ffae4 /apex/com.android.art/lib64/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+400) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #04 pc 00000000006fa194 /apex/com.android.art/lib64/libart.so (art::Runtime::Abort(char const*)+964) (BuildId: 12e00d030bcfeb51f978c01791e0cd24)
runtime.cc:681] native: #05 pc 0000000000016ea8 /apex/com.android.art/lib64/libbase.so (android::base::SetAborter(std::__1::function<void (char const*)>&&)::$_3::__invoke(char const*)+80) (BuildId: 420d56eac27a210c92900f3ddb760c86)
runtime.cc:681] native: #06 pc 0000000000009f04 /system/lib64/liblog.so (__android_log_assert+292) (BuildId: 83100f716c2699f05eed85c01584921e)
runtime.cc:681] native: #07 pc 0000000000428554 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::draw()+2180) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #08 pc 00000000004b5ab4 /system/lib64/libhwui.so (std::__1::__function::__func<android::uirenderer::renderthread::DrawFrameTask::postAndWait()::$_0, std::__1::allocator<android::uirenderer::renderthread::DrawFrameTask::postAndWait()::$_0>, void ()>::operator()() (.__uniq.264041412789356548918088680803242235290.c1671e787f244890c877724752face20)+644) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #09 pc 000000000058b504 /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+644) (BuildId: 1fc904d886e6617259b6a3e378348dd9)
runtime.cc:681] native: #10 pc 00000000000147f0 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+528) (BuildId: 0b4a793fa8045c04066d988c68bac8bb)
runtime.cc:681] native: #11 pc 00000000000c226c /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] native: #12 pc 0000000000054a30 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: dc4001c2ef2dfc23467040797a96840c)
runtime.cc:681] (no managed stack frames)
runtime.cc:681]
10:48:51.086 A Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 14517 (RenderThread), pid 14481 (s.myapplication)
10:48:51.466 A Cmdline: ch.test.myapplication
10:48:51.466 A pid: 14481, tid: 14517, name: RenderThread >>> ch.test.myapplication <<<
fa...@yahoo.com <fa...@yahoo.com> #26
We saw the crash in "Android 7.0 (SDK 24), TECNO TECNO-CX" in our app and there is no onRenderProcessGone() handler for API < 26.
ch...@hennge.com <ch...@hennge.com> #27
Open a webview and target something that is easy to do fast back and forth navigation on (example: gmail from the web, entering and exiting emails). Navigate using on screen back buttons embedded into the site (not the device back button).
If you navigate your webview back and forth repeatedly (and quickly) this crash should happen within 50 navigations or so. Sometimes less than 10 navigations.
The error also appears to happen much more frequently on Pixel 7 than other devices for some reason.
sc...@google.com <sc...@google.com> #28
Thanks for the repro steps!
The error also appears to happen much more frequently on Pixel 7 than other devices for some reason.
This seems suspicious - is there anything different about the GPU that would make this more likely on Pixel 7?
ma...@google.com <ma...@google.com> #29
Can confirm. 100% of the repro cases I have seen are on Tensor SoC on Pixels.
ro...@bbc.co.uk <ro...@bbc.co.uk> #30
Hello again - I raised this originally. Just on that note, this crash family seems to be represented by a number of different stack trace groupings in Play Console.
Our highest volume version of this (13.5k crashes) is exclusively on Android 13 and exclusively on Tensor SoC. The message for this representation is:
[libc.so] abort - GrContext is abandoned/device lost at start of CanvasContext::draw
However, this is very closely followed (12.5k crashes) by a version which occurs on a variety of Android versions, mostly Samsung. This message is:
[base.apk!libmonochrome.so] - [FATAL:output_surface_provider_webview.cc(89)] Non owned context lost!
The highest volume SoCs in that collection are, in order, Samsung Exynos 7904, Samsung Exynos 7884B, Google Tensor, and HiSilicon KIRIN710 (Huawei).
Then there is a 64-bit version of that (9k crashes):
[base.apk!libmonochrome_64.so] - [FATAL:output_surface_provider_webview.cc(89)] Non owned context lost!
again with a SoC mix but most frequently Tensor by some distance.
As mentioned last year, I don't know for sure but I believe that all of these are closely related, since we had not experienced them before and then they began happening at approximately the same time.
bo...@google.com <bo...@google.com> #31
Device / context lost is a generic error that can have many different causes. But the in
ot...@google.com <ot...@google.com> #32
I checked the log from
<6>[ 2.378444][ T357] mali 28000000.mali: Kernel DDK version r36p0-01eac0
...
<3>[ 214.416694][ T4] mali 28000000.mali: Unhandled Page fault in AS1 at VA 0x000000000000F940
<3>[ 214.416694][ T4] Reason: Memory is not mapped on the GPU
<3>[ 214.416694][ T4] raw fault status: 0x20D002C1
<3>[ 214.416694][ T4] exception type 0xC1: UNKNOWN
<3>[ 214.416694][ T4] access type 0x2: READ
<3>[ 214.416694][ T4] source id 0x20D0
<3>[ 214.416694][ T4] pid: 17873
...
<3>[ 312.868384][ T4] mali 28000000.mali: Unhandled Page fault in AS2 at VA 0x000000000000F9C0
<3>[ 312.868384][ T4] Reason: Memory is not mapped on the GPU
<3>[ 312.868384][ T4] raw fault status: 0x8D002C1
<3>[ 312.868384][ T4] exception type 0xC1: UNKNOWN
<3>[ 312.868384][ T4] access type 0x2: READ
<3>[ 312.868384][ T4] source id 0x8D0
<3>[ 312.868384][ T4] pid: 20750
...
<3>[ 331.040774][ T4] mali 28000000.mali: Unhandled Page fault in AS2 at VA 0x000000000000F940
<3>[ 331.040774][ T4] Reason: Memory is not mapped on the GPU
<3>[ 331.040774][ T4] raw fault status: 0xD002C1
<3>[ 331.040774][ T4] exception type 0xC1: UNKNOWN
<3>[ 331.040774][ T4] access type 0x2: READ
<3>[ 331.040774][ T4] source id 0xD0
<3>[ 331.040774][ T4] pid: 21224
...
<3>[ 346.331397][ T4] mali 28000000.mali: Unhandled Page fault in AS2 at VA 0x000000000000F9C0
<3>[ 346.331397][ T4] Reason: Memory is not mapped on the GPU
<3>[ 346.331397][ T4] raw fault status: 0x4D002C1
<3>[ 346.331397][ T4] exception type 0xC1: UNKNOWN
<3>[ 346.331397][ T4] access type 0x2: READ
<3>[ 346.331397][ T4] source id 0x4D0
<3>[ 346.331397][ T4] pid: 21641
...
<3>[ 407.087746][ T4] mali 28000000.mali: Unhandled Page fault in AS1 at VA 0x000000000000F9C0
<3>[ 407.087746][ T4] Reason: Memory is not mapped on the GPU
<3>[ 407.087746][ T4] raw fault status: 0xD002C1
<3>[ 407.087746][ T4] exception type 0xC1: UNKNOWN
<3>[ 407.087746][ T4] access type 0x2: READ
<3>[ 407.087746][ T4] source id 0xD0
<3>[ 407.087746][ T4] pid: 22856
...
<3>[ 453.211426][ T4] mali 28000000.mali: Unhandled Page fault in AS1 at VA 0x000000000000F900
<3>[ 453.211426][ T4] Reason: Memory is not mapped on the GPU
<3>[ 453.211426][ T4] raw fault status: 0x28D002C1
<3>[ 453.211426][ T4] exception type 0xC1: UNKNOWN
<3>[ 453.211426][ T4] access type 0x2: READ
<3>[ 453.211426][ T4] source id 0x28D0
<3>[ 453.211426][ T4] pid: 23653
It could make sense to try the reproducer on the latest UDC release where the GPU kernel driver has been updated to r44.
ot...@google.com <ot...@google.com> #33
I tried reproducing on Android U and got no problems.
Also, according to
ke...@google.com <ke...@google.com> #34
Snap reported this crash still happens on Pixel 6/6a/7/7a with the Anroid 14.
ke...@google.com <ke...@google.com> #35
added more people on the CC list per
ma...@google.com <ma...@google.com> #36
Reports on all Pixel devices have dropped significantly on U (nearly zero?), so that’s definitely a win!
So far, I have observed this on every Pixel device, and no non-Pixel device (
It’s likely there are other repro cases reported by others, but the Pixel-specific triage seemed appropriate to me.
ke...@google.com <ke...@google.com> #37
@ma...@google.com, do we have any update on this? did we fork it over to any internal Pixel GPU bug? best regards, kevin
ma...@google.com <ma...@google.com> #38
Sorry, I am just a reporter, not involved with triage or fixes.
xy...@163.com <xy...@163.com> #40
ma...@gmail.com <ma...@gmail.com> #41
xa...@google.com <xa...@google.com> #42
Should I reopen this issue?
Sample stack trace:
signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
Abort message: 'GrContext is abandoned/device lost at start of CanvasContext::draw'
backtrace:
#00 pc 000000000005c1a4 /apex/com.android.runtime/lib64/bionic/libc.so (abort+164) (BuildId: 19c32900d9d702c303d2b4164fbba76c)
#01 pc 0000000000790efc /apex/com.android.art/lib64/libart.so (art::Runtime::Abort(char const*)+1380) (BuildId: b221ddf9493596dec8a84b0692083bef)
#02 pc 00000000000357d0 /apex/com.google.mainline.primary.libs@340721000/lib64/
#03 pc 00000000000073e4 /system/lib64/liblog.so (__android_log_assert+260) (BuildId: 20ada93f41e0ef80cd9e8e715ce8e218)
#04 pc 0000000000203984 /system/lib64/libhwui.so (android::uirenderer::renderthread::CanvasContext::draw(bool)+4532) (BuildId: c7890b36afad8800b93bdbcf9f1d4abc)
#05 pc 0000000000201a54 /system/lib64/libhwui.so (android::uirenderer::renderthread::DrawFrameTask::run()+1396) (BuildId: c7890b36afad8800b93bdbcf9f1d4abc)
#06 pc 00000000002aeb2c /system/lib64/libhwui.so (android::uirenderer::renderthread::RenderThread::threadLoop()+716) (BuildId: c7890b36afad8800b93bdbcf9f1d4abc)
#07 pc 000000000000fe18 /system/lib64/libutils.so (android::Thread::_threadLoop(void*)+584) (BuildId: 7208d9e8b9a0fc5c8a97683482fbb1eb)
#08 pc 00000000000c9ccc /apex/com.android.runtime/lib64/bionic/libc.so (__pthread_start(void*)+204) (BuildId: 19c32900d9d702c303d2b4164fbba76c)
#09 pc 000000000005db00 /apex/com.android.runtime/lib64/bionic/libc.so (__start_thread+64) (BuildId: 19c32900d9d702c303d2b4164fbba76c)
sc...@google.com <sc...@google.com> #43
Please file a new issue. IMO, the crashes on Pixel should go to pixel-graphics-triage@, but this bug contains non-Pixel crashes, which should go elsewhere.
ot...@google.com <ot...@google.com> #44
To develop on the last comment: GrContext is abandoned/device lost at start of CanvasContext::draw
is a generic abort (as mentioned in
When the problem happens, please create a new bug listing the steps that lead to the issue and attaching the content produced by adb bugreport
, so that we can check the kernel logs and the list of thread stacks that caused the issue.
so...@google.com <so...@google.com> #45
A postmortem was requested for this issue. Please refer to go/android-postmortem-guidance for details. Thank you.
so...@google.com <so...@google.com> #46
To clarify, please author a postmortem on IRM. For details, please refer to go/android-postmortem-guidance. Thank you.
ot...@google.com <ot...@google.com> #48
@my...@gmail.com, I got a bit confused because your report shows Non owned context lost
while this bug has the GrContext is abandoned
signature in the title.
We got quite a lot of reports for GrContext is abandoned
, all of them related to bugs in the GPU driver: we solved almost all of them in the Pixel GPU team, and we're working on the last 2 issues.
Since this was an old bug for Android 13's GrContext is abandoned
from 2022, would you mind opening a new one for Non owned context lost
for Android 14 so that we can properly investigate, prioritize and fix it?
Having a clear reproducer for a specific Android version would help greatly.
the workaround I found is to disable hardware acceleration, since this is clearly a GPU vulkan issue
Is there is some evidence that the Non owned context lost
is related to a GPU vulkan issue on Pixel phones, please add it to the ticket, so that it can get routed to our team.
Thanks!
bo...@google.com <bo...@google.com> #49
Non owned context lost
is webview code detecting the lost context / device first, instead of libhwui code, and it also just aborts. But yeah, having consistent steps to reproduce this on a pixel device would be a lot more useful than just the crash report.
mi...@gmail.com <mi...@gmail.com> #50
When can we expect the last two to be fixed and available for Google Pixel 8? I am heavily impacted by `GrContext is abandoned` (for many apps) as confirmed by the bug report I have generated from my device. I am running the latest system update from Jan 5th.
ot...@google.com <ot...@google.com> #51
I can't find any bug with your name: can you please share the link to the report so that I can check what build you're at, what triggers your failures and what the symptoms are?
Thanks.
mi...@gmail.com <mi...@gmail.com> #53
mi...@gmail.com <mi...@gmail.com> #54
I ask because I need to decide if I need to return it or not. When I said I am "heavily impacted", I mean the phone is unusable most of the time. It works kinda ok (1 app crash per 10 mins) immediately after restart. After 4h+ from restart any random app can crash (including the flashlight). Sometimes it takes from me 10 app crashes before I can send a single sentence message on WhatsApp. If I need to scroll through some longer list of items to find something particular (e.g., Revolut transactions) it is virtually impossible - shortly after I start scrolling the app crashes - it does not matter how many times I try.
BTW. Any chance factory reset would solve the issue?
ot...@google.com <ot...@google.com> #55
Your bugreport's logs have:
<3>[ 2253.656289][T22563] mali 1f000000.mali: Unhandled Page fault in AS1 at VA 0x00000040001C8980
<3>[ 2253.656289][T22563] Reason: Memory is not mapped on the GPU
<3>[ 2253.656289][T22563] exception type 0xC1: TRANSLATION_FAULT at level 1
<4>[ 2253.656648][ C0] CS_FAULT.EXCEPTION_TYPE: 0x5b (IMPRECISE_FAULT)
That heavily hints (but not guarantees) at a Pixel8-only issue (unrelated to, but affecting the GPU) that was fixed for the upcoming UQ1A.240205.002 (5th February OTA release).
Your phone is on the latest UQ1A.240105.004 according to your bug report, so you'll need to wait 2 weeks to check if the February update fixes your issue.
I don't expect that a factory reset would fix the issue, I don't know about the return policies on your location, I don't have access to any report you submit to Google, I can't guarantee that the February update will fix your issues, and I'm not in the customer support team, so you can follow this up in the report that you already submitted or return the phone if you can't wait two weeks.
It's also worth noting that your issue is completely unrelated to the ones previously reported in this ticket, besides it getting caught by the same generic abort message.
GrContext is abandoned/device lost at start of CanvasContext::draw
in a single place?
mi...@gmail.com <mi...@gmail.com> #56
ot...@google.com <ot...@google.com> #57
I don't see any public ticket about that issue, but I asked in the internal one.
ot...@google.com <ot...@google.com> #58
mi...@gmail.com <mi...@gmail.com> #59
I was about to share my experience. Yes, the UQ1A.240205.004 turned my unusable phone into a super-stable device. For 24h now I was not able to crash it in any way. Additionally, I have not noticed any glitch or other kind of unexpected behaviour (like before)! Thanks again for support! It was a very tough month for me to survive but it was worth it. Now I am super happy with my Pixel 8.
The logs like this can no longer be found in a bug report generated after system update:
<3>[ 2253.656289][T22563] mali 1f000000.mali: Unhandled Page fault in AS1 at VA 0x00000040001C8980
<3>[ 2253.656289][T22563] Reason: Memory is not mapped on the GPU
<3>[ 2253.656289][T22563] exception type 0xC1: TRANSLATION_FAULT at level 1
<4>[ 2253.656648][ C0] CS_FAULT.EXCEPTION_TYPE: 0x5b (IMPRECISE_FAULT)
Description
Android device name: Not available
Android OS version: exclusively Android 13 (100% of reports)
Application: BBC Sport - uk.co.bbc.android.sportdomestic
Application version: 2.6.0.11814
Steps to reproduce: Not available - not reproducible locally
How long has this been happening? Our Play Console data only goes back 60 days (Aug 27) and all days have a crash
How often does this happen? This is approximately 30% of our received crashes
Console traces follow: