Skip to content

Instantly share code, notes, and snippets.

@bevis-tseng
Last active August 16, 2017 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bevis-tseng/12cf108f681467ca7d8f3088db4eb584 to your computer and use it in GitHub Desktop.
Save bevis-tseng/12cf108f681467ca7d8f3088db4eb584 to your computer and use it in GitHub Desktop.
Runnable-Analysis
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"collapsed": false,
"scrolled": true
},
"outputs": [],
"source": [
"import ujson as json\n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd\n",
"import numpy as np\n",
"import plotly.plotly as py\n",
"\n",
"from plotly.graph_objs import *\n",
"from moztelemetry import get_pings_properties, get_one_ping_per_client\n",
"from moztelemetry.dataset import Dataset\n",
"\n",
"%matplotlib inline"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[u'submissionDate',\n",
" u'sourceName',\n",
" u'sourceVersion',\n",
" u'docType',\n",
" u'appName',\n",
" u'appUpdateChannel',\n",
" u'appVersion',\n",
" u'appBuildId']"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Dataset.from_source(\"telemetry\").schema"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"fetching 17260.78257MB in 1967 files...\n"
]
}
],
"source": [
"pings = Dataset.from_source(\"telemetry\") \\\n",
" .where(docType='main') \\\n",
" .where(appBuildId=lambda x: x.startswith('20170811') or x.startswith('20170812') or x.startswith('20170813')) \\\n",
" .where(appUpdateChannel=\"nightly\") \\\n",
" .records(sc, sample=1.0)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"subset = get_pings_properties(pings, [\"payload/processes/content/keyedHistograms/MAIN_THREAD_RUNNABLE_MS\"])"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def count(d):\n",
" keyed = d['payload/processes/content/keyedHistograms/MAIN_THREAD_RUNNABLE_MS'] or {}\n",
" result = []\n",
" for key in keyed:\n",
" hist = keyed[key]\n",
" values = hist['values']\n",
" s = 0\n",
" for index in values:\n",
" s += values[index]\n",
" result.append((key, s))\n",
" return result"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"freq = subset.flatMap(count).reduceByKey(lambda a, b: a+b).collect()"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"freq.sort(key=lambda d: d[1], reverse=True)"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def is_labeled(name):\n",
" if name.endswith('(labeled)') or 'PVsync' in name or 'Idle' in name or 'ContentUnbinder' in name:\n",
" return True\n",
" return False"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"freq_filt = [ (name, v) for (name, v) in freq if not name.startswith('PJavaScript') ]"
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(134, 106, 29)"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"total = sum((d[1] for d in freq_filt))\n",
"target = total * 0.99\n",
"\n",
"sofar = 0\n",
"labeled = 0\n",
"unlabeled = 0\n",
"for (i, (name, count)) in enumerate(freq_filt):\n",
" sofar += count\n",
" if is_labeled(name):\n",
" labeled += 1\n",
" else:\n",
" unlabeled += 1\n",
" if sofar >= target:\n",
" target_index = i\n",
" break\n",
" \n",
"target_index, labeled, unlabeled"
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.963352750526\n"
]
}
],
"source": [
"labeled = 0\n",
"unlabeled = 0\n",
"for (name, count) in freq_filt:\n",
" if is_labeled(name):\n",
" labeled += count\n",
" else:\n",
" unlabeled += count\n",
" \n",
"print labeled / float(labeled + unlabeled)"
]
},
{
"cell_type": "code",
"execution_count": 36,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[(u'StyleImageRequestCleanupTask', 1959451316),\n",
" (u'MainThreadInvoker', 1031136438),\n",
" (u'PCookieService::Msg_AddCookie', 808206883),\n",
" (u'PBackground::Msg_DispatchLocalStorageChange', 749105285),\n",
" (u'PContent::Msg_NotifyVisited', 530124037),\n",
" (u'AvailableRunnable', 518882071),\n",
" (u'RefreshDriverVsyncObserver::NormalPriorityNotify', 486914942),\n",
" (u'PContent::Msg_DataStoragePut', 442812343),\n",
" (u'EverySecondTelemetryCallback_m', 427367920),\n",
" (u'PVRManager::Msg_UpdateDisplayInfo', 376653467),\n",
" (u'FinishPreparingForNewPartRunnable', 343114506),\n",
" (u'PCompositorBridge::Msg_ParentAsyncMessages', 253948716),\n",
" (u'imgRequestProxy::DoRemoveFromLoadGroup', 177332704),\n",
" (u'RasterImage::OnSurfaceDiscarded', 162618565),\n",
" (u'setTimeout() in Timer.jsm', 115474204),\n",
" (u'ScrollFrameHelper::ScheduleSyntheticMouseMove', 115262355),\n",
" (u'PContent::Msg_PreferenceUpdate', 110018583),\n",
" (u'InactiveRefreshDriverTimer::ScheduleNextTick', 108843677),\n",
" (u'StorageNotifierService::Broadcast', 102210754),\n",
" (u'IncrementalFinalizeRunnable', 99724636),\n",
" (u'PBackgroundStorage::Msg_LoadItem', 87780167),\n",
" (u'ImageCache', 71544561),\n",
" (u'PContent::Msg_ParentActivated', 67605498),\n",
" (u'UpdateTimerCallback', 60937460),\n",
" (u'PTexture::Msg___delete__', 57976952),\n",
" (u'nsPipeInputStream::AsyncWait', 56407340),\n",
" (u'nsThreadShutdownAckEvent', 51253979),\n",
" (u'PContent::Msg_AsyncMessage', 48141711),\n",
" (u'CompleteResumeRunnable', 45245345)]"
]
},
"execution_count": 36,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[ (name, v) for (name, v) in freq_filt[0 : target_index + 1] if not is_labeled(name) ] # top unlabeled list"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[(u'PCookieService::Msg_TrackCookiesLoad', 45007823),\n",
" (u'media-runnable_args_base', 44584807),\n",
" (u'imgCacheExpirationTracker', 43936037),\n",
" (u'nsIThread::AsyncShutdown', 40781931),\n",
" (u'PCookieService::Msg_RemoveCookie', 37797100),\n",
" (u'PHal::Msg_NotifyWakeLockChange', 37460051),\n",
" (u'dom::SimpleTextTrackEvent', 36436725),\n",
" (u'AsyncTimeEventRunner', 36273777),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable',\n",
" 35959927),\n",
" (u'PContent::Msg_PIPCBlobInputStreamConstructor', 34559956),\n",
" (u'PContent::Msg_BlobURLRegistration', 31402347),\n",
" (u'InactiveRefreshDriverTimer::StartTimer', 30053746),\n",
" (u'PVRManager::Msg_GamepadUpdate', 29499982),\n",
" (u'PContent::Msg_SetPermissionsWithKey', 26493799),\n",
" (u'non-nsINamed runnable', 26229738),\n",
" (u'TileExpiry', 25126135),\n",
" (u'dom::PostMessageEvent', 24541508),\n",
" (u'nsMemoryReporterManager::GetHeapAllocatedAsync', 24072106),\n",
" (u'ProxyReleaseRunnable', 23984514),\n",
" (u'PCookieService::Msg_RemoveBatchDeletedCookies', 23510531),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange', 21567911),\n",
" (u'AsyncPrecreateStringBundles', 20178992),\n",
" (u'nsStringBundle::LoadProperties', 20150027),\n",
" (u'gfxFcPlatformFontList::gfxFcPlatformFontList', 19999885)]"
]
},
"execution_count": 37,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[ (name, v) for (name, v) in freq_filt[target_index + 1 : target_index + 51] if not is_labeled(name) ] # next unlabeled candidates"
]
},
{
"cell_type": "code",
"execution_count": 38,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[(u'TimeoutExecutor Runnable(labeled)', 46560509926),\n",
" (u'PVsync::Msg_Notify', 37283514166),\n",
" (u'IdleRunnable', 33284561103),\n",
" (u'IdleTaskRunner(labeled)', 31054072715),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable(labeled)',\n",
" 20489563757),\n",
" (u'nsDocument::NotifyIntersectionObservers(labeled)', 11635975067),\n",
" (u'PCompositorBridge::Msg_DidComposite(labeled)', 8837754448),\n",
" (u'AsyncEventDispatcher(labeled)', 8663256539),\n",
" (u'LayerActivityTracker(labeled)', 7861238955),\n",
" (u'CompleteResumeRunnable(labeled)', 7574939876),\n",
" (u'IdleRunnableWrapper for AsyncFreeSnowWhite', 6748859078),\n",
" (u'PBrowser::Msg_RealMouseMoveEvent(labeled)', 6481112089),\n",
" (u'MediaResource::Destroy(labeled)', 4433469318),\n",
" (u'dom::PostMessageEvent(labeled)', 4232200582),\n",
" (u'ProxyReleaseEvent for nsStyleDisplay::mSpecifiedTransform(labeled)',\n",
" 4229599894),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyBytesConsumed(labeled)',\n",
" 3186839105),\n",
" (u'MediaCache::UpdateEvent(labeled)', 3163517973),\n",
" (u'StorageNotifierService::Broadcast(labeled)', 3104718601),\n",
" (u'HTMLMediaElement::nsAsyncEventRunner(labeled)', 2996373455),\n",
" (u'AbstractThread::Runner for MediaStreamGraphStableStateRunnable(labeled)',\n",
" 2664090471),\n",
" (u'LogMessageRunnable(labeled)', 2544916687),\n",
" (u'TelemetryIPCAccumulator::IPCTimerFired(labeled)', 2356376080),\n",
" (u'StyleImageRequestCleanupTask', 1959451316),\n",
" (u'nsIDocument::SelectorCache(labeled)', 1793701706),\n",
" (u'AsyncWaitRunnable(labeled)', 1716709291),\n",
" (u'layers::DestroyTextureData(labeled)', 1532175347),\n",
" (u'ProgressTracker::AsyncNotifyRunnable(labeled)', 1532133957),\n",
" (u'PTexture::Msg___delete__(labeled)', 1396954569),\n",
" (u'IdleRequestExecutor', 1311735484),\n",
" (u'net::HttpChannelChild::OnTransportAndData(labeled)', 1302616006),\n",
" (u'PHttpChannel::Msg_DeleteSelf(labeled)', 1215817184),\n",
" (u'PHttpChannel::Msg_OnStartRequest(labeled)', 1183562107),\n",
" (u'PAPZ::Msg_RequestContentRepaint(labeled)', 1134639234),\n",
" (u'MainThreadInvoker', 1031136438),\n",
" (u'PCookieService::Msg_AddCookie', 808206883),\n",
" (u'AbstractThread::Runner for MozPromise::ThenValueBase::ResolveOrRejectRunnable(labeled)',\n",
" 795572595),\n",
" (u'PredictorLearnRunnable(labeled)', 753085088),\n",
" (u'ProxyReleaseEvent for NS_ReleaseOnMainThreadSystemGroup(labeled)',\n",
" 752532156),\n",
" (u'PBackground::Msg_DispatchLocalStorageChange', 749105285),\n",
" (u'IDecodingTask::NotifyDecodeComplete(labeled)', 738808506),\n",
" (u'XMLHttpRequest(labeled)', 717182383),\n",
" (u'AbstractThread::Runner for ChannelMediaResource::DoNotifyDataReceived(labeled)',\n",
" 650807104),\n",
" (u'PPluginInstance::Msg_ShowDirectDXGISurface(labeled)', 574061876),\n",
" (u'PBrowser::Msg_AsyncMessage(labeled)', 569604291),\n",
" (u'PContent::Msg_NotifyVisited', 530124037),\n",
" (u'AvailableRunnable', 518882071),\n",
" (u'RefreshDriverVsyncObserver::NormalPriorityNotify', 486914942),\n",
" (u'PresShell::UpdateApproximateFrameVisibility(labeled)', 476189734),\n",
" (u'HTMLMediaElement::ProgressTimerCallback(labeled)', 459701923),\n",
" (u'PContent::Msg_DataStoragePut', 442812343),\n",
" (u'EverySecondTelemetryCallback_m', 427367920),\n",
" (u'non-nsINamed ThrottledEventQueue runnable(labeled)', 427073095),\n",
" (u'PHttpChannel::Msg_SetPriority(labeled)', 422570643),\n",
" (u'net::WrappedChannelEvent(labeled)', 392623953),\n",
" (u'PVRManager::Msg_UpdateDisplayInfo', 376653467),\n",
" (u'PBrowser::Msg_MouseWheelEvent(labeled)', 373960956),\n",
" (u'StorageNotifierRunnable(labeled)', 368032935),\n",
" (u'SHMEM_DESTROYED_MESSAGE(labeled)', 366404128),\n",
" (u'PPluginInstance::Msg_ShowDirectBitmap(labeled)', 346222998),\n",
" (u'FinishPreparingForNewPartRunnable', 343114506),\n",
" (u'AbstractThread::Runner for dom::AnalyserNodeEngine::TransferBuffer(labeled)',\n",
" 331654723),\n",
" (u'nsHtml5ExecutorFlusher(labeled)', 314053888),\n",
" (u'nsHtml5ExecutorReflusher(labeled)', 299141841),\n",
" (u'AbstractThread::Runner for AsyncEventRunner(labeled)', 295995318),\n",
" (u'PContent::Msg_NotifyVisited(labeled)', 286510092),\n",
" (u'nsBrowserStatusFilter::TimeoutHandler(labeled)', 286096202),\n",
" (u'PBrowser::Msg_SynthMouseMoveEvent(labeled)', 276810946),\n",
" (u'PWebSocket::Msg_OnMessageAvailable(labeled)', 275760031),\n",
" (u'PCompositorBridge::Msg_ParentAsyncMessages', 253948716),\n",
" (u'nsUnblockOnloadEvent(labeled)', 244230724),\n",
" (u'IDecodingTask::NotifyProgress(labeled)', 225087257),\n",
" (u'HTMLMediaElement::nsResolveOrRejectPendingPlayPromisesRunner(labeled)',\n",
" 220986936),\n",
" (u'AbstractThread::Runner for Command(labeled)', 217402021),\n",
" (u'AsyncTimeEventRunner(labeled)', 216483865),\n",
" (u'PBrowser::Msg_RealKeyEvent(labeled)', 214563365),\n",
" (u'nsPresContextType::RunWillPaintObservers(labeled)', 208737667),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange(labeled)', 188367059),\n",
" (u'nsHtml5LoadFlusher(labeled)', 183547328),\n",
" (u'nsHtml5StreamParserReleaser(labeled)', 182689453),\n",
" (u'imgRequestProxy::DoRemoveFromLoadGroup', 177332704),\n",
" (u'BlurCache(labeled)', 165069608),\n",
" (u'WindowDestroyedEvent(labeled)', 163949807),\n",
" (u'RasterImage::OnSurfaceDiscarded', 162618565),\n",
" (u'nsCaret::CaretBlinkCallback_timer(labeled)', 155433356),\n",
" (u'dom::HTMLMediaElement::DoRemoveSelfReference(labeled)', 150018681),\n",
" (u'IdleRunnableWrapper for WindowDestroyedEvent', 138737188),\n",
" (u'IdleRunnableWrapper for nsIDocument::FlushPendingLinkUpdatesFromRunnable',\n",
" 126010241),\n",
" (u'nsIDocument::HandleRebuildUserFontSet(labeled)', 124525783),\n",
" (u'mscom::MainThreadRelease(labeled)', 121970453),\n",
" (u'nsDelayedCalcBCBorders(labeled)', 115928034),\n",
" (u'setTimeout() in Timer.jsm', 115474204),\n",
" (u'ScrollFrameHelper::ScheduleSyntheticMouseMove', 115262355),\n",
" (u'setTimeout() in Timer.jsm(labeled)', 114502105),\n",
" (u'PBrowser::Msg_RealMouseButtonEvent(labeled)', 114411133),\n",
" (u'PContent::Msg_PreferenceUpdate', 110018583),\n",
" (u'InactiveRefreshDriverTimer::ScheduleNextTick', 108843677),\n",
" (u'Canceled_timer(labeled)', 107658123),\n",
" (u'ShortTermURISpecCache(labeled)', 106851756),\n",
" (u'PBackgroundIDBCursor::Msg_Response(labeled)', 105897351),\n",
" (u'StorageNotifierService::Broadcast', 102210754),\n",
" (u'IncrementalFinalizeRunnable', 99724636),\n",
" (u'CheckResponsivenessTask(labeled)', 97010845),\n",
" (u'dom::NotifyOffThreadScriptLoadCompletedRunnable(labeled)', 96236729),\n",
" (u'nsDocumentShownDispatcher(labeled)', 89519416),\n",
" (u'ProxyReleaseEvent for MainThreadHandoff(labeled)', 89400238),\n",
" (u'nsBindingManager::DoProcessAttachedQueue(labeled)', 88905824),\n",
" (u'PBackgroundStorage::Msg_LoadItem', 87780167),\n",
" (u'nsPipeInputStream::AsyncWait(labeled)', 86472571),\n",
" (u'ContentUnbinder', 86125165),\n",
" (u'PAPZ::Msg_NotifyAPZStateChange(labeled)', 80309967),\n",
" (u'gfxFontCache::gfxFontCache(labeled)', 77943393),\n",
" (u'nsDocument::UpdateVisibilityState(labeled)', 76103528),\n",
" (u'dom::PostMessageRunnable(labeled)', 72837852),\n",
" (u'ImageCache', 71544561),\n",
" (u'nsDocument::NotifyStyleSheetApplicableStateChanged(labeled)', 71367614),\n",
" (u'nsHtml5SVGLoadDispatcher(labeled)', 70797311),\n",
" (u'nsDocument::DispatchContentLoadedEvents(labeled)', 67865585),\n",
" (u'PContent::Msg_ParentActivated', 67605498),\n",
" (u'PBackgroundIDBRequest::Msg___delete__(labeled)', 67117293),\n",
" (u'NotifyGCEndRunnable(labeled)', 66299417),\n",
" (u'PBrowser::Msg_UpdateDimensions(labeled)', 65603089),\n",
" (u'History::DispatchNotifyVisited(labeled)', 64862076),\n",
" (u'imgRequestProxy::Notify(labeled)', 64117465),\n",
" (u'UITimerCallback_timer(labeled)', 63359403),\n",
" (u'ScrollFrameActivityTracker(labeled)', 62051930),\n",
" (u'PWebSocket::Msg_OnBinaryMessageAvailable(labeled)', 61327231),\n",
" (u'UpdateTimerCallback', 60937460),\n",
" (u'PTexture::Msg___delete__', 57976952),\n",
" (u'nsPipeInputStream::AsyncWait', 56407340),\n",
" (u'nsThreadShutdownAckEvent', 51253979),\n",
" (u'PPluginScriptableObject::Msg_NPN_Evaluate(labeled)', 49276197),\n",
" (u'PWebSocket::Msg_OnAcknowledge(labeled)', 48895996),\n",
" (u'PContent::Msg_AsyncMessage', 48141711),\n",
" (u'dom::ScriptLoader::ProcessPendingRequests(labeled)', 47241952),\n",
" (u'CompleteResumeRunnable', 45245345),\n",
" (u'PCookieService::Msg_TrackCookiesLoad', 45007823),\n",
" (u'EventListenerService::NotifyPendingChanges(labeled)', 44884848),\n",
" (u'media-runnable_args_base', 44584807),\n",
" (u'AbstractThread::Runner for VideoFrameContainerInvalidateRunnable(labeled)',\n",
" 44463340),\n",
" (u'imgCacheExpirationTracker', 43936037),\n",
" (u'GCTimerFired(labeled)', 42454188),\n",
" (u'nsPresContext::HandleMediaFeatureValuesChangedEvent(labeled)', 41696413),\n",
" (u'PHttpChannel::Msg_Redirect1Begin(labeled)', 41677513),\n",
" (u'nsAsyncRedirectVerifyHelper(labeled)', 41675614),\n",
" (u'nsAsyncVerifyRedirectCallbackEvent(labeled)', 41671330),\n",
" (u'ChromeTooltipListener::MouseMove(labeled)', 41274250),\n",
" (u'dom::FlushRejections(labeled)', 41160140),\n",
" (u'nsIThread::AsyncShutdown', 40781931),\n",
" (u'IdleRunnableWrapper for mozInlineSpellResume', 40608017),\n",
" (u'PHttpChannel::Msg_Redirect3Complete(labeled)', 40219111),\n",
" (u'PCookieService::Msg_RemoveCookie', 37797100),\n",
" (u'PHal::Msg_NotifyWakeLockChange', 37460051),\n",
" (u'PBrowser::Msg_LoadRemoteScript(labeled)', 37268847),\n",
" (u'dom::SimpleTextTrackEvent', 36436725),\n",
" (u'AsyncTimeEventRunner', 36273777),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable',\n",
" 35959927),\n",
" (u'PContent::Msg_PIPCBlobInputStreamConstructor', 34559956),\n",
" (u'PPluginInstance::Msg_Show(labeled)', 34258607),\n",
" (u'PresShell::FireResizeEvent(labeled)', 33232699),\n",
" (u'IdleRunnableWrapper::SetTimer', 33059619),\n",
" (u'IdleRunnableWrapper', 32342024),\n",
" (u'PuppetWidget::PaintTask(labeled)', 32274383),\n",
" (u'PContent::Msg_BlobURLRegistration', 31402347),\n",
" (u'dom::TextTrack::DispatchAsyncTrustedEvent(labeled)', 30308239),\n",
" (u'InactiveRefreshDriverTimer::StartTimer', 30053746),\n",
" (u'PVRManager::Msg_GamepadUpdate', 29499982),\n",
" (u'GradientCache(labeled)', 29316714),\n",
" (u'ChannelMediaDecoder::ResourceCallback::TimerCallback(labeled)', 28159818),\n",
" (u'dom::TextTrackManager::TimeMarchesOn(labeled)', 27410611),\n",
" (u'PContent::Msg_SetPermissionsWithKey', 26493799),\n",
" (u'non-nsINamed runnable', 26229738),\n",
" (u'TileExpiry', 25126135),\n",
" (u'DataChannelOnMessageAvailable(labeled)', 25085969),\n",
" (u'dom::workers::WorkerMainThreadRunnable(labeled)', 24971132),\n",
" (u'dom::PostMessageEvent', 24541508),\n",
" (u'nsMemoryReporterManager::GetHeapAllocatedAsync', 24072106),\n",
" (u'ProxyReleaseRunnable', 23984514),\n",
" (u'ThrottleTimeoutsCallback(labeled)', 23566707),\n",
" (u'PCookieService::Msg_RemoveBatchDeletedCookies', 23510531),\n",
" (u'PresShell::sPaintSuppressionCallback(labeled)', 23280157),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange', 21567911),\n",
" (u'PBrowser::Msg_SetDocShellIsActive(labeled)', 21128279),\n",
" (u'AsyncPrecreateStringBundles', 20178992),\n",
" (u'nsStringBundle::LoadProperties', 20150027),\n",
" (u'gfxFcPlatformFontList::gfxFcPlatformFontList', 19999885),\n",
" (u'non-nsINamed ThrottledEventQueue runnable', 19405036),\n",
" (u'SurfaceTracker', 18818264),\n",
" (u'nsHtml5SVGLoadDispatcher', 18695526),\n",
" (u'gfxFontCache(labeled)', 18380245),\n",
" (u'WebCryptoTask', 18087333),\n",
" (u'IdleTaskRunner', 17698504),\n",
" (u'nsComposerCommandsUpdater', 17590623),\n",
" (u'AudioPlaybackRunnable', 17539169),\n",
" (u'PBrowser::Msg_SuppressDisplayport(labeled)', 17521035),\n",
" (u'image::ImageResource::SendOnUnlockedDraw', 17050235),\n",
" (u'ProxyReleaseEvent for WeakReferenceSupport(labeled)', 16873644),\n",
" (u'NotifyChannelActiveRunnable', 16807189),\n",
" (u'PCacheOp::Msg___delete__', 16689656),\n",
" (u'PHttpChannel::Msg_DeleteSelf', 16499390),\n",
" (u'ProgressTracker::AsyncNotifyRunnable', 16422500),\n",
" (u'PContent::Msg_DataStorageRemove', 16413151),\n",
" (u'AsyncEventDispatcher', 16385969),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyBytesConsumed',\n",
" 16320366),\n",
" (u'SendTelemetry(labeled)', 15516050),\n",
" (u'PBackgroundIDBTransaction::Msg_Complete(labeled)', 15471824),\n",
" (u'DecoderDoctorDocumentWatcher_timer', 15364781),\n",
" (u'PBackgroundIDBTransaction::Msg___delete__(labeled)', 15086728),\n",
" (u'ProgressTracker::SyncNotifyProgress', 14927600),\n",
" (u'nsDocument::DispatchContentLoadedEvents', 14913680),\n",
" (u'PresShell::sPaintSuppressionCallback', 14912102),\n",
" (u'MozPromise::ThenValueBase::ResolveOrRejectRunnable', 14762704),\n",
" (u'PHttpChannel::Msg_OnStartRequest', 14592423),\n",
" (u'NotifyBHRHangObservers(labeled)', 14118411),\n",
" (u'PContent::Msg_Activate', 13722627),\n",
" (u'PContent::Msg_Deactivate', 13663672),\n",
" (u'IDecodingTask::NotifyDecodeComplete', 13532684),\n",
" (u'PContent::Msg_BlobURLUnregistration', 13531386),\n",
" (u'PContent::Msg_LoadProcessScript', 13501064),\n",
" (u'Anonymous_interface_timer', 13024066),\n",
" (u'FullGCTimerFired(labeled)', 13014925),\n",
" (u'ProxyReleaseEvent for nsStyleContentData::mContent.mImage(labeled)',\n",
" 13007024),\n",
" (u'anonymous(labeled)', 12904107),\n",
" (u'ScrollFrameHelper::ResetDisplayPortExpiryTimer', 12713392),\n",
" (u'imgCancelRunnable', 12596564),\n",
" (u'PBrowser::Msg_RealTouchMoveEvent(labeled)', 12520336),\n",
" (u'dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop',\n",
" 12366272),\n",
" (u'ProxyHashtableDestructor', 11992256),\n",
" (u'nsIDocument::HandleRebuildUserFontSet', 11877651),\n",
" (u'nsPresContext::HandleMediaFeatureValuesChangedEvent', 11708430),\n",
" (u'PresShell::FireResizeEvent', 11708430),\n",
" (u'PBrowser::Msg_RealDragEvent(labeled)', 11308086),\n",
" (u'PServiceWorkerUpdater::Msg_Proceed', 11220602),\n",
" (u'PBackgroundStorage::Msg_LoadDone', 10436999),\n",
" (u'ScrollbarActivity::FadeBeginTimerFired', 10389265),\n",
" (u'dom::FontFaceSet::CheckLoadingFinishedAfterDelay(labeled)', 10210269),\n",
" (u'PBrowser::Msg_StopIMEStateManagement(labeled)', 10170901),\n",
" (u'ProxyReleaseEvent for ExtendableEventWorkerRunnable::mKeepAliveToken',\n",
" 10064473),\n",
" (u'nsHTMLDNSPrefetch::nsDeferrals::Tick', 9978351),\n",
" (u'AbstractThread::Runner for MediaSourceDecoder::SetInitialDuration(labeled)',\n",
" 9942295),\n",
" (u'PGamepadEventChannel::Msg_GamepadUpdate', 9497953),\n",
" (u'dom::GamepadUpdateRunnable', 9495609),\n",
" (u'WMFVideoMFTManager::~WMFVideoMFTManager(labeled)', 9347944),\n",
" (u'PContent::Msg_RefreshScreens', 8722952),\n",
" (u'WatchdogTimerEvent', 8653894),\n",
" (u'HttpChannelChild::SetMatchedInfo(labeled)', 8598685),\n",
" (u'ChannelLoader::LoadInternal(labeled)', 8534885),\n",
" (u'dom::workers::RegistrationUpdateRunnable', 8369661),\n",
" (u'nsWindowMemoryReporter::AsyncCheckForGhostWindows_timer', 8091445),\n",
" (u'ProxyReleaseEvent for ServiceWorkerRegistrationInfo', 7953401),\n",
" (u'ProxyReleaseEvent for nsIInterceptedChannel', 7948178),\n",
" (u'RuleProcessorCache::ExpirationTracker(labeled)', 7711290),\n",
" (u'VideoUtils::DeleteObjectTask(labeled)', 7180083),\n",
" (u'dom::workers::FetchEventRunnable::ResumeRequest', 7096884),\n",
" (u'layers::TextureClientPool::ResetTimers', 7026691),\n",
" (u'dom::workers::ServiceWorkerRegistrationInfo::AsyncUpdateRegistrationStateProperties',\n",
" 6831958),\n",
" (u'ShrinkingGCTimerFired(labeled)', 6669166),\n",
" (u'AutoTaskQueue::~AutoTaskQueue(labeled)', 6618877),\n",
" (u'dom::LoadStartDetectionRunnable(labeled)', 6576801),\n",
" (u'PBrowserStream::Msg_StreamDestroyed(labeled)', 6569952),\n",
" (u'PBrowser::Msg_SizeModeChanged(labeled)', 6497919),\n",
" (u'dom::AsyncTeardownRunnable(labeled)', 6328972),\n",
" (u'PBackground::Msg_PCacheStreamControlConstructor', 6319437),\n",
" (u'PBackground::Msg_PFileDescriptorSetConstructor', 6319434),\n",
" (u'PCacheStreamControl::Msg___delete__', 6317778),\n",
" (u'imgRequestMainThreadCancel', 6311264),\n",
" (u'ServiceWorkerRegistrationInfo::TryToActivate', 6069584),\n",
" (u'dom::cache::ReadStream::Inner::NoteClosedRunnable', 6007129),\n",
" (u'PNecko::Reply_GetExtensionFD', 5962157),\n",
" (u'PCacheStorage::Msg___delete__', 5960052),\n",
" (u'ipc::MessageChannel::DispatchOnChannelConnected', 5822738),\n",
" (u'ServiceWorkerJob::AsyncExecute', 5667321),\n",
" (u'ProxyReleaseEvent for ServiceWorkerJob(labeled)', 5645727),\n",
" (u'PPluginInstance::Msg_PStreamNotifyConstructor(labeled)', 5631911),\n",
" (u'AsyncScriptCompiler(labeled)', 5422351),\n",
" (u'PBackground::Msg_PCacheConstructor', 5231727),\n",
" (u'ReleasingTimerHolder(labeled)', 5203993),\n",
" (u'PPluginInstance::Msg_NPN_ConvertPoint(labeled)', 5069023),\n",
" (u'PCache::Msg___delete__', 5048749),\n",
" (u'PPluginInstance::Msg_NPN_SetValue_NPPVpluginIsPlayingAudio(labeled)',\n",
" 5006822),\n",
" (u'nsJSChannel::EvaluateScript', 4907751),\n",
" (u'ProgressTracker::OnDiscard', 4899275),\n",
" (u'PContent::Msg_SetPluginList', 4774761),\n",
" (u'HTMLMediaElement::VideoDecodeSuspendTimerCallback(labeled)', 4715643),\n",
" (u'dom::HTMLMediaElement::WakeLockBoolWrapper::UpdateWakeLock(labeled)',\n",
" 4693713),\n",
" (u'PContent::Msg_AudioDefaultDeviceChange', 4593597),\n",
" (u'a11y::DocAccessible::ScrollPositionDidChange', 4523830),\n",
" (u'PContent::Msg_GMPsChanged', 4498748),\n",
" (u'PWebSocket::Msg_OnStop(labeled)', 4428814),\n",
" (u'dom::CallDispatchConnectionCloseEvents', 4389827),\n",
" (u'PWebSocket::Msg___delete__(labeled)', 4369664),\n",
" (u'CharSetChangingRunnable(labeled)', 4275682),\n",
" (u'RequestSendLocationEvent', 4137287),\n",
" (u'PContent::Msg_GeolocationUpdate', 4130456),\n",
" (u'CategoryNotificationRunnable', 4068490),\n",
" (u'nsAutoCompleteController', 4003740),\n",
" (u'PBrowser::Msg_MenuKeyboardListenerInstalled(labeled)', 3960509),\n",
" (u'PBrowser::Msg_SetUseGlobalHistory(labeled)', 3856828),\n",
" (u'PMessagePort::Msg_ReceiveData', 3846674),\n",
" (u'PBrowser::Msg_Show(labeled)', 3836131),\n",
" (u'ThrottledEventQueue::Inner::ShutdownComplete', 3764281),\n",
" (u'dom::ContentChild::SendInitBackground', 3725792),\n",
" (u'PHal::Msg_NotifySensorChange', 3681398),\n",
" (u'PBrowser::Msg_Destroy(labeled)', 3659782),\n",
" (u'TabChild::DelayedDeleteRunnable', 3639764),\n",
" (u'PBrowser::Msg_UIResolutionChanged(labeled)', 3613592),\n",
" (u'PAPZ::Msg_Destroy(labeled)', 3487956),\n",
" (u'PBrowser::Msg_SetWidgetNativeData(labeled)', 3357094),\n",
" (u'PBackgroundStorage::Msg_LoadUsage', 3275265),\n",
" (u'PContent::Msg_PBrowserConstructor(labeled)', 3255157),\n",
" (u'PBrowser::Msg_PRenderFrameConstructor(labeled)', 3255155),\n",
" (u'PBrowser::Msg_InitRendering(labeled)', 3255155),\n",
" (u'OnLinkClickEvent(labeled)', 3254884),\n",
" (u'HTMLMediaElement::nsAsyncEventRunner', 3245757),\n",
" (u'TransactionIdAllocator::NotifyTransactionCompleted', 3148667),\n",
" (u'PTCPSocket::Msg_Callback(labeled)', 3046997),\n",
" (u'PBrowser::Msg_UpdateNativeWindowHandle(labeled)', 2975873),\n",
" (u'XMLHttpRequest', 2967920),\n",
" (u'nsDocument::NotifyStyleSheetApplicableStateChanged', 2946002),\n",
" (u'ProxyReleaseEvent for TrackBuffersManager::mParentDecoder', 2944114),\n",
" (u'nsIThreadPool::Shutdown', 2937952),\n",
" (u'PLayerTransaction::Msg___delete__(labeled)', 2911424),\n",
" (u'PDocAccessible::Msg_State(labeled)', 2905707),\n",
" (u'Background::ChildImpl::ActorCreatedRunnable', 2885724),\n",
" (u'IDecodingTask::NotifyProgress', 2877320),\n",
" (u'NotifyDidPaintForSubtree(labeled)', 2857974),\n",
" (u'CSPReportSenderRunnable', 2823030),\n",
" (u'BeginConsumeBodyRunnable(labeled)', 2713812),\n",
" (u'PBrowser::Msg_RealMouseMoveEvent', 2696717),\n",
" (u'AccessibleCaretEventHub::LaunchScrollEndInjector', 2400895),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyDataEnded(labeled)',\n",
" 2356523),\n",
" (u'HTMLMediaElement::NoSupportedMediaSourceError(labeled)', 2326570),\n",
" (u'nsDelayedEventDispatcher(labeled)', 2311377),\n",
" (u'PVsync::Msg_VsyncRate', 2306359),\n",
" (u'nsNativeTheme(labeled)', 2263323),\n",
" (u'dom::nsResumeTimeoutsEvent(labeled)', 2217070),\n",
" (u'PContent::Msg_RegisterChromeItem', 2186750),\n",
" (u'WindowDestroyedEvent', 2049142),\n",
" (u'nsAutoRefTraits<nsMainThreadSourceSurfaceRef>::SurfaceReleaser', 1920820),\n",
" (u'nsScrollbarButtonFrame(labeled)', 1913628),\n",
" (u'nsAsyncRedirectVerifyHelper', 1913570),\n",
" (u'nsAsyncVerifyRedirectCallbackEvent', 1913568),\n",
" (u'PHttpChannel::Msg_Redirect1Begin', 1910763),\n",
" (u'PHttpChannel::Msg_Redirect3Complete', 1909200),\n",
" (u'EventListenerService::NotifyPendingChanges', 1885931),\n",
" (u'PDocAccessible::Msg___delete__(labeled)', 1787827),\n",
" (u'nsRefreshTimer(labeled)', 1751702),\n",
" (u'ScriptLoaderRunnable', 1687343),\n",
" (u'PContent::Msg_LoadAndRegisterSheet', 1581679),\n",
" (u'PTCPSocket::Msg_UpdateBufferedAmount(labeled)', 1556576),\n",
" (u'PRemoteSpellcheckEngine::Msg_NotifyOfCurrentDictionary', 1551082),\n",
" (u'dom::workers::WorkerProxyToMainThreadRunnable', 1550461),\n",
" (u'net::DNSRequestChild::StartRequest(labeled)', 1543937),\n",
" (u'PDNSRequest::Msg_LookupCompleted(labeled)', 1543656),\n",
" (u'PBrowser::Msg_CompositionEvent(labeled)', 1476864),\n",
" (u'dom::MainThreadFetchRunnable', 1463295),\n",
" (u'PContent::Msg_RegisterChrome', 1452269),\n",
" (u'RunnableFunction', 1443777),\n",
" (u'PContent::Msg_PScriptCacheConstructor', 1443092),\n",
" (u'PContent::Msg_SetXPCOMProcessAttributes', 1443092),\n",
" (u'PContent::Msg_InitRendering', 1443092),\n",
" (u'PContent::Msg_InitServiceWorkers', 1443092),\n",
" (u'PContent::Msg_RemoteType', 1443092),\n",
" (u'PContent::Msg_AppInfo', 1443092),\n",
" (u'PContent::Msg_InitBlobURLs', 1443092),\n",
" (u'PContent::Msg_InitProfiler', 1443091),\n",
" (u'nsObserverService::RegisterReporter', 1442993),\n",
" (u'AddPreferencesMemoryReporterRunnable', 1442986),\n",
" (u'PContent::Msg_InitProcessHangMonitor', 1442983),\n",
" (u'AbstractThread::Runner for CubebUtils::InitLibrary', 1442975),\n",
" (u'nsContentUtils::UserInteractionObserver::Init', 1442975),\n",
" (u'AddConsolePrefWatchers', 1442975),\n",
" (u'RegisterObserverRunnable(labeled)', 1442910),\n",
" (u'PContent::Msg_SetProcessSandbox', 1441845),\n",
" (u'Canceled_timer', 1435601),\n",
" (u'WebrtcVideoConduit::WebrtcVideoConduit', 1422944),\n",
" (u'PMessagePort::Msg_Entangled', 1414898),\n",
" (u'dom::EventSourceImpl::DispatchAllMessageEvents', 1402038),\n",
" (u'POfflineCacheUpdate::Msg_NotifyStateEvent', 1379942),\n",
" (u'AbstractThread::Runner for MediaStreamGraphShutdownThreadRunnable(labeled)',\n",
" 1352099),\n",
" (u'CheckPluginStopEvent', 1347665),\n",
" (u'PBackgroundIDBFactoryRequest::Msg___delete__(labeled)', 1346649),\n",
" (u'AbstractThread::Runner for EndedEventDispatcher(labeled)', 1331064),\n",
" (u'PBackgroundStorage::Msg_Observe', 1304971),\n",
" (u'dom::workers::WorkerProxyToMainThreadRunnable(labeled)', 1290865),\n",
" (u'nsAutoFocusEvent', 1278554),\n",
" (u'dom::workers::FinishResponse', 1253869),\n",
" (u'PWebSocket::Msg_OnStart(labeled)', 1219299),\n",
" (u'WorkerThreadPrimaryRunnable::FinishedRunnable', 1183804),\n",
" (u'PBackgroundStorage::Msg_OriginsHavingData', 1175906),\n",
" (u'PBackgroundIDBFactory::Msg_PBackgroundIDBDatabaseConstructor(labeled)',\n",
" 1175313),\n",
" (u'crashreporter::LSPAnnotationGatherer::Annotate', 1172393),\n",
" (u'PContent::Msg_SetAudioSessionData', 1160427),\n",
" (u'nsPresContext::HandleRebuildCounterStyles(labeled)', 1142384),\n",
" (u'CompositableForwarder(labeled)', 1118714),\n",
" (u'PaintTimerCallBack(labeled)', 1105717),\n",
" (u'PHttpChannel::Msg_ReportSecurityMessage(labeled)', 1100075),\n",
" (u'dom::CallbackRunnable(labeled)', 1060522),\n",
" (u'dom::AsyncErrorReporter', 1036182),\n",
" (u'AbstractThread::Runner for GraphStartedRunnable(labeled)', 1007727),\n",
" (u'nsJARChannel::FireOnProgress', 995098),\n",
" (u'PWebSocket::Msg_OnServerClose(labeled)', 952584),\n",
" (u'StyleImageRequestCleanupTask(labeled)', 940436),\n",
" (u'nsChannelClassifier::NotifyTrackingProtectionDisabled(labeled)', 938898),\n",
" (u'dom::workers::WorkerMainThreadRunnable', 922487),\n",
" (u'HashchangeCallback(labeled)', 914742),\n",
" (u'PBrowser::Msg_LoadURL(labeled)', 906310),\n",
" (u'PBackgroundIDBDatabase::Msg___delete__(labeled)', 901784),\n",
" (u'nsSimplePluginEvent', 901532),\n",
" (u'EncodingCompleteEvent', 883374),\n",
" (u'PContent::Msg_DataStorageClear', 874250),\n",
" (u'Anonymous_observer_timer', 870016),\n",
" (u'TopLevelWorkerFinishedRunnable(labeled)', 856748),\n",
" (u'MainThreadReleaseRunnable(labeled)', 855814),\n",
" (u'PBackgroundIDBFactory::Msg___delete__(labeled)', 816242),\n",
" (u'gfxFontInfoLoader::StartLoader', 758688),\n",
" (u'FontInfoLoadCompleteEvent', 756911),\n",
" (u'ShutdownThreadEvent', 756747),\n",
" (u'PBackgroundIDBCursor::Msg___delete__(labeled)', 741188),\n",
" (u'GlobalAllocPolicy::GlobalAllocPolicy(labeled)', 737535),\n",
" (u'PStunAddrsRequest::Msg_OnStunAddrsAvailable(labeled)', 735855),\n",
" (u'CallbackCaller(labeled)', 722327),\n",
" (u'PMessagePort::Msg___delete__', 700735),\n",
" (u'RuntimeService::ShutdownIdleThreads', 664224),\n",
" (u'nsXMLContentSink::ContinueInterruptedParsingIfEnabled', 610835),\n",
" (u'nsContentSink::DoProcessLinkHeader', 602345),\n",
" (u'PWebSocket::Msg_OnMessageAvailable', 594817),\n",
" (u'PContentPermissionRequest::Msg___delete__', 593443),\n",
" (u'NotificationPermissionRequest(labeled)', 591483),\n",
" (u'net::ExecuteCallback(labeled)', 585307),\n",
" (u'PDocAccessible::Msg_Name(labeled)', 584456),\n",
" (u'PContent::Reply_CreateWindow', 581389),\n",
" (u'dom::nsSourceErrorEventRunner(labeled)', 579601),\n",
" (u'PContentPermissionRequest::Msg_NotifyResult', 578406),\n",
" (u'NotificationPermissionRequest::DispatchResolvePromise(labeled)', 566679),\n",
" (u'PBrowser::Msg_RealTouchEvent(labeled)', 555775),\n",
" (u'imgRequestProxy::OnLoadComplete(labeled)', 551266),\n",
" (u'PDocAccessible::Msg_ParentCOMProxy(labeled)', 534025),\n",
" (u'nsTextControlFrame::ScrollOnFocusEvent(labeled)', 522795),\n",
" (u'HTMLMediaElement::QueueLoadFromSourceTask(labeled)', 514570),\n",
" (u'dom::TrackEventRunner', 510949),\n",
" (u'dom::StreamReadyRunnable(labeled)', 503058),\n",
" (u'ScriptPreloader::DoFinishOffThreadDecode', 499553),\n",
" (u'StartupRefreshDriverTimer::ScheduleNextTick', 486437),\n",
" (u'layers::TextureClientReleaseTask', 472471),\n",
" (u'nsDocShell::FireDummyOnLocationChange(labeled)', 442992),\n",
" (u'media::LambdaRunnable', 421598),\n",
" (u'PBrowser::Msg_SetKeyboardIndicators(labeled)', 421440),\n",
" (u'HTMLMediaElement::ProgressTimerCallback', 417618),\n",
" (u'dom::workers::ChangeStateUpdater', 416404),\n",
" (u'DelayedRunnable', 412819),\n",
" (u'ProxyReleaseEvent for HeapAllocatedCallback', 406186),\n",
" (u'PStreamNotify::Msg_RedirectNotifyResponse(labeled)', 401107),\n",
" (u'PBackground::Msg_PIPCBlobInputStreamConstructor', 397886),\n",
" (u'PWebSocket::Msg_OnBinaryMessageAvailable', 382912),\n",
" (u'nsAsyncInstantiateEvent', 356179),\n",
" (u'PContent::Msg_SetConnectivity', 355010),\n",
" (u'TopLevelWorkerFinishedRunnable', 353905),\n",
" (u'MainThreadReleaseRunnable', 353899),\n",
" (u'ChannelMediaDecoder::ResourceCallback::TimerCallback', 352704),\n",
" (u'SyncRunnable(labeled)', 340667),\n",
" (u'nsIScriptElement::FireErrorEvent', 330516),\n",
" (u'AsyncResizeEventCallback(labeled)', 329310),\n",
" (u'ServiceWorkerPrivateTimerCallback', 320305),\n",
" (u'HistoryTracker(labeled)', 314646),\n",
" (u'dom::BlobCreationDoneRunnable(labeled)', 307030),\n",
" (u'PServiceWorkerManager::Msg_NotifyRegister', 296170),\n",
" (u'LoadTimerCallback(labeled)', 277680),\n",
" (u'gfx::gfxWindowsPlatform::SchedulePaintIfDeviceReset', 268746),\n",
" (u'dom::TextTrackManager::UpdateCueDisplay(labeled)', 264452),\n",
" (u'BeginConsumeBodyRunnable', 261664),\n",
" (u'ProxyReleaseEvent for nsDOMDataChannel::mSelfRef(labeled)', 259009),\n",
" (u'PrefChangedUpdateTimerCallback', 256566),\n",
" (u'PContent::Msg_ProvideAnonymousTemporaryFile', 247777),\n",
" (u'TelemetryIPCAccumulator::ArmIPCTimer(labeled)', 247407),\n",
" (u'nsMemoryReporterManager::DispatchReporter', 244989),\n",
" (u'nsContentSink_timer', 235248),\n",
" (u'PrefChangedUpdateTimerCallback(labeled)', 227715),\n",
" (u'AbstractThread::Runner for DispatchKeyNeededEvent(labeled)', 227127),\n",
" (u'dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed(labeled)',\n",
" 223110),\n",
" (u'PDocAccessible::Msg_Attributes(labeled)', 222030),\n",
" (u'IDBDatabase::NoteInactiveTransactionDelayed(labeled)', 214450),\n",
" (u'PBrowser::Msg_NavigateByKey(labeled)', 213781),\n",
" (u'InternalLoadEvent(labeled)', 213553),\n",
" (u'dom::workers::LifeCycleEventCallback', 212733),\n",
" (u'dom::XMLHttpRequestMainThread::CloseRequestWithError(labeled)', 210118),\n",
" (u'PBrowser::Msg_LoadRemoteScript', 207642),\n",
" (u'OnTransportStatusAsyncEvent(labeled)', 204934),\n",
" (u'nsCallRequestFullScreen(labeled)', 198372),\n",
" (u'dom::TimerDriver::TimerDriver', 196604),\n",
" (u'PPluginInstance::Msg_PluginFocusChange(labeled)', 194102),\n",
" (u'dom::workers::GetRegistrationRunnable', 192015),\n",
" (u'dom::asmjscache::FileDescriptorHolder', 182038),\n",
" (u'nsAutoScrollTimer(labeled)', 179363),\n",
" (u'PPluginScriptableObject::Msg_Invoke(labeled)', 175717),\n",
" (u'indexedDB::BackgroundCursorChild::DelayedActionRunnable(labeled)', 174822),\n",
" (u'PBrowser::Msg_MouseWheelEvent', 173207),\n",
" (u'PBrowser::Msg_AsyncMessage', 169073),\n",
" (u'Notification::Close(labeled)', 168509),\n",
" (u'AbstractThread::Runner for dom::StateChangeTask(labeled)', 163022),\n",
" (u'PBrowser::Msg_UpdateDimensions', 160928),\n",
" (u'nsDocShell::RestorePresentationEvent(labeled)', 155402),\n",
" (u'nsRefreshDriver::DoRefresh(labeled)', 155120),\n",
" (u'ChromiumCDMProxy::ResolvePromise(labeled)', 154512),\n",
" (u'PContent::Msg_EndDragSession', 154482),\n",
" (u'nsAutoRefTraits<nsOwningThreadSourceSurfaceRef>::SurfaceReleaser', 151674),\n",
" (u'PHttpChannel::Msg_LogBlockedCORSRequest(labeled)', 150561),\n",
" (u'PContent::Msg_NotifyAlertsObserver', 149623),\n",
" (u'Runnable', 148237),\n",
" (u'dom::HTMLTrackElement::DispatchTrustedEvent(labeled)', 146982),\n",
" (u'PHttpChannel::Msg_AssociateApplicationCache(labeled)', 143924),\n",
" (u'PWebSocket::Msg_OnAcknowledge', 143605),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_NPNVnetscapeWindow(labeled)', 142997),\n",
" (u'PHttpChannel::Msg_FinishInterceptedRedirect(labeled)', 139160),\n",
" (u'net::HttpChannelChild::FinishInterceptedRedirect', 139156),\n",
" (u'ShutdownThreadEvent(labeled)', 138523),\n",
" (u'PContent::Msg_AddPermission', 135018),\n",
" (u'PContent::Msg_LastPrivateDocShellDestroyed', 134831),\n",
" (u'psm::SyncRunnableBase', 134788),\n",
" (u'dom::WorkerListener::StartListeningForEvents', 133146),\n",
" (u'OggDemuxer::~OggDemuxer(labeled)', 132395),\n",
" (u'net::MsgEvent', 130153),\n",
" (u'dom::WorkerListener::StopListeningForEvents', 129285),\n",
" (u'imgRequestProxy::BlockOnload(labeled)', 128764),\n",
" (u'MediaDecodeTask::OnMetadataRead(labeled)', 125939),\n",
" (u'PSpeechSynthesis::Msg_VoiceAdded', 125666),\n",
" (u'nsFormFillController::MaybeStartControllingInput', 124182),\n",
" (u'dom::workers::GetReadyPromiseRunnable', 122361),\n",
" (u'Notification::CreateAndShow(labeled)', 121686),\n",
" (u'PMedia::Msg_GetPrincipalKeyResponse', 121586),\n",
" (u'FileCallbackRunnable(labeled)', 112740),\n",
" (u'ProxyReleaseEvent for MediaStreamGraphImpl::CurrentDriver(labeled)',\n",
" 105473),\n",
" (u'Empty_microtask_runnable', 103426),\n",
" (u'PExternalHelperApp::Msg___delete__', 102294),\n",
" (u'PDocAccessible::Msg_Description(labeled)', 98859),\n",
" (u'PChannelDiverter::Msg___delete__', 98573),\n",
" (u'HttpChannelChild::Resume(labeled)', 98398),\n",
" (u'PTCPSocket::Msg___delete__(labeled)', 97840),\n",
" (u'nsPresContext::ThemeChangedInternal(labeled)', 97274),\n",
" (u'sReflowContinueCallback(labeled)', 95784),\n",
" (u'PBrowser::Msg_SynthMouseMoveEvent', 89703),\n",
" (u'PContent::Msg_BidiKeyboardNotify', 88460),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_SupportsAsyncDXGISurface(labeled)',\n",
" 86232),\n",
" (u'PHttpChannel::Msg_SetPriority', 86035),\n",
" (u'AutoUnblockScriptClosing::~AutoUnblockScriptClosing(labeled)', 84589),\n",
" (u'PDocAccessible::Msg_RestoreFocus(labeled)', 84365),\n",
" (u'net::HttpChannelChild::TrySendDeletingChannel(labeled)', 83449),\n",
" (u'PBackgroundIDBDatabase::Msg_PBackgroundIDBVersionChangeTransactionConstructor(labeled)',\n",
" 82901),\n",
" (u'PBackgroundIDBVersionChangeTransaction::Msg_Complete(labeled)', 82884),\n",
" (u'PHttpChannel::Msg_FailedAsyncOpen(labeled)', 82422),\n",
" (u'PBrowser::Msg_ThemeChanged(labeled)', 81764),\n",
" (u'PBackgroundIDBVersionChangeTransaction::Msg___delete__(labeled)', 81588),\n",
" (u'PBrowser::Msg_HandleTap(labeled)', 81015),\n",
" (u'CharSetChangingRunnable', 80316),\n",
" (u'HTMLMediaElement::nsResolveOrRejectPendingPlayPromisesRunner', 78842),\n",
" (u'SHMEM_CREATED_MESSAGE(labeled)', 78578),\n",
" (u'gfxFontInfoLoader::FinalizeLoader', 77613),\n",
" (u'dom::workers::CheckScriptEvaluationWithCallback::ReportFetchFlag', 77504),\n",
" (u'dom::workers::ServiceWorkerManager::FireUpdateFoundOnServiceWorkerRegistrations',\n",
" 77381),\n",
" (u'nsSliderFrame(labeled)', 77262),\n",
" (u'PPluginInstance::Msg_NPN_PushPopupsEnabledState(labeled)', 75953),\n",
" (u'PBroadcastChannel::Msg_Notify', 75775),\n",
" (u'PPluginInstance::Msg_NPN_PopPopupsEnabledState(labeled)', 75258),\n",
" (u'PServiceWorkerManager::Msg_NotifyUnregister', 72407),\n",
" (u'imgRequestProxy::UnblockOnload(labeled)', 71296),\n",
" (u'PChildToParentStream::Msg___delete__', 70258),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_SupportsAsyncBitmapSurface(labeled)',\n",
" 67543),\n",
" (u'dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart',\n",
" 66992),\n",
" (u'PPluginScriptableObject::Msg___delete__', 66561),\n",
" (u'nsParserContinueEvent', 66281),\n",
" (u'dom::EventSourceImpl::AnnounceConnection', 65266),\n",
" (u'PAsmJSCacheEntry::Msg_OnOpenCacheFile', 64195),\n",
" (u'dom::workers::GetRegistrationsRunnable', 64050),\n",
" (u'ScriptLoaderRunnable::CancelMainThreadWithBindingAborted', 60672),\n",
" (u'<unknown IPC msg name>', 60588),\n",
" (u'PContent::Msg_ActivateA11y', 60479),\n",
" (u'gmp::ChromiumCDMParent::RecvOnSessionMessage(labeled)', 60331),\n",
" (u'nsPresContext::UIResolutionChangedInternal(labeled)', 58671),\n",
" (u'PDocAccessible::Msg_CharacterCount(labeled)', 58456),\n",
" (u'dom::workers::ServiceWorkerManager::FireControllerChange', 58081),\n",
" (u'PDocAccessible::Msg_TextSubstring(labeled)', 56746),\n",
" (u'PPluginInstance::Msg_SetNetscapeWindowAsParent(labeled)', 55884),\n",
" (u'ChromiumCDMProxy::OnSetSessionId(labeled)', 55659),\n",
" (u'PAsmJSCacheEntry::Msg_OnOpenMetadataForRead', 54738),\n",
" (u'PBroadcastChannel::Msg___delete__', 53696),\n",
" (u'WorkerScopeSkipWaitingRunnable', 53091),\n",
" (u'nsBindingManager::DoProcessAttachedQueue', 52910),\n",
" (u'dom::MainThreadFetchRunnable(labeled)', 51126),\n",
" (u'dom::HTMLMediaElement::DoRemoveSelfReference', 51038),\n",
" (u'PBrowser::Msg_RealMouseButtonEvent', 50948),\n",
" (u'ClaimRunnable', 50783),\n",
" (u'MatchAllRunnable', 50187),\n",
" (u'nsThreadSyncDispatch', 49821),\n",
" (u'ChromiumCDMProxy::OnCDMCreated(labeled)', 49522),\n",
" (u'UpdateContextLossStatusTask', 49081),\n",
" (u'nsPagePrintTimer(labeled)', 48771),\n",
" (u'PCompositorBridge::Msg_DidComposite', 44493),\n",
" (u'PContent::Msg_NotifyEmptyHTTPCache', 43085),\n",
" (u'POfflineCacheUpdate::Msg_Finish', 42700),\n",
" (u'AsyncGetPACURIRequestCallback', 42167),\n",
" (u'PBrowser::Msg_SetDocShellIsActive', 40415),\n",
" (u'ChromiumCDMProxy::Shutdown(labeled)', 40139),\n",
" (u'dom::EventSourceImpl::CloseInternal', 39980),\n",
" (u'AbstractThread::Runner for dom::OnStateChangeTask(labeled)', 39613),\n",
" (u'GMPCrashHelper::Destroy(labeled)', 39530),\n",
" (u'PAsmJSCacheEntry::Msg___delete__', 38708),\n",
" (u'ProxyReleaseEvent for AsyncGetPACURIRequest::mServiceHolder(labeled)',\n",
" 38573),\n",
" (u'PFTPChannel::Msg_OnDataAvailable(labeled)', 38353),\n",
" (u'PContent::Msg_SetOffline', 35957),\n",
" (u'PContent::Msg_InvokeDragSession', 35735),\n",
" (u'PContent::Msg_ClearImageCache', 35412),\n",
" (u'POfflineCacheUpdate::Msg_AssociateDocuments', 34677),\n",
" (u'PNecko::Reply_GetExtensionStream', 34360),\n",
" (u'PContent::Msg_PFileDescriptorSetConstructor', 34312),\n",
" (u'dom::EventSourceImpl::ReestablishConnection', 33600),\n",
" (u'ProxyReleaseEvent for WebSocketImpl::mService(labeled)', 33523),\n",
" (u'ProxyReleaseEvent for WebSocketImpl::mChannel(labeled)', 33286),\n",
" (u'PStreamNotify::Msg_RedirectNotifyResponse', 32499),\n",
" (u'PBrowser::Msg_SetUseGlobalHistory', 31590),\n",
" (u'PWebSocket::Msg_OnStop', 31237),\n",
" (u'ProxyReleaseEvent for URLValueData::mURI', 31219),\n",
" (u'PFilePicker::Msg___delete__(labeled)', 31205),\n",
" (u'nsPluginHost', 31168),\n",
" (u'PChildToParentStream::Msg_StartReading', 30675),\n",
" (u'nsHtml5DataAvailable', 30670),\n",
" (u'PBrowser::Msg_RealKeyEvent', 29675),\n",
" (u'PContent::Msg_UnregisterSheet', 29471),\n",
" (u'PBrowser::Msg_SetWidgetNativeData', 29153),\n",
" (u'ChromiumCDMProxy::OnSessionClosed(labeled)', 28932),\n",
" (u'PWebSocket::Msg___delete__', 28126),\n",
" (u'PContent::Msg_NotifyPushSubscriptionModifiedObservers', 27884),\n",
" (u'ChromiumCDMProxy::OnExpirationChange(labeled)', 27735),\n",
" (u'PWebSocket::Msg_OnStart', 25816),\n",
" (u'PBrowser::Msg_UpdateNativeWindowHandle', 25444),\n",
" (u'CSPReportSenderRunnable(labeled)', 24789),\n",
" (u'PDocAccessible::Msg_LinkIndexAtOffset(labeled)', 24521),\n",
" (u'dom::EventSourceImpl::SetReconnectionTimeout', 24491),\n",
" (u'PDocAccessible::Msg_TableIsProbablyForLayout(labeled)', 22268),\n",
" (u'dom::CreateImageBitmapFromBlobTask', 22239),\n",
" (u'ServiceWorkerClientPostMessageRunnable', 22026),\n",
" (u'net::HttpBaseChannel::EnsureUploadStreamIsCloneableComplete', 21856),\n",
" (u'dom::AudioDestinationNode::FireOfflineCompletionEvent', 21724),\n",
" (u'WorkerGetRunnable', 20748),\n",
" (u'PBrowser::Msg_SwappedWithOtherRemoteLoader(labeled)', 20679),\n",
" (u'dom::TrackEventRunner(labeled)', 20611),\n",
" (u'ChromiumCDMProxy::OnKeyStatusesChange(labeled)', 20330),\n",
" (u'AbstractThread::Runner for PrincipalHandleOrImageSizeChanged(labeled)',\n",
" 20321),\n",
" (u'PContent::Msg_UpdateDictionaryList', 20109),\n",
" (u'SyncRunnable', 19650),\n",
" (u'AbstractThread::Runner for IntrinsicSizeChanged(labeled)', 19493),\n",
" (u'ProxyReleaseEvent for Console::mStorage(labeled)', 19208),\n",
" (u'AbstractThread::Runner for dom::OfflineDestinationNodeEngine::OnCompleteTask(labeled)',\n",
" 18852),\n",
" (u'WaitUntilHandler::ReportOnMainThread', 18623),\n",
" (u'PPluginInstance::Msg_NPN_SetValue_NPPVpluginDrawingModel(labeled)', 18622),\n",
" (u'PWebBrowserPersistDocument::Msg___delete__', 18338),\n",
" (u'PAltDataOutputStream::Msg_DeleteSelf(labeled)', 17788),\n",
" (u'PContent::Msg_PBrowserConstructor', 17620),\n",
" (u'PBrowser::Msg_PRenderFrameConstructor', 17620),\n",
" (u'PBrowser::Msg_Show', 17620),\n",
" (u'PBrowser::Msg_InitRendering', 17620),\n",
" (u'PBrowser::Msg_Destroy', 17562),\n",
" (u'PDocAccessible::Msg_GetTextAtOffset(labeled)', 17284),\n",
" (u'PBrowser::Msg_SuppressDisplayport', 17233),\n",
" (u'PDocAccessible::Msg_TextBounds(labeled)', 16986),\n",
" (u'PDocAccessible::Msg_CurValue(labeled)', 16773),\n",
" (u'dom::EventSourceImpl::FailConnection', 16680),\n",
" (u'PDocAccessible::Msg_StartOffset(labeled)', 16655),\n",
" (u'PDocAccessible::Msg_EndOffset(labeled)', 16646),\n",
" (u'ConduitDeleteEvent', 16629),\n",
" (u'ProxyReleaseEvent for MakePrincipalHandle::nsIPrincipal', 16582),\n",
" (u'PBrowser::Msg_LoadURL', 16565),\n",
" (u'FetchStream::ReleaseObjects(labeled)', 16287),\n",
" (u'dom::CancelWebSocketRunnable', 16159),\n",
" (u'RequestPromptEvent', 16053),\n",
" (u'PSpeechSynthesis::Msg_InitialVoicesAndState', 15692),\n",
" (u'PContent::Msg_SetCaptivePortalState', 15222),\n",
" (u'PRemotePrintJob::Msg_PageProcessed(labeled)', 14099),\n",
" (u'PContent::Msg_PushWithData', 14049),\n",
" (u'dom::HTMLMediaElement::StreamSizeListener::ReceivedSize(labeled)', 13972),\n",
" (u'PBrowser::Msg_SwappedWithOtherRemoteLoader', 13970),\n",
" (u'ProxyReleaseEvent for Console::mSandbox(labeled)', 13699),\n",
" (u'MozPromise::ThenValueBase::ResolveOrRejectRunnable(labeled)', 13159),\n",
" (u'GetRunnable', 13007),\n",
" (u'PPluginInstance::Msg_InitDXGISurface(labeled)', 12834),\n",
" (u'HandleNumberControlSpin(labeled)', 12525),\n",
" (u'PAltDataOutputStream::Msg_Error(labeled)', 12139),\n",
" (u'PWebBrowserPersistDocument::Msg_SetPersistFlags', 11626),\n",
" (u'PWebBrowserPersistDocument::Msg_PWebBrowserPersistResourcesConstructor',\n",
" 11609),\n",
" (u'net::CancelDNSRequestEvent(labeled)', 11250),\n",
" (u'PSpeechSynthesis::Msg_NotifyVoicesChanged', 10864),\n",
" (u'PWebBrowserPersistDocument::Msg_PWebBrowserPersistSerializeConstructor',\n",
" 10824),\n",
" (u'PServiceWorkerManager::Msg_NotifyRemoveAll', 10586),\n",
" (u'ScriptLoader::EncodeBytecode', 10418),\n",
" (u'AbstractThread::Runner for MozPromise::ThenValueBase::ResolveOrRejectRunnable',\n",
" 9893),\n",
" (u'PContent::Msg_PWebBrowserPersistDocumentConstructor', 9855),\n",
" (u'DebuggerOnGCRunnable(labeled)', 9850),\n",
" (u'WheelTransaction::SetTimeout', 9498),\n",
" (u'nsExternalAppHandler', 9353),\n",
" (u'PBrowser::Msg_StopIMEStateManagement', 9259),\n",
" (u'PHttpChannel::Msg_IssueDeprecationWarning(labeled)', 9231),\n",
" (u'PPrintSettingsDialog::Msg___delete__(labeled)', 9185),\n",
" (u'PGamepadEventChannel::Msg___delete__', 9152),\n",
" (u'PDocAccessible::Msg_Relations(labeled)', 8991),\n",
" (u'dom::HTMLMediaElement::WakeLockBoolWrapper::UpdateWakeLock', 8850),\n",
" (u'PWebSocket::Msg_OnServerClose', 8805),\n",
" (u'PBrowser::Msg_SizeModeChanged', 8801),\n",
" (u'PWyciwygChannel::Msg_OnStopRequest(labeled)', 8778),\n",
" (u'PWyciwygChannel::Msg_OnStartRequest(labeled)', 8778),\n",
" (u'ChromeTooltipListener::MouseMove', 8769),\n",
" (u'PDocAccessible::Msg_Extents(labeled)', 8627),\n",
" (u'PBrowser::Msg_SetKeyboardIndicators', 8498),\n",
" (u'PSpeechSynthesis::Msg_IsSpeakingChanged', 8244),\n",
" (u'PWyciwygChannel::Msg_OnDataAvailable(labeled)', 7975),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyDataEnded',\n",
" 7946),\n",
" (u'net::ExecuteCallback', 7818),\n",
" (u'dom::LoadStartDetectionRunnable', 7720),\n",
" (u'net::HttpChannelChild::AsyncCall', 7534),\n",
" (u'nsHtml5TimerKungFu', 7520),\n",
" (u'nsHtml5RequestStopper', 7507),\n",
" (u'PFileSystemRequest::Msg___delete__(labeled)', 7487),\n",
" (u'HTMLMediaElement::VideoDecodeSuspendTimerCallback', 7413),\n",
" (u'dom::NotifyObserversTask', 7336),\n",
" (u'PPluginInstance::Msg_FinalizeDXGISurface(labeled)', 7223),\n",
" (u'dom::AsyncTeardownRunnable', 7207),\n",
" (u'dom::TeardownURLRunnable', 7188),\n",
" (u'PBackgroundIDBDatabase::Msg_VersionChange(labeled)', 7125),\n",
" (u'Accessible::TakeFocus', 7086),\n",
" (u'PDocAccessible::Msg_CaretOffset(labeled)', 7057),\n",
" (u'nsHtml5StreamParserContinuation', 6826),\n",
" (u'Notification::CreateAndShow', 6776),\n",
" (u'PExternalHelperApp::Msg_Cancel', 6649),\n",
" (u'PPluginInstance::Msg_PPluginSurfaceConstructor(labeled)', 6582),\n",
" (u'PPrinting::Msg_PRemotePrintJobConstructor(labeled)', 6582),\n",
" (u'nsPrintCompletionEvent(labeled)', 6568),\n",
" (u'PPrintProgressDialog::Msg_DialogOpened(labeled)', 6550),\n",
" (u'PRemotePrintJob::Msg_PrintInitializationResult(labeled)', 6550),\n",
" (u'PRemotePrintJob::Msg___delete__(labeled)', 6541),\n",
" (u'PBackgroundIDBFactoryRequest::Msg_Blocked(labeled)', 6484),\n",
" (u'PCompositorBridge::Msg_SharedCompositorFrameMetrics', 6410),\n",
" (u'PCompositorBridge::Msg_ReleaseSharedCompositorFrameMetrics', 6403),\n",
" (u'ChannelLoader::LoadInternal', 6330),\n",
" (u'PContent::Msg_VarUpdate', 6315),\n",
" (u'imgRequestProxy::Notify', 6298),\n",
" (u'EmptyEntriesCallbackRunnable(labeled)', 6245),\n",
" (u'nsGeolocationRequest::TimerCallbackHolder', 5709),\n",
" (u'DelayedFireSingleTapEvent(labeled)', 5693),\n",
" (u'PAPZ::Msg_NotifyAutoscrollHandledByAPZ(labeled)', 5617),\n",
" (u'widget::AudioSession::OnSessionDisconnectedInternal', 5377),\n",
" (u'dom::workers::CancelChannelRunnable', 5270),\n",
" (u'ScriptErrorRunnable(labeled)', 5213),\n",
" (u'ipc::MessageChannel::OnNotifyMaybeChannelError', 5207),\n",
" (u'ProxyReleaseEvent for AudioProxyThread::mConduit(labeled)', 5201),\n",
" (u'LogToBrowserConsole(labeled)', 5162),\n",
" (u'PCookieService::Msg_RemoveAll', 5005),\n",
" (u'PContent::Msg_Shutdown', 4937),\n",
" (u'dom::FileCreatedRunnable(labeled)', 4865),\n",
" (u'PDocAccessible::Msg_URL(labeled)', 4827),\n",
" (u'FinalizationEvent', 4689),\n",
" (u'PColorPicker::Msg_Update(labeled)', 4419),\n",
" (u'nsHtml5StreamParserReleaser', 4336),\n",
" (u'media-runnable_args_base(labeled)', 4277),\n",
" (u'PContent::Msg_InitGMPService', 4275),\n",
" (u'PContent::Msg_ReinitRenderingForDeviceReset', 4246),\n",
" (u'PDocAccessible::Msg_SelectionBoundsAt(labeled)', 4124),\n",
" (u'GetUserMediaNotificationEvent', 3886),\n",
" (u'AbstractThread::Runner for media-runnable_args_base(labeled)', 3621),\n",
" (u'nsPresContextType::RunWillPaintObservers', 3496),\n",
" (u'dom::XMLHttpRequestMainThread::CloseRequestWithError', 3475),\n",
" (u'PBrowser::Msg_RealDragEvent', 3411),\n",
" (u'dom::HTMLCanvasElement::CallPrintCallback(labeled)', 3371),\n",
" (u'dom::HTMLCanvasPrintState::NotifyDone', 3367),\n",
" (u'RequestAllowEvent', 3224),\n",
" (u'PPluginInstance::Msg_RevokeCurrentDirectSurface(labeled)', 3215),\n",
" (u'PVRLayer::Msg___delete__(labeled)', 3176),\n",
" (u'PFTPChannel::Msg_OnStartRequest(labeled)', 3157),\n",
" (u'ProxyReleaseEvent for CheckScriptEvaluationWithCallback::mKeepAliveToken',\n",
" 3095),\n",
" (u'ProxyReleaseEvent for CheckScriptEvaluationWithCallback::mServiceWorkerPrivate',\n",
" 3095),\n",
" (u'PDocAccessible::Msg_Text(labeled)', 3045),\n",
" (u'dom::CreateBlobRunnable(labeled)', 3041),\n",
" (u'PFTPChannel::Msg_OnStopRequest(labeled)', 2991),\n",
" (u'net::HttpChannelChild::OverrideRunnable', 2807),\n",
" (u'dom::nsResumeTimeoutsEvent', 2753),\n",
" (u'PContent::Msg_RequestMemoryReport', 2715),\n",
" (u'dom::MediaRecorder::Session::PushBlobRunnable', 2667),\n",
" (u'dom::MediaRecorder::Session::EncoderErrorNotifierRunnable', 2667),\n",
" (u'PContent::Msg_ReinitRendering', 2662),\n",
" (u'nsPresContext::ThemeChangedInternal', 2637),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_PreferredDXGIAdapter(labeled)', 2607),\n",
" (u'dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed',\n",
" 2601),\n",
" (u'PBrowser::Msg_UIResolutionChanged', 2503),\n",
" (u'dom::PostMessageRunnable', 2410),\n",
" (u'PSpeechSynthesisRequest::Msg_OnResume', 2381),\n",
" (u'PSpeechSynthesisRequest::Msg_OnPause', 2378),\n",
" (u'PFileDescriptorSet::Msg___delete__', 2364),\n",
" (u'PPluginSurface::Msg___delete__(labeled)', 2245),\n",
" (u'nsHtml5LoadFlusher', 2158),\n",
" (u'MediaManager::SendPendingGUMRequest', 2097),\n",
" (u'PVRManager::Msg_ReplyGamepadVibrateHaptic', 2096),\n",
" (u'layers::ReleaseOnMainThreadTask(labeled)', 2072),\n",
" (u'LayerTransactionChild::Destroy(labeled)', 2072),\n",
" (u'GetUserMediaStreamRunnable', 2068),\n",
" (u'nsIInterceptedChannel::ResetInterception', 2057),\n",
" (u'Notification::Close', 2036),\n",
" (u'PDocAccessible::Msg_SelectionCount(labeled)', 2028),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_NPNVdocumentOrigin(labeled)', 1992),\n",
" (u'nsIDocument::SelectorCache', 1989),\n",
" (u'nsPACMan::StartLoading', 1987),\n",
" (u'History::DispatchNotifyVisited', 1916),\n",
" (u'PDocAccessible::Msg_SetCaretOffset(labeled)', 1914),\n",
" (u'SourceListener::NotifyRemoved', 1912),\n",
" (u'PAPZ::Msg_NotifyAsyncScrollbarDragRejected(labeled)', 1890),\n",
" (u'PBrowser::Msg_SelectionEvent(labeled)', 1886),\n",
" (u'PBrowser::Msg_MenuKeyboardListenerInstalled', 1864),\n",
" (u'dom::GetSubscriptionRunnable', 1759),\n",
" (u'ChromiumCDMProxy::OnSessionError(labeled)', 1667),\n",
" (u'PHttpChannel::Msg_ReportSecurityMessage', 1599),\n",
" (u'AbstractThread::Runner for BenchmarkPlayback::Output', 1558),\n",
" (u'PPluginScriptableObject::Msg_GetParentProperty(labeled)', 1548),\n",
" (u'gfxPlatformFontList::InitOtherFamilyNamesRunnable', 1498),\n",
" (u'GASRunnable(labeled)', 1393),\n",
" (u'SourceListener::NotifyFinished', 1385),\n",
" (u'nsFontFaceLoader::LoadTimerCallback(labeled)', 1376),\n",
" (u'MinimizeMemoryUsageRunnable', 1288),\n",
" (u'dom::FontFaceSet::CheckLoadingFinishedAfterDelay', 1281),\n",
" (u'dom::BlobCreationDoneRunnable', 1228),\n",
" (u'dom::WebAudioUtils::LogToDeveloperConsole(labeled)', 1183),\n",
" (u'PServiceWorkerManager::Msg_NotifyRemove', 1176),\n",
" (u'PDocAccessible::Msg_CharBounds(labeled)', 1159),\n",
" (u'NotifyObservers', 1157),\n",
" (u'PSpeechSynthesis::Msg_SetDefaultVoice', 1073),\n",
" (u'GmpInitDoneRunnable', 1024),\n",
" (u'PContent::Msg_FlushMemory', 992),\n",
" (u'AbstractThread::Runner for RunnableRelease(labeled)', 958),\n",
" (u'PDocAccessible::Msg_ActionCount(labeled)', 888),\n",
" (u'PDocAccessible::Msg_ActionNameAt(labeled)', 888),\n",
" (u'nsTransformBlockerEvent', 850),\n",
" (u'PostDebuggerMessageRunnable', 835),\n",
" (u'PPluginScriptableObject::Msg_Unprotect(labeled)', 784),\n",
" (u'PHttpChannel::Msg_LogBlockedCORSRequest', 770),\n",
" (u'ipc::TaskFactory::RunnableMethod', 759),\n",
" (u'PDocAccessible::Msg_ParentCOMProxy', 719),\n",
" (u'PContent::Msg_Push', 683),\n",
" (u'ProxyReleaseEvent for nsConsoleService::retiredMessage(labeled)', 681),\n",
" (u'PointerLockRequest(labeled)', 658),\n",
" (u'dom::MediaRecorder::Session::DispatchStartEventRunnable', 633),\n",
" (u'dom::MediaRecorder::Session::DestroyRunnable', 633),\n",
" (u'nsPACMan::StartLoading(labeled)', 629),\n",
" (u'nsHtml5ExecutorFlusher', 616),\n",
" (u'PBackgroundStorage::Msg_Error', 567),\n",
" (u'nsPluginCrashedEvent', 555),\n",
" (u'dom::workers::WorkerPrivate::MemoryReporter::FinishCollectRunnable(labeled)',\n",
" 548),\n",
" (u'dom::CallbackRunnable', 524),\n",
" (u'FileReader(labeled)', 512),\n",
" (u'nsHtml5StreamParser::DoDataAvailable', 493),\n",
" (u'CompositorBridgeChild::AfterDestroy', 492),\n",
" (u'PDocAccessible::Msg_TakeFocus(labeled)', 487),\n",
" (u'PBackgroundIDBDatabase::Msg_Invalidate(labeled)', 420),\n",
" (u'PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete(labeled)', 420),\n",
" (u'PContent::Msg_PushSubscriptionChange', 408),\n",
" (u'AsyncTaskRunnable', 362),\n",
" (u'PPluginInstance::Msg_NPN_GetURL(labeled)', 361),\n",
" (u'PPluginSurface::Msg___delete__', 359),\n",
" (u'PBrowser::Msg_RealTouchMoveEvent', 350),\n",
" (u'PDocAccessible::Msg___delete__', 340),\n",
" (u'PDocAccessible::Msg_AtkKeyBinding(labeled)', 326),\n",
" (u'net::PACLoadComplete(labeled)', 323),\n",
" (u'PContent::Msg_MinimizeMemoryUsage', 322),\n",
" (u'DestroyViewerEvent(labeled)', 313),\n",
" (u'PDocAccessible::Msg_AnchorURIAt(labeled)', 304),\n",
" (u'EventStateManager::CreateClickHoldTimer(labeled)', 301),\n",
" (u'imgRequestProxy::OnLoadComplete', 266),\n",
" (u'dom::StreamReadyRunnable', 263),\n",
" (u'PBrowser::Msg_HandledWindowedPluginKeyEvent(labeled)', 262),\n",
" (u'PBrowser::Msg_SetOriginAttributes(labeled)', 261),\n",
" (u'PPluginInstance::Msg_OnWindowedPluginKeyEvent(labeled)', 259),\n",
" (u'dom::FulfillImageBitmapPromiseTask', 258),\n",
" (u'PDocAccessible::Msg_LinkCount(labeled)', 258),\n",
" (u'WebCore::HRTFDatabaseLoader::ProxyReleaseEvent', 248),\n",
" (u'PContent::Msg_UpdateAppLocales', 246),\n",
" (u'PHttpChannel::Msg_AssociateApplicationCache', 245),\n",
" (u'imgRequestProxy::BlockOnload', 232),\n",
" (u'imgRequestProxy::UnblockOnload', 232),\n",
" (u'nsChannelClassifier::NotifyTrackingProtectionDisabled', 215),\n",
" (u'AbstractThread::Runner for ReportResultTask(labeled)', 199),\n",
" (u'PBrowser::Msg_HandleAccessKey(labeled)', 193),\n",
" (u'SimpleTimerBasedRefreshDriverTimer::StartTimer', 191),\n",
" (u'PDocAccessible::Msg_URLDocTypeMimeType(labeled)', 190),\n",
" (u'PWebrtcGlobal::Msg_GetStatsRequest', 183),\n",
" (u'PBrowser::Msg_SetWindowName(labeled)', 179),\n",
" (u'PFTPChannel::Msg_FlushedForDiversion(labeled)', 175),\n",
" (u'PFTPChannel::Msg_DivertMessages(labeled)', 175),\n",
" (u'PFTPChannel::Msg_DeleteSelf(labeled)', 174),\n",
" (u'NotificationGetRunnable(labeled)', 172),\n",
" (u'PHttpChannel::Msg_FailedAsyncOpen', 163),\n",
" (u'AsyncPaintWaitEvent', 162),\n",
" (u'net::HttpChannelChild::OnTransportAndData', 156),\n",
" (u'PQuotaUsageRequest::Msg___delete__', 144),\n",
" (u'PWebrtcGlobal::Msg_ClearStatsRequest', 133),\n",
" (u'net::PACLoadComplete', 130),\n",
" (u'PContent::Msg_GarbageCollect', 129),\n",
" (u'PBrowser::Reply_BrowserFrameOpenWindow(labeled)', 126),\n",
" (u'PColorPicker::Msg___delete__(labeled)', 118),\n",
" (u'PContent::Msg_CycleCollect', 108),\n",
" (u'AbstractThread::Runner for MediaStreamGraphShutDownRunnable(labeled)',\n",
" 102),\n",
" (u'PostDebuggerMessageRunnable(labeled)', 100),\n",
" (u'PMessagePort::Msg_StopSendingDataConfirmed', 99),\n",
" (u'PChildToParentStream::Msg_RequestClose', 92),\n",
" (u'PDocAccessible::Msg_TextAttributes(labeled)', 90),\n",
" (u'PDocAccessible::Msg_DefaultTextAttributes(labeled)', 90),\n",
" (u'nsFocusManager::RaiseWindow', 89),\n",
" (u'PPluginInstance::Msg_NPN_GetValueForURL(labeled)', 86),\n",
" (u'nsFtpChildAsyncAlert(labeled)', 85),\n",
" (u'dom::StartUnregisterRunnable', 81),\n",
" (u'PRemotePrintJob::Msg_AbortPrint(labeled)', 79),\n",
" (u'XPCJSRuntime::DoCycleCollectionCallback', 75),\n",
" (u'PContent::Msg_UpdateRequestedLocales', 73),\n",
" (u'AbstractThread::Runner for AsyncCubebTask::EnsureThread', 67),\n",
" (u'dom::nsSourceErrorEventRunner', 63),\n",
" (u'PDocAccessible::Msg_ImageSize(labeled)', 62),\n",
" (u'PWebAuthnTransaction::Msg_ConfirmSign', 62),\n",
" (u'nsPluginDestroyRunnable', 62),\n",
" (u'PContent::Msg_GeolocationError', 60),\n",
" (u'dom::HTMLCanvasElement::ToBlob(labeled)', 57),\n",
" (u'PServiceWorkerManager::Msg_NotifySoftUpdate', 54),\n",
" (u'PBrowser::Msg_RealTouchEvent', 52),\n",
" (u'AppendAppNotesRunnable(labeled)', 52),\n",
" (u'dom::UnsubscribeRunnable', 52),\n",
" (u'PDocAccessible::Msg_EmulatedWindow(labeled)', 51),\n",
" (u'PWebrtcGlobal::Msg_GetLogRequest', 51),\n",
" (u'ClientFocusRunnable', 49),\n",
" (u'PBrowser::Msg_AwaitLargeAlloc(labeled)', 48),\n",
" (u'ErrorCallbackRunnable', 43),\n",
" (u'PBrowser::Msg_SetWindowName', 42),\n",
" (u'PContent::Msg_FileCreationResponse', 41),\n",
" (u'IMENotificationSender', 39),\n",
" (u'GetUserMediaWindowListener::Remove', 38),\n",
" (u'PPSMContentDownloader::Msg___delete__', 36),\n",
" (u'PointerUnlocker', 35),\n",
" (u'PBrowser::Msg_CompositionEvent', 35),\n",
" (u'PDocAccessible::Msg_ImagePosition(labeled)', 35),\n",
" (u'CheckResponsivenessTask', 33),\n",
" (u'nsDocumentShownDispatcher', 32),\n",
" (u'dom::workers::WorkerPrivate::MemoryReporter::FinishCollectRunnable', 31),\n",
" (u'PDocAccessible::Msg_TableRowCount(labeled)', 31),\n",
" (u'ReportFetchListenerWarningRunnable', 31),\n",
" (u'PWebAuthnTransaction::Msg_ConfirmRegister', 29),\n",
" (u'ChromiumCDMProxy::RejectPromise(labeled)', 28),\n",
" (u'dom::ThreadInitializeRunnable(labeled)', 26),\n",
" (u'PDocAccessible::Msg_NativeState(labeled)', 25),\n",
" (u'PContent::Msg_GetFilesResponse', 25),\n",
" (u'dom::workers::PushErrorReporter::ReportOnMainThread', 25),\n",
" (u'PQuotaRequest::Msg___delete__', 25),\n",
" (u'AbstractThread::Runner for detail::Listener::ApplyWithNoArgs(labeled)',\n",
" 24),\n",
" (u'dom::U2FSignRunnable::Run(labeled)', 22),\n",
" (u'ProxyReleaseEvent for U2FSignRunnable::mCallback', 22),\n",
" (u'net::WaitForThreadShutdown(labeled)', 20),\n",
" (u'ProxyReleaseEvent for U2FRegisterRunnable::mCallback', 20),\n",
" (u'dom::U2FRegisterRunnable::Run(labeled)', 20),\n",
" (u'PDocAccessible::Msg_RestoreFocus', 19),\n",
" (u'RegisterDebuggerMainThreadRunnable', 19),\n",
" (u'PBrowser::Msg_ThemeChanged', 19),\n",
" (u'UnregisterDebuggerMainThreadRunnable', 19),\n",
" (u'PBrowser::Msg_Print(labeled)', 18),\n",
" (u'nsHtml5Parser::Terminate', 18),\n",
" (u'dom::ContentChild::AsyncOpenAnonymousTemporaryFile', 17),\n",
" (u'nsBaseChannel::RedirectRunnable(labeled)', 17),\n",
" (u'LargeAllocationFailureRunnable', 14),\n",
" (u'FuzzTimerCallBack', 14),\n",
" (u'dom::U2FTask(labeled)', 12),\n",
" (u'PSpeechSynthesisRequest::Msg_OnBoundary', 12),\n",
" (u'DataChannelBlobSendRunnable(labeled)', 12),\n",
" (u'PContent::Msg_PushError', 12),\n",
" (u'nsImageBoxFrameEvent(labeled)', 12),\n",
" (u'HttpChannelChild::SetMatchedInfo', 12),\n",
" (u'dom::CreateBlobRunnable', 10),\n",
" (u'dom::FileCreatedRunnable', 10),\n",
" (u'PDocAccessible::Msg_LinkAt(labeled)', 10),\n",
" (u'indexedDB::BackgroundRequestChild::PreprocessHelper(labeled)', 9),\n",
" (u'PBackgroundIDBRequest::Msg_Preprocess(labeled)', 9),\n",
" (u'LogForwarderEvent', 9),\n",
" (u'EntriesCallbackRunnable(labeled)', 8),\n",
" (u'nsAsyncMessageToSameProcessChild', 8),\n",
" (u'PWebAuthnTransaction::Msg_Cancel', 8),\n",
" (u'setInterval() in Timer.jsm', 8),\n",
" (u'PDocAccessible::Msg_AtkTableRowHeader(labeled)', 7),\n",
" (u'net::WaitForThreadShutdown', 7),\n",
" (u'PDocAccessible::Msg_AtkTableColumnHeader(labeled)', 7),\n",
" (u'PDocAccessible::Msg_TableColumnCount(labeled)', 7),\n",
" (u'PDocAccessible::Msg_State', 6),\n",
" (u'ChromiumCDMProxy::Terminated(labeled)', 6),\n",
" (u'PSpeechSynthesisRequest::Msg_OnMark', 6),\n",
" (u'net::nsARequestObserverEvent', 6),\n",
" (u'PBrowser::Msg_HandleTap', 5),\n",
" (u'HTMLMediaElement::QueueLoadFromSourceTask', 5),\n",
" (u'PWyciwygChannel::Msg_OnDataAvailable', 5),\n",
" (u'AbstractThread::Runner for FinishCollectRunnable(labeled)', 5),\n",
" (u'PWyciwygChannel::Msg_OnStartRequest', 5),\n",
" (u'ReleaseMediaOperationResource', 5),\n",
" (u'PWyciwygChannel::Msg_OnStopRequest', 5),\n",
" (u'nsCallExitFullscreen', 4),\n",
" (u'nsHtml5Parser::Terminate(labeled)', 4),\n",
" ...]"
]
},
"execution_count": 38,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[ (name, v) for (name, v) in freq_filt] # full runnable list"
]
}
],
"metadata": {
"anaconda-cloud": {},
"kernelspec": {
"display_name": "Python [default]",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.12"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment