Skip to content

Instantly share code, notes, and snippets.

@bevis-tseng
Last active August 21, 2017 08:47
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/d8a918cb53112a82357c872ce15ee790 to your computer and use it in GitHub Desktop.
Save bevis-tseng/d8a918cb53112a82357c872ce15ee790 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": 1,
"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": 2,
"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": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Dataset.from_source(\"telemetry\").schema"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"fetching 16631.91971MB in 2892 files...\n"
]
}
],
"source": [
"pings = Dataset.from_source(\"telemetry\") \\\n",
" .where(docType='main') \\\n",
" .where(appBuildId=lambda x: x.startswith('20170817') or x.startswith('20170818') or x.startswith('20170819')) \\\n",
" .where(appUpdateChannel=\"nightly\") \\\n",
" .records(sc, sample=1.0)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"subset = get_pings_properties(pings, [\"payload/processes/content/keyedHistograms/MAIN_THREAD_RUNNABLE_MS\"])"
]
},
{
"cell_type": "code",
"execution_count": 5,
"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": 6,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"freq = subset.flatMap(count).reduceByKey(lambda a, b: a+b).collect()"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"freq.sort(key=lambda d: d[1], reverse=True)"
]
},
{
"cell_type": "code",
"execution_count": 8,
"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": 9,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"freq_filt = [ (name, v) for (name, v) in freq if not name.startswith('PJavaScript') ]"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(140, 116, 25)"
]
},
"execution_count": 10,
"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": 11,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.970367290549\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": 12,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[(u'StyleImageRequestCleanupTask', 1856911092),\n",
" (u'StartupRefreshDriverTimer::ScheduleNextTick', 1426025115),\n",
" (u'MainThreadInvoker', 1080112025),\n",
" (u'PBackground::Msg_DispatchLocalStorageChange', 812207818),\n",
" (u'RefreshDriverVsyncObserver::NormalPriorityNotify', 550294079),\n",
" (u'PContent::Msg_DataStoragePut', 482072163),\n",
" (u'EverySecondTelemetryCallback_m', 453673919),\n",
" (u'setTimeout() in Timer.jsm', 162460940),\n",
" (u'PVRManager::Msg_UpdateDisplayInfo', 132302562),\n",
" (u'InactiveRefreshDriverTimer::ScheduleNextTick', 129772692),\n",
" (u'PContent::Msg_PreferenceUpdate', 123937518),\n",
" (u'ScrollFrameHelper::ScheduleSyntheticMouseMove', 115407947),\n",
" (u'IncrementalFinalizeRunnable', 112551236),\n",
" (u'StorageNotifierService::Broadcast', 106786945),\n",
" (u'PBackgroundStorage::Msg_LoadItem', 96225182),\n",
" (u'PContent::Msg_ParentActivated', 71546001),\n",
" (u'nsPipeInputStream::AsyncWait', 70972498),\n",
" (u'UpdateTimerCallback', 66170181),\n",
" (u'nsThreadShutdownAckEvent', 60947121),\n",
" (u'PContentPermissionRequest::Msg___delete__', 60840458),\n",
" (u'PContentPermissionRequest::Msg_NotifyResult', 60826513),\n",
" (u'AvailableRunnable', 56647258),\n",
" (u'CompleteResumeRunnable', 54791102),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable',\n",
" 52109519),\n",
" (u'PContent::Msg_AsyncMessage', 49102291)]"
]
},
"execution_count": 12,
"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": 13,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[(u'nsIThread::AsyncShutdown', 48580850),\n",
" (u'media-runnable_args_base', 43994420),\n",
" (u'PTexture::Msg___delete__', 41843052),\n",
" (u'AsyncTimeEventRunner', 41030102),\n",
" (u'PHal::Msg_NotifyWakeLockChange', 39119895),\n",
" (u'dom::SimpleTextTrackEvent', 37654462),\n",
" (u'PContent::Msg_PIPCBlobInputStreamConstructor', 36040706),\n",
" (u'InactiveRefreshDriverTimer::StartTimer', 34355416),\n",
" (u'non-nsINamed ThrottledEventQueue runnable', 33344794),\n",
" (u'PContent::Msg_BlobURLRegistration', 31270526),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyBytesConsumed',\n",
" 29621185),\n",
" (u'PContent::Msg_SetPermissionsWithKey', 28745240),\n",
" (u'TileExpiry', 28613482),\n",
" (u'AudioPlaybackRunnable', 28545010),\n",
" (u'nsMemoryReporterManager::GetHeapAllocatedAsync', 27766110),\n",
" (u'observe/<[TelemetrySession.jsm]:JS', 26774332),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange', 25359064),\n",
" (u'ProxyReleaseRunnable', 24854077),\n",
" (u'PVRManager::Msg_GamepadUpdate', 22980145),\n",
" (u'ProgressTracker::AsyncNotifyRunnable', 22625433),\n",
" (u'nsHtml5SVGLoadDispatcher', 22593033),\n",
" (u'nsComposerCommandsUpdater', 22155789)]"
]
},
"execution_count": 13,
"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": 14,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[(u'TimeoutExecutor Runnable(labeled)', 52202193414),\n",
" (u'PVsync::Msg_Notify', 41052698448),\n",
" (u'IdleRunnable', 38848130378),\n",
" (u'IdleTaskRunner(labeled)', 36304876787),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable(labeled)',\n",
" 22343906024),\n",
" (u'nsDocument::NotifyIntersectionObservers(labeled)', 15153321055),\n",
" (u'PCompositorBridge::Msg_DidComposite(labeled)', 9919390384),\n",
" (u'LayerActivityTracker(labeled)', 9035205333),\n",
" (u'CompleteResumeRunnable(labeled)', 8248869399),\n",
" (u'IdleRunnableWrapper for AsyncFreeSnowWhite', 7726249665),\n",
" (u'AsyncEventDispatcher(labeled)', 7594399826),\n",
" (u'PBrowser::Msg_RealMouseMoveEvent(labeled)', 7451259916),\n",
" (u'MediaResource::Destroy(labeled)', 4100643093),\n",
" (u'dom::PostMessageEvent(labeled)', 3876375393),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyBytesConsumed(labeled)',\n",
" 3581033001),\n",
" (u'MediaCache::UpdateEvent(labeled)', 3501687961),\n",
" (u'ProxyReleaseEvent for nsStyleDisplay::mSpecifiedTransform(labeled)',\n",
" 3407497369),\n",
" (u'AbstractThread::Runner for MediaStreamGraphStableStateRunnable(labeled)',\n",
" 3123509105),\n",
" (u'HTMLMediaElement::nsAsyncEventRunner(labeled)', 2922968127),\n",
" (u'LogMessageRunnable(labeled)', 2857572729),\n",
" (u'StorageNotifierService::Broadcast(labeled)', 2729165928),\n",
" (u'TelemetryIPCAccumulator::IPCTimerFired(labeled)', 2547232473),\n",
" (u'nsIDocument::SelectorCache(labeled)', 2227713532),\n",
" (u'StyleImageRequestCleanupTask', 1856911092),\n",
" (u'layers::DestroyTextureData(labeled)', 1664714887),\n",
" (u'PTexture::Msg___delete__(labeled)', 1501308977),\n",
" (u'net::HttpChannelChild::OnTransportAndData(labeled)', 1427235569),\n",
" (u'StartupRefreshDriverTimer::ScheduleNextTick', 1426025115),\n",
" (u'PHttpChannel::Msg_DeleteSelf(labeled)', 1326204601),\n",
" (u'PHttpChannel::Msg_OnStartRequest(labeled)', 1290602573),\n",
" (u'PAPZ::Msg_RequestContentRepaint(labeled)', 1289466727),\n",
" (u'IdleRequestExecutor', 1247354127),\n",
" (u'MainThreadInvoker', 1080112025),\n",
" (u'PCookieService::Msg_AddCookie(labeled)', 937455115),\n",
" (u'AbstractThread::Runner for MozPromise::ThenValueBase::ResolveOrRejectRunnable(labeled)',\n",
" 901980594),\n",
" (u'PContent::Msg_NotifyVisited(labeled)', 861138503),\n",
" (u'PredictorLearnRunnable(labeled)', 847998122),\n",
" (u'PBackground::Msg_DispatchLocalStorageChange', 812207818),\n",
" (u'XMLHttpRequest(labeled)', 786002683),\n",
" (u'ProgressTracker::AsyncNotifyRunnable(labeled)', 775199134),\n",
" (u'AbstractThread::Runner for ChannelMediaResource::DoNotifyDataReceived(labeled)',\n",
" 740191388),\n",
" (u'non-nsINamed ThrottledEventQueue runnable(labeled)', 728527683),\n",
" (u'PBrowser::Msg_AsyncMessage(labeled)', 697847969),\n",
" (u'ProxyReleaseEvent for NS_ReleaseOnMainThreadSystemGroup(labeled)',\n",
" 662713980),\n",
" (u'IDecodingTask::NotifyDecodeComplete(labeled)', 652649286),\n",
" (u'PPluginInstance::Msg_ShowDirectDXGISurface(labeled)', 584724979),\n",
" (u'RefreshDriverVsyncObserver::NormalPriorityNotify', 550294079),\n",
" (u'PresShell::UpdateApproximateFrameVisibility(labeled)', 534226453),\n",
" (u'net::WrappedChannelEvent(labeled)', 499718588),\n",
" (u'HTMLMediaElement::ProgressTimerCallback(labeled)', 494121094),\n",
" (u'PContent::Msg_DataStoragePut', 482072163),\n",
" (u'EverySecondTelemetryCallback_m', 453673919),\n",
" (u'PHttpChannel::Msg_SetPriority(labeled)', 444858540),\n",
" (u'PBrowser::Msg_MouseWheelEvent(labeled)', 426283878),\n",
" (u'AbstractThread::Runner for Command(labeled)', 420933596),\n",
" (u'StorageNotifierRunnable(labeled)', 420205283),\n",
" (u'SHMEM_DESTROYED_MESSAGE(labeled)', 414895552),\n",
" (u'FinishPreparingForNewPartRunnable(labeled)', 374573759),\n",
" (u'PPluginInstance::Msg_ShowDirectBitmap(labeled)', 371189850),\n",
" (u'AbstractThread::Runner for dom::AnalyserNodeEngine::TransferBuffer(labeled)',\n",
" 363234518),\n",
" (u'nsHtml5ExecutorFlusher(labeled)', 349898795),\n",
" (u'nsHtml5ExecutorReflusher(labeled)', 341216304),\n",
" (u'PBrowser::Msg_SynthMouseMoveEvent(labeled)', 313919514),\n",
" (u'nsBrowserStatusFilter::TimeoutHandler(labeled)', 307914149),\n",
" (u'AbstractThread::Runner for AsyncEventRunner(labeled)', 287137952),\n",
" (u'PWebSocket::Msg_OnMessageAvailable(labeled)', 269430461),\n",
" (u'AsyncTimeEventRunner(labeled)', 265367238),\n",
" (u'PBrowser::Msg_RealKeyEvent(labeled)', 245793291),\n",
" (u'nsPresContextType::RunWillPaintObservers(labeled)', 231537878),\n",
" (u'nsUnblockOnloadEvent(labeled)', 222287728),\n",
" (u'PCompositorBridge::Msg_ParentAsyncMessages(labeled)', 215861473),\n",
" (u'History::DispatchNotifyVisited(labeled)', 200704686),\n",
" (u'nsHtml5LoadFlusher(labeled)', 199098168),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange(labeled)', 197338888),\n",
" (u'IDecodingTask::NotifyProgress(labeled)', 194987138),\n",
" (u'nsHtml5StreamParserReleaser(labeled)', 194735205),\n",
" (u'nsDelayedCalcBCBorders(labeled)', 184500125),\n",
" (u'nsCaret::CaretBlinkCallback_timer(labeled)', 184012008),\n",
" (u'BlurCache(labeled)', 183635288),\n",
" (u'CheckResponsivenessTask(labeled)', 177504139),\n",
" (u'RasterImage::OnSurfaceDiscarded(labeled)', 176058387),\n",
" (u'WindowDestroyedEvent(labeled)', 171882760),\n",
" (u'PWebSocket::Msg_OnBinaryMessageAvailable(labeled)', 170447583),\n",
" (u'setTimeout() in Timer.jsm', 162460940),\n",
" (u'HTMLMediaElement::nsResolveOrRejectPendingPlayPromisesRunner(labeled)',\n",
" 161633003),\n",
" (u'IdleRunnableWrapper for WindowDestroyedEvent', 146909741),\n",
" (u'nsIDocument::HandleRebuildUserFontSet(labeled)', 136730811),\n",
" (u'IdleRunnableWrapper for nsIDocument::FlushPendingLinkUpdatesFromRunnable',\n",
" 136437707),\n",
" (u'PVRManager::Msg_UpdateDisplayInfo', 132302562),\n",
" (u'setTimeout() in Timer.jsm(labeled)', 129992067),\n",
" (u'InactiveRefreshDriverTimer::ScheduleNextTick', 129772692),\n",
" (u'imgRequestProxy::DoRemoveFromLoadGroup(labeled)', 128677437),\n",
" (u'PContent::Msg_PreferenceUpdate', 123937518),\n",
" (u'Canceled_timer(labeled)', 122603845),\n",
" (u'PBrowser::Msg_RealMouseButtonEvent(labeled)', 121805365),\n",
" (u'ScrollFrameHelper::ScheduleSyntheticMouseMove', 115407947),\n",
" (u'ShortTermURISpecCache(labeled)', 114692782),\n",
" (u'dom::HTMLMediaElement::DoRemoveSelfReference(labeled)', 114253705),\n",
" (u'IncrementalFinalizeRunnable', 112551236),\n",
" (u'StorageNotifierService::Broadcast', 106786945),\n",
" (u'dom::NotifyOffThreadScriptLoadCompletedRunnable(labeled)', 103712799),\n",
" (u'nsPipeInputStream::AsyncWait(labeled)', 97492837),\n",
" (u'nsDocumentShownDispatcher(labeled)', 96891375),\n",
" (u'PBackgroundStorage::Msg_LoadItem', 96225182),\n",
" (u'dom::PostMessageRunnable(labeled)', 95621533),\n",
" (u'nsBindingManager::DoProcessAttachedQueue(labeled)', 95348764),\n",
" (u'ContentUnbinder', 93715756),\n",
" (u'PAPZ::Msg_NotifyAPZStateChange(labeled)', 91312553),\n",
" (u'mscom::MainThreadRelease(labeled)', 89927696),\n",
" (u'nsHtml5SVGLoadDispatcher(labeled)', 86749488),\n",
" (u'gfxFontCache::gfxFontCache(labeled)', 84295691),\n",
" (u'nsDocument::UpdateVisibilityState(labeled)', 82426863),\n",
" (u'nsDocument::NotifyStyleSheetApplicableStateChanged(labeled)', 81712989),\n",
" (u'imgRequestProxy::Notify(labeled)', 75613199),\n",
" (u'NotifyGCEndRunnable(labeled)', 73421263),\n",
" (u'UITimerCallback_timer(labeled)', 72248169),\n",
" (u'PContent::Msg_ParentActivated', 71546001),\n",
" (u'ImageCache(labeled)', 71292939),\n",
" (u'nsPipeInputStream::AsyncWait', 70972498),\n",
" (u'nsDocument::DispatchContentLoadedEvents(labeled)', 70253539),\n",
" (u'PBrowser::Msg_UpdateDimensions(labeled)', 69688302),\n",
" (u'PBackgroundIDBCursor::Msg_Response(labeled)', 67636815),\n",
" (u'UpdateTimerCallback', 66170181),\n",
" (u'ScrollFrameActivityTracker(labeled)', 64845691),\n",
" (u'ProxyReleaseEvent for MainThreadHandoff(labeled)', 64251117),\n",
" (u'PPluginScriptableObject::Msg_NPN_Evaluate(labeled)', 61376780),\n",
" (u'nsThreadShutdownAckEvent', 60947121),\n",
" (u'PContentPermissionRequest::Msg___delete__', 60840458),\n",
" (u'PContentPermissionRequest::Msg_NotifyResult', 60826513),\n",
" (u'NotificationPermissionRequest(labeled)', 60824571),\n",
" (u'NotificationPermissionRequest::DispatchResolvePromise(labeled)', 60814609),\n",
" (u'AvailableRunnable', 56647258),\n",
" (u'EventListenerService::NotifyPendingChanges(labeled)', 56347165),\n",
" (u'PWebSocket::Msg_OnAcknowledge(labeled)', 55285736),\n",
" (u'CompleteResumeRunnable', 54791102),\n",
" (u'dom::ScriptLoader::ProcessPendingRequests(labeled)', 52442336),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable',\n",
" 52109519),\n",
" (u'IdleRunnableWrapper for mozInlineSpellResume', 52054015),\n",
" (u'NotifyBHRHangObservers(labeled)', 50562163),\n",
" (u'imgCacheExpirationTracker(labeled)', 49781405),\n",
" (u'PContent::Msg_AsyncMessage', 49102291),\n",
" (u'nsIThread::AsyncShutdown', 48580850),\n",
" (u'PCookieService::Msg_TrackCookiesLoad(labeled)', 48488545),\n",
" (u'PBrowser::Msg_LoadRemoteScript(labeled)', 47744598),\n",
" (u'GCTimerFired(labeled)', 47292632),\n",
" (u'ChromeTooltipListener::MouseMove(labeled)', 46779691),\n",
" (u'PHttpChannel::Msg_Redirect1Begin(labeled)', 45307347),\n",
" (u'nsAsyncRedirectVerifyHelper(labeled)', 45306954),\n",
" (u'nsAsyncVerifyRedirectCallbackEvent(labeled)', 45305242),\n",
" (u'nsPresContext::HandleMediaFeatureValuesChangedEvent(labeled)', 44206692),\n",
" (u'media-runnable_args_base', 43994420),\n",
" (u'PHttpChannel::Msg_Redirect3Complete(labeled)', 43539678),\n",
" (u'dom::FlushRejections(labeled)', 43004094),\n",
" (u'PCookieService::Msg_RemoveCookie(labeled)', 42363683),\n",
" (u'PTexture::Msg___delete__', 41843052),\n",
" (u'AsyncTimeEventRunner', 41030102),\n",
" (u'AbstractThread::Runner for VideoFrameContainerInvalidateRunnable(labeled)',\n",
" 40490316),\n",
" (u'PHal::Msg_NotifyWakeLockChange', 39119895),\n",
" (u'dom::SimpleTextTrackEvent', 37654462),\n",
" (u'PuppetWidget::PaintTask(labeled)', 36453820),\n",
" (u'PContent::Msg_PIPCBlobInputStreamConstructor', 36040706),\n",
" (u'PBackgroundIDBRequest::Msg___delete__(labeled)', 35229558),\n",
" (u'PresShell::FireResizeEvent(labeled)', 34869420),\n",
" (u'dom::workers::WorkerMainThreadRunnable(labeled)', 34370351),\n",
" (u'IdleRunnableWrapper::SetTimer', 34361037),\n",
" (u'InactiveRefreshDriverTimer::StartTimer', 34355416),\n",
" (u'IdleRunnableWrapper', 33893158),\n",
" (u'PPluginInstance::Msg_Show(labeled)', 33625703),\n",
" (u'non-nsINamed ThrottledEventQueue runnable', 33344794),\n",
" (u'GradientCache(labeled)', 32806117),\n",
" (u'PContent::Msg_BlobURLRegistration', 31270526),\n",
" (u'ChannelMediaDecoder::ResourceCallback::TimerCallback(labeled)', 30032837),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyBytesConsumed',\n",
" 29621185),\n",
" (u'dom::TextTrack::DispatchAsyncTrustedEvent(labeled)', 28884976),\n",
" (u'PContent::Msg_SetPermissionsWithKey', 28745240),\n",
" (u'PCookieService::Msg_RemoveBatchDeletedCookies(labeled)', 28730294),\n",
" (u'TileExpiry', 28613482),\n",
" (u'AudioPlaybackRunnable', 28545010),\n",
" (u'nsMemoryReporterManager::GetHeapAllocatedAsync', 27766110),\n",
" (u'observe/<[TelemetrySession.jsm]:JS', 26774332),\n",
" (u'DataChannelOnMessageAvailable(labeled)', 26010440),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange', 25359064),\n",
" (u'PresShell::sPaintSuppressionCallback(labeled)', 24958771),\n",
" (u'dom::TextTrackManager::TimeMarchesOn(labeled)', 24941378),\n",
" (u'ProxyReleaseRunnable', 24854077),\n",
" (u'ThrottleTimeoutsCallback(labeled)', 24736066),\n",
" (u'PBrowser::Msg_SetDocShellIsActive(labeled)', 24269877),\n",
" (u'PVRManager::Msg_GamepadUpdate', 22980145),\n",
" (u'ProgressTracker::AsyncNotifyRunnable', 22625433),\n",
" (u'nsHtml5SVGLoadDispatcher', 22593033),\n",
" (u'nsComposerCommandsUpdater', 22155789),\n",
" (u'gfxFcPlatformFontList::gfxFcPlatformFontList', 22090179),\n",
" (u'ProxyReleaseEvent for WeakReferenceSupport(labeled)', 22070735),\n",
" (u'SurfaceTracker(labeled)', 21855933),\n",
" (u'WebCryptoTask', 20973729),\n",
" (u'AsyncPrecreateStringBundles', 20945739),\n",
" (u'nsStringBundle::LoadProperties', 20917134),\n",
" (u'gfxFontCache(labeled)', 20904816),\n",
" (u'PHttpChannel::Msg_DeleteSelf', 20206599),\n",
" (u'PCacheOp::Msg___delete__', 20194587),\n",
" (u'AsyncEventDispatcher', 20112162),\n",
" (u'PBackgroundIDBTransaction::Msg_Complete(labeled)', 19831941),\n",
" (u'PBrowser::Msg_SuppressDisplayport(labeled)', 19812451),\n",
" (u'MozPromise::ThenValueBase::ResolveOrRejectRunnable', 19507835),\n",
" (u'PBackgroundIDBTransaction::Msg___delete__(labeled)', 19467235),\n",
" (u'IdleTaskRunner', 18768755),\n",
" (u'NotifyChannelActiveRunnable', 18446979),\n",
" (u'nsDocument::DispatchContentLoadedEvents', 18429381),\n",
" (u'PresShell::sPaintSuppressionCallback', 18427118),\n",
" (u'ProgressTracker::SyncNotifyProgress', 18168949),\n",
" (u'ProxyReleaseEvent for ExtendableEventWorkerRunnable::mKeepAliveToken',\n",
" 17917301),\n",
" (u'PHttpChannel::Msg_OnStartRequest', 17822739),\n",
" (u'DecoderDoctorDocumentWatcher_timer', 16791420),\n",
" (u'PContent::Msg_Activate', 16128346),\n",
" (u'PContent::Msg_DataStorageRemove', 16026217),\n",
" (u'dom::PostMessageEvent', 15922595),\n",
" (u'dom::workers::RegistrationUpdateRunnable', 15588505),\n",
" (u'PContent::Msg_Deactivate', 15538508),\n",
" (u'delete[self-hosted]:JS', 15319217),\n",
" (u'nsIDocument::HandleRebuildUserFontSet', 15304533),\n",
" (u'anonymous(labeled)', 15097899),\n",
" (u'IDecodingTask::NotifyDecodeComplete', 14979352),\n",
" (u'ScrollFrameHelper::ResetDisplayPortExpiryTimer', 14856250),\n",
" (u'ProxyReleaseEvent for ServiceWorkerRegistrationInfo', 14738302),\n",
" (u'ProxyReleaseEvent for nsIInterceptedChannel', 14728232),\n",
" (u'PBrowser::Msg_RealTouchMoveEvent(labeled)', 14682511),\n",
" (u'FullGCTimerFired(labeled)', 14678417),\n",
" (u'PContent::Msg_LoadProcessScript', 14549203),\n",
" (u'dom::workers::FetchEventRunnable::ResumeRequest', 14263775),\n",
" (u'ProxyReleaseEvent for nsStyleContentData::mContent.mImage(labeled)',\n",
" 14158086),\n",
" (u'PContent::Msg_BlobURLUnregistration', 13824482),\n",
" (u'HttpChannelChild::SetMatchedInfo(labeled)', 13683030),\n",
" (u'nsPresContext::HandleMediaFeatureValuesChangedEvent', 13395763),\n",
" (u'PresShell::FireResizeEvent', 13395763),\n",
" (u'imgCancelRunnable(labeled)', 12945595),\n",
" (u'PBrowser::Msg_RealDragEvent(labeled)', 12858726),\n",
" (u'SendTelemetry(labeled)', 12619109),\n",
" (u'PServiceWorkerUpdater::Msg_Proceed', 12608635),\n",
" (u'dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop',\n",
" 12562241),\n",
" (u'ProxyHashtableDestructor', 12427026),\n",
" (u'image::ImageResource::SendOnUnlockedDraw(labeled)', 12114145),\n",
" (u'PBackgroundStorage::Msg_LoadDone', 11742719),\n",
" (u'ScrollbarActivity::FadeBeginTimerFired', 11626436),\n",
" (u'nsHTMLDNSPrefetch::nsDeferrals::Tick', 11495335),\n",
" (u'PBrowser::Msg_StopIMEStateManagement(labeled)', 11481272),\n",
" (u'AbstractThread::Runner for MediaSourceDecoder::SetInitialDuration(labeled)',\n",
" 11390887),\n",
" (u'dom::FontFaceSet::CheckLoadingFinishedAfterDelay(labeled)', 11330763),\n",
" (u'ServiceWorkerRegistrationInfo::TryToActivate', 10072265),\n",
" (u'dom::LoadStartDetectionRunnable(labeled)', 9623064),\n",
" (u'WMFVideoMFTManager::~WMFVideoMFTManager(labeled)', 9385193),\n",
" (u'dom::AsyncTeardownRunnable(labeled)', 9333812),\n",
" (u'PNecko::Reply_GetExtensionFD', 9071822),\n",
" (u'nsWindowMemoryReporter::AsyncCheckForGhostWindows_timer', 8955108),\n",
" (u'PContent::Msg_SetPluginList', 8914396),\n",
" (u'PDocAccessible::Msg_State(labeled)', 8647536),\n",
" (u'RuleProcessorCache::ExpirationTracker(labeled)', 8547805),\n",
" (u'AsyncScriptCompiler(labeled)', 8103119),\n",
" (u'PContent::Msg_RefreshScreens', 7976780),\n",
" (u'layers::TextureClientPool::ResetTimers', 7809954),\n",
" (u'imgRequestMainThreadCancel(labeled)', 7636914),\n",
" (u'WatchdogTimerEvent', 7605122),\n",
" (u'PBackground::Msg_PCacheStreamControlConstructor', 7594321),\n",
" (u'PBackground::Msg_PFileDescriptorSetConstructor', 7594317),\n",
" (u'PCacheStreamControl::Msg___delete__', 7593860),\n",
" (u'dom::cache::ReadStream::Inner::NoteClosedRunnable', 7519417),\n",
" (u'RasterImage::OnSurfaceDiscarded', 7511705),\n",
" (u'AutoTaskQueue::~AutoTaskQueue(labeled)', 7394157),\n",
" (u'dom::workers::ServiceWorkerRegistrationInfo::AsyncUpdateRegistrationStateProperties',\n",
" 7393376),\n",
" (u'ShrinkingGCTimerFired(labeled)', 7392460),\n",
" (u'PBrowserStream::Msg_StreamDestroyed(labeled)', 7346146),\n",
" (u'PTCPSocket::Msg_Callback(labeled)', 7334533),\n",
" (u'PCacheStorage::Msg___delete__', 7209481),\n",
" (u'TabChild::DelayedDeleteRunnable', 7181277),\n",
" (u'PGamepadEventChannel::Msg_GamepadUpdate', 6894167),\n",
" (u'dom::GamepadUpdateRunnable', 6887123),\n",
" (u'PBrowser::Msg_SizeModeChanged(labeled)', 6851633),\n",
" (u'PBackground::Msg_PCacheConstructor', 6474922),\n",
" (u'ServiceWorkerJob::AsyncExecute', 6387437),\n",
" (u'ProxyReleaseEvent for ServiceWorkerJob(labeled)', 6358097),\n",
" (u'PPluginInstance::Msg_PStreamNotifyConstructor(labeled)', 6297543),\n",
" (u'PCache::Msg___delete__', 6240975),\n",
" (u'ReleasingTimerHolder(labeled)', 6134017),\n",
" (u'ipc::MessageChannel::DispatchOnChannelConnected', 6046981),\n",
" (u'PPluginInstance::Msg_NPN_SetValue_NPPVpluginIsPlayingAudio(labeled)',\n",
" 6022290),\n",
" (u'ProxyReleaseEvent for AnimationSurfaceProvider::mImage(labeled)', 5830267),\n",
" (u'ProgressTracker::OnDiscard', 5623861),\n",
" (u'ChannelLoader::LoadInternal(labeled)', 5568126),\n",
" (u'ThrottledEventQueue::Inner::ShutdownComplete', 5376344),\n",
" (u'a11y::DocAccessible::ScrollPositionDidChange', 5371511),\n",
" (u'Runnable', 5271890),\n",
" (u'nsJSChannel::EvaluateScript', 5241456),\n",
" (u'HTMLMediaElement::VideoDecodeSuspendTimerCallback(labeled)', 5086919),\n",
" (u'HTMLMediaElement::nsAsyncEventRunner', 5045897),\n",
" (u'VideoUtils::DeleteObjectTask(labeled)', 4985181),\n",
" (u'PMessagePort::Msg_ReceiveData', 4872085),\n",
" (u'nsAutoCompleteController', 4742516),\n",
" (u'dom::HTMLMediaElement::WakeLockBoolWrapper::UpdateWakeLock(labeled)',\n",
" 4722531),\n",
" (u'PBrowser::Msg_SetUseGlobalHistory(labeled)', 4704587),\n",
" (u'PBrowser::Msg_Show(labeled)', 4680989),\n",
" (u'PBrowser::Msg_Destroy(labeled)', 4480246),\n",
" (u'PContent::Msg_GMPsChanged', 4476346),\n",
" (u'CharSetChangingRunnable(labeled)', 4460532),\n",
" (u'PBrowser::Msg_MenuKeyboardListenerInstalled(labeled)', 4388494),\n",
" (u'CategoryNotificationRunnable', 4336520),\n",
" (u'PAPZ::Msg_Destroy(labeled)', 4287853),\n",
" (u'dom::ContentChild::SendInitBackground', 4243679),\n",
" (u'PBrowser::Msg_SetWidgetNativeData(labeled)', 4072720),\n",
" (u'PBrowser::Msg_PRenderFrameConstructor(labeled)', 4043289),\n",
" (u'PBrowser::Msg_InitRendering(labeled)', 4043289),\n",
" (u'PContent::Msg_PBrowserConstructor(labeled)', 4043289),\n",
" (u'TransactionIdAllocator::NotifyTransactionCompleted', 4022685),\n",
" (u'OnLinkClickEvent(labeled)', 3814298),\n",
" (u'PLayerTransaction::Msg___delete__(labeled)', 3796615),\n",
" (u'PBackgroundStorage::Msg_LoadUsage', 3687086),\n",
" (u'nsDocument::NotifyStyleSheetApplicableStateChanged', 3678856),\n",
" (u'gfx::gfxWindowsPlatform::SchedulePaintIfDeviceReset', 3674693),\n",
" (u'PBrowser::Msg_UpdateNativeWindowHandle(labeled)', 3572447),\n",
" (u'nsIThreadPool::Shutdown', 3499509),\n",
" (u'dom::CallbackRunnable(labeled)', 3327130),\n",
" (u'XMLHttpRequest', 3312718),\n",
" (u'ProxyReleaseEvent for TrackBuffersManager::mParentDecoder', 3188542),\n",
" (u'BeginConsumeBodyRunnable(labeled)', 3145364),\n",
" (u'IDecodingTask::NotifyProgress', 3117152),\n",
" (u'PBrowser::Msg_UIResolutionChanged(labeled)', 3112136),\n",
" (u'image::ImageResource::SendOnUnlockedDraw', 3085112),\n",
" (u'Background::ChildImpl::ActorCreatedRunnable', 2995150),\n",
" (u'NotifyDidPaintForSubtree(labeled)', 2792127),\n",
" (u'PVsync::Msg_VsyncRate', 2771745),\n",
" (u'PBrowser::Msg_RealMouseMoveEvent', 2698259),\n",
" (u'HTMLMediaElement::NoSupportedMediaSourceError(labeled)', 2678709),\n",
" (u'anonymous[browser-child.js]:JS', 2674115),\n",
" (u'AccessibleCaretEventHub::LaunchScrollEndInjector', 2644363),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyDataEnded(labeled)',\n",
" 2591678),\n",
" (u'EventListenerService::NotifyPendingChanges', 2485609),\n",
" (u'nsDelayedEventDispatcher(labeled)', 2399497),\n",
" (u'nsAsyncVerifyRedirectCallbackEvent', 2391879),\n",
" (u'nsAsyncRedirectVerifyHelper', 2391879),\n",
" (u'PHttpChannel::Msg_Redirect1Begin', 2387178),\n",
" (u'PHttpChannel::Msg_Redirect3Complete', 2387063),\n",
" (u'PHal::Msg_NotifySensorChange', 2312489),\n",
" (u'PPluginInstance::Msg_NPN_ConvertPoint(labeled)', 2235578),\n",
" (u'WindowDestroyedEvent', 2228995),\n",
" (u'dom::nsResumeTimeoutsEvent(labeled)', 2209987),\n",
" (u'dom::workers::WorkerProxyToMainThreadRunnable', 2120457),\n",
" (u'ScriptLoaderRunnable', 2114512),\n",
" (u'CSPReportSenderRunnable', 2105261),\n",
" (u'nsScrollbarButtonFrame(labeled)', 2030803),\n",
" (u'PContent::Msg_RegisterChromeItem', 2028196),\n",
" (u'PBrowser::Msg_CompositionEvent(labeled)', 2023936),\n",
" (u'PContent::Msg_AddPermission', 2018024),\n",
" (u'PTCPSocket::Msg_UpdateBufferedAmount(labeled)', 2018023),\n",
" (u'AbstractThread::Runner for MediaStreamGraphShutdownThreadRunnable(labeled)',\n",
" 1994139),\n",
" (u'dom::MainThreadFetchRunnable', 1937235),\n",
" (u'PWebSocket::Msg_OnStop(labeled)', 1918751),\n",
" (u'Canceled_timer', 1897821),\n",
" (u'dom::CallDispatchConnectionCloseEvents', 1888509),\n",
" (u'PWebSocket::Msg___delete__(labeled)', 1854384),\n",
" (u'PHttpChannel::Msg_ReportSecurityMessage(labeled)', 1849727),\n",
" (u'PDocAccessible::Msg___delete__(labeled)', 1836751),\n",
" (u'WebrtcVideoConduit::WebrtcVideoConduit', 1828385),\n",
" (u'nsRefreshTimer(labeled)', 1811583),\n",
" (u'nsAutoRefTraits<nsMainThreadSourceSurfaceRef>::SurfaceReleaser', 1803544),\n",
" (u'PRemoteSpellcheckEngine::Msg_NotifyOfCurrentDictionary', 1755322),\n",
" (u'dom::EventSourceImpl::DispatchAllMessageEvents', 1739863),\n",
" (u'AbstractThread::Runner for EndedEventDispatcher(labeled)', 1729838),\n",
" (u'nsPresContext::HandleRebuildCounterStyles(labeled)', 1725367),\n",
" (u'PContent::Msg_LoadAndRegisterSheet', 1620105),\n",
" (u'PBackgroundIDBFactoryRequest::Msg___delete__(labeled)', 1619390),\n",
" (u'dom::workers::WorkerMainThreadRunnable', 1605698),\n",
" (u'nsNativeTheme(labeled)', 1589966),\n",
" (u'PMessagePort::Msg_Entangled', 1565882),\n",
" (u'PWebSocket::Msg_OnStart(labeled)', 1544181),\n",
" (u'PContent::Msg_RegisterChrome', 1508485),\n",
" (u'nsAutoFocusEvent', 1502674),\n",
" (u'RunnableFunction', 1499013),\n",
" (u'PContent::Msg_PScriptCacheConstructor', 1497794),\n",
" (u'PContent::Msg_SetXPCOMProcessAttributes', 1497794),\n",
" (u'PContent::Msg_InitRendering', 1497794),\n",
" (u'PContent::Msg_InitServiceWorkers', 1497794),\n",
" (u'PContent::Msg_RemoteType', 1497794),\n",
" (u'PContent::Msg_AppInfo', 1497794),\n",
" (u'PContent::Msg_InitProfiler', 1497793),\n",
" (u'PContent::Msg_InitBlobURLs', 1497793),\n",
" (u'PContent::Msg_InitProcessHangMonitor', 1497737),\n",
" (u'nsObserverService::RegisterReporter', 1497694),\n",
" (u'AddPreferencesMemoryReporterRunnable', 1497686),\n",
" (u'AbstractThread::Runner for CubebUtils::InitLibrary', 1497666),\n",
" (u'nsContentUtils::UserInteractionObserver::Init', 1497666),\n",
" (u'AddConsolePrefWatchers', 1497666),\n",
" (u'PContent::Msg_SetProcessSandbox', 1497289),\n",
" (u'RegisterObserverRunnable(labeled)', 1478701),\n",
" (u'layers::TextureClientReleaseTask', 1457336),\n",
" (u'CheckPluginStopEvent', 1451952),\n",
" (u'PBackgroundIDBFactory::Msg_PBackgroundIDBDatabaseConstructor(labeled)',\n",
" 1449424),\n",
" (u'PContent::Msg_GeolocationUpdate', 1446489),\n",
" (u'RequestSendLocationEvent', 1439695),\n",
" (u'WorkerThreadPrimaryRunnable::FinishedRunnable', 1439254),\n",
" (u'nsChannelClassifier::NotifyTrackingProtectionDisabled(labeled)', 1422479),\n",
" (u'POfflineCacheUpdate::Msg_NotifyStateEvent', 1389578),\n",
" (u'PBackgroundStorage::Msg_Observe', 1388843),\n",
" (u'dom::workers::FinishResponse', 1289853),\n",
" (u'dom::StreamReadyRunnable(labeled)', 1270540),\n",
" (u'crashreporter::LSPAnnotationGatherer::Annotate', 1214187),\n",
" (u'PBackgroundStorage::Msg_OriginsHavingData', 1213609),\n",
" (u'PWebSocket::Msg_OnServerClose(labeled)', 1209314),\n",
" (u'PaintTimerCallBack(labeled)', 1208218),\n",
" (u'PContent::Msg_SetAudioSessionData', 1200537),\n",
" (u'_timerCallback[self-hosted]:JS', 1184423),\n",
" (u'PContent::Msg_DataStorageClear', 1159553),\n",
" (u'net::DNSRequestChild::StartRequest(labeled)', 1159481),\n",
" (u'PDNSRequest::Msg_LookupCompleted(labeled)', 1159331),\n",
" (u'PBackgroundIDBDatabase::Msg___delete__(labeled)', 1154587),\n",
" (u'nsJARChannel::FireOnProgress', 1128433),\n",
" (u'dom::workers::WorkerProxyToMainThreadRunnable(labeled)', 1120760),\n",
" (u'CompositableForwarder(labeled)', 1109307),\n",
" (u'HashchangeCallback(labeled)', 1084830),\n",
" (u'dom::AsyncErrorReporter', 1076748),\n",
" (u'PContent::Msg_AudioDefaultDeviceChange', 1055649),\n",
" (u'PBackgroundIDBCursor::Msg___delete__(labeled)', 1039099),\n",
" (u'PBackgroundIDBFactory::Msg___delete__(labeled)', 1035212),\n",
" (u'StyleImageRequestCleanupTask(labeled)', 1025181),\n",
" (u'EncodingCompleteEvent', 998124),\n",
" (u'indexedDB::BackgroundCursorChild::DelayedActionRunnable(labeled)', 961612),\n",
" (u'AsyncResizeEventCallback(labeled)', 957303),\n",
" (u'RuntimeService::ShutdownIdleThreads', 888539),\n",
" (u'PBrowser::Msg_LoadURL(labeled)', 864726),\n",
" (u'TopLevelWorkerFinishedRunnable(labeled)', 848814),\n",
" (u'MainThreadReleaseRunnable(labeled)', 848498),\n",
" (u'nsSimplePluginEvent', 842453),\n",
" (u'GlobalAllocPolicy::GlobalAllocPolicy(labeled)', 821861),\n",
" (u'IDBDatabase::NoteInactiveTransactionDelayed(labeled)', 783106),\n",
" (u'CallbackCaller(labeled)', 776368),\n",
" (u'DelayedRunnable', 750596),\n",
" (u'PMessagePort::Msg___delete__', 740201),\n",
" (u'gfxFontInfoLoader::StartLoader', 737740),\n",
" (u'FontInfoLoadCompleteEvent', 735740),\n",
" (u'ShutdownThreadEvent', 735565),\n",
" (u'nsContentSink::DoProcessLinkHeader', 688118),\n",
" (u'nsXMLContentSink::ContinueInterruptedParsingIfEnabled', 679330),\n",
" (u'imgRequestProxy::OnLoadComplete(labeled)', 664392),\n",
" (u'PStunAddrsRequest::Msg_OnStunAddrsAvailable(labeled)', 639910),\n",
" (u'PBrowser::Msg_RealTouchEvent(labeled)', 638405),\n",
" (u'PContent::Reply_CreateWindow', 638188),\n",
" (u'dom::nsSourceErrorEventRunner(labeled)', 633925),\n",
" (u'PBackground::Msg_PIPCBlobInputStreamConstructor', 632434),\n",
" (u'nonfunction:JS', 626892),\n",
" (u'PDocAccessible::Msg_ParentCOMProxy(labeled)', 607904),\n",
" (u'TopLevelWorkerFinishedRunnable', 589545),\n",
" (u'MainThreadReleaseRunnable', 589533),\n",
" (u'nsTextControlFrame::ScrollOnFocusEvent(labeled)', 578962),\n",
" (u'dom::TrackEventRunner', 574439),\n",
" (u'media::LambdaRunnable', 572358),\n",
" (u'SyncRunnable(labeled)', 568306),\n",
" (u'HTMLMediaElement::QueueLoadFromSourceTask(labeled)', 567424),\n",
" (u'ScriptPreloader::DoFinishOffThreadDecode', 555074),\n",
" (u'PDocAccessible::Msg_Name(labeled)', 549795),\n",
" (u'dom::workers::ChangeStateUpdater', 540994),\n",
" (u'ServiceWorkerPrivateTimerCallback', 504342),\n",
" (u'AbstractThread::Runner for dom::StateChangeTask(labeled)', 504043),\n",
" (u'PDocAccessible::Msg_Description(labeled)', 477695),\n",
" (u'net::ExecuteCallback(labeled)', 473538),\n",
" (u'PBrowser::Msg_SetKeyboardIndicators(labeled)', 439676),\n",
" (u'AbstractThread::Runner for GraphStartedRunnable(labeled)', 414409),\n",
" (u'ProxyReleaseEvent for HeapAllocatedCallback', 406618),\n",
" (u'nsAsyncInstantiateEvent', 401381),\n",
" (u'non-nsINamed runnable', 397679),\n",
" (u'nsDocShell::FireDummyOnLocationChange(labeled)', 397379),\n",
" (u'imgRequestProxy::Notify', 394979),\n",
" (u'AbstractThread::Runner for DispatchKeyNeededEvent(labeled)', 390807),\n",
" (u'PPluginScriptableObject::Msg_Invoke(labeled)', 386793),\n",
" (u'HTMLMediaElement::ProgressTimerCallback', 385985),\n",
" (u'PContent::Msg_SetConnectivity', 375014),\n",
" (u'onStateChange/<[backgroundPageThumbsContent.js]:JS', 370745),\n",
" (u'PrefChangedUpdateTimerCallback', 344349),\n",
" (u'HistoryTracker(labeled)', 334973),\n",
" (u'dom::BlobCreationDoneRunnable(labeled)', 319188),\n",
" (u'dom::workers::LifeCycleEventCallback', 319125),\n",
" (u'nsIScriptElement::FireErrorEvent', 319090),\n",
" (u'ChannelMediaDecoder::ResourceCallback::TimerCallback', 310562),\n",
" (u'LoadTimerCallback(labeled)', 304543),\n",
" (u'PServiceWorkerManager::Msg_NotifyRegister', 303001),\n",
" (u'dom::WorkerListener::StartListeningForEvents', 299908),\n",
" (u'notifyStorage/<[cookieControllerFrame.js]:JS', 298938),\n",
" (u'nsContentSink_timer', 295798),\n",
" (u'dom::WorkerListener::StopListeningForEvents', 293593),\n",
" (u'PPluginInstance::Msg_PluginFocusChange(labeled)', 292147),\n",
" (u'FileCallbackRunnable(labeled)', 288409),\n",
" (u'PWebSocket::Msg_OnMessageAvailable', 285399),\n",
" (u'TelemetryIPCAccumulator::ArmIPCTimer(labeled)', 271771),\n",
" (u'PContent::Msg_ProvideAnonymousTemporaryFile', 254684),\n",
" (u'PMedia::Msg_GetPrincipalKeyResponse', 254388),\n",
" (u'BeginConsumeBodyRunnable', 251013),\n",
" (u'dom::XMLHttpRequestMainThread::CloseRequestWithError(labeled)', 249986),\n",
" (u'PBrowser::Msg_LoadRemoteScript', 249863),\n",
" (u'dom::workers::GetRegistrationRunnable', 249085),\n",
" (u'dom::TextTrackManager::UpdateCueDisplay(labeled)', 248428),\n",
" (u'SimpleTimerBasedRefreshDriverTimer::StartTimer', 247230),\n",
" (u'MediaDecodeTask::OnMetadataRead(labeled)', 245384),\n",
" (u'dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed(labeled)',\n",
" 241761),\n",
" (u'PStreamNotify::Msg_RedirectNotifyResponse(labeled)', 234578),\n",
" (u'dom::HTMLTrackElement::DispatchTrustedEvent(labeled)', 232501),\n",
" (u'init/<[Timers.jsm]:JS', 230030),\n",
" (u'PHttpChannel::Msg_SetPriority', 228996),\n",
" (u'PrefChangedUpdateTimerCallback(labeled)', 227479),\n",
" (u'PBrowser::Msg_MouseWheelEvent', 221399),\n",
" (u'nsCallRequestFullScreen(labeled)', 220874),\n",
" (u'Empty_microtask_runnable', 219628),\n",
" (u'PContent::Msg_NotifyAlertsObserver', 205767),\n",
" (u'dom::asmjscache::FileDescriptorHolder', 201837),\n",
" (u'dom::EventSourceImpl::AnnounceConnection', 193233),\n",
" (u'PWebSocket::Msg_OnAcknowledge', 192741),\n",
" (u'ProxyReleaseEvent for nsDOMDataChannel::mSelfRef(labeled)', 189472),\n",
" (u'nsAutoScrollTimer(labeled)', 188221),\n",
" (u'net::MsgEvent', 180477),\n",
" (u'PContent::Msg_EndDragSession', 177564),\n",
" (u'PBrowser::Msg_AsyncMessage', 173363),\n",
" (u'ChromiumCDMProxy::ResolvePromise(labeled)', 172344),\n",
" (u'nsDocShell::RestorePresentationEvent(labeled)', 171041),\n",
" (u'nsRefreshDriver::DoRefresh(labeled)', 170759),\n",
" (u'OnTransportStatusAsyncEvent(labeled)', 163273),\n",
" (u'dom::EventSourceImpl::ReestablishConnection', 155419),\n",
" (u'PHttpChannel::Msg_AssociateApplicationCache(labeled)', 153478),\n",
" (u'ShutdownThreadEvent(labeled)', 152596),\n",
" (u'PHttpChannel::Msg_FinishInterceptedRedirect(labeled)', 150910),\n",
" (u'net::HttpChannelChild::FinishInterceptedRedirect', 150909),\n",
" (u'funcwheel/<[frame.js]:JS', 150117),\n",
" (u'PHttpChannel::Msg_LogBlockedCORSRequest(labeled)', 146384),\n",
" (u'AutoUnblockScriptClosing::~AutoUnblockScriptClosing(labeled)', 146203),\n",
" (u'PContent::Msg_LastPrivateDocShellDestroyed', 136461),\n",
" (u'psm::SyncRunnableBase', 136414),\n",
" (u'dom::workers::GetReadyPromiseRunnable', 134731),\n",
" (u'nsFormFillController::MaybeStartControllingInput', 134431),\n",
" (u'OggDemuxer::~OggDemuxer(labeled)', 132868),\n",
" (u'PContent::Msg_NotifyVisited', 132220),\n",
" (u'PSpeechSynthesis::Msg_VoiceAdded', 131440),\n",
" (u'PAPZ::Msg_NotifyAutoscrollHandledByAPZ(labeled)', 129445),\n",
" (u'PWebSocket::Msg_OnBinaryMessageAvailable', 127692),\n",
" (u'dom::workers::CheckScriptEvaluationWithCallback::ReportFetchFlag', 126966),\n",
" (u'dom::workers::ServiceWorkerManager::FireUpdateFoundOnServiceWorkerRegistrations',\n",
" 126762),\n",
" (u'Notification::CreateAndShow(labeled)', 121999),\n",
" (u'PChildToParentStream::Msg___delete__', 119305),\n",
" (u'HTMLMediaElement::nsResolveOrRejectPendingPlayPromisesRunner', 118864),\n",
" (u'imgRequestProxy::BlockOnload(labeled)', 116713),\n",
" (u'net::HttpChannelChild::TrySendDeletingChannel(labeled)', 116460),\n",
" (u'PExternalHelperApp::Msg___delete__', 113899),\n",
" (u'nsPresContext::ThemeChangedInternal(labeled)', 112363),\n",
" (u'dom::MainThreadFetchRunnable(labeled)', 108345),\n",
" (u'PChannelDiverter::Msg___delete__', 107639),\n",
" (u'nsSliderFrame(labeled)', 107599),\n",
" (u'HttpChannelChild::Resume(labeled)', 107468),\n",
" (u'dom::CreateImageBitmapFromBlobTask', 105340),\n",
" (u'PBrowser::Msg_SynthMouseMoveEvent', 105036),\n",
" (u'PTCPSocket::Msg___delete__(labeled)', 102419),\n",
" (u'ProxyReleaseEvent for MediaStreamGraphImpl::CurrentDriver(labeled)',\n",
" 101534),\n",
" (u'PDocAccessible::Msg_RestoreFocus(labeled)', 101414),\n",
" (u'CharSetChangingRunnable', 100117),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_SupportsAsyncDXGISurface(labeled)',\n",
" 99303),\n",
" (u'Notification::Close(labeled)', 98350),\n",
" (u'PPluginInstance::Msg_NPN_PushPopupsEnabledState(labeled)', 97706),\n",
" (u'dom::HTMLMediaElement::DoRemoveSelfReference', 97351),\n",
" (u'PPluginInstance::Msg_NPN_PopPopupsEnabledState(labeled)', 97057),\n",
" (u'dom::EventSourceImpl::CloseInternal', 95894),\n",
" (u'dom::EventSourceImpl::SetReconnectionTimeout', 95301),\n",
" (u'PBrowser::Msg_ThemeChanged(labeled)', 95042),\n",
" (u'PBackgroundIDBDatabase::Msg_PBackgroundIDBVersionChangeTransactionConstructor(labeled)',\n",
" 94827),\n",
" (u'PBackgroundIDBVersionChangeTransaction::Msg_Complete(labeled)', 94800),\n",
" (u'PBackgroundIDBVersionChangeTransaction::Msg___delete__(labeled)', 93390),\n",
" (u'SHMEM_CREATED_MESSAGE(labeled)', 92285),\n",
" (u'PNecko::Reply_GetExtensionStream', 91417),\n",
" (u'PContent::Msg_PFileDescriptorSetConstructor', 90795),\n",
" (u'Anonymous_observer_timer', 89454),\n",
" (u'PBrowser::Msg_HandleTap(labeled)', 88485),\n",
" (u'MatchAllRunnable', 86676),\n",
" (u'PPluginScriptableObject::Msg___delete__', 84879),\n",
" (u'sReflowContinueCallback(labeled)', 83994),\n",
" (u'nsPresContext::UIResolutionChangedInternal(labeled)', 82843),\n",
" (u'PBrowser::Msg_UpdateDimensions', 81917),\n",
" (u'gfxFontInfoLoader::FinalizeLoader', 79342),\n",
" (u'PFTPChannel::Msg_OnDataAvailable(labeled)', 77701),\n",
" (u'nsMemoryReporterManager::DispatchReporter', 77638),\n",
" (u'PHttpChannel::Msg_FailedAsyncOpen(labeled)', 77546),\n",
" (u'imgRequestProxy::UnblockOnload(labeled)', 77398),\n",
" (u'PServiceWorkerManager::Msg_NotifyUnregister', 77009),\n",
" (u'dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart',\n",
" 74430),\n",
" (u'PAsmJSCacheEntry::Msg_OnOpenCacheFile', 72962),\n",
" (u'nsParserContinueEvent', 71501),\n",
" (u'dom::workers::GetRegistrationsRunnable', 71299),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_SupportsAsyncBitmapSurface(labeled)',\n",
" 70404),\n",
" (u'FetchStream::ReleaseObjects(labeled)', 70034),\n",
" (u'FinishPreparingForNewPartRunnable', 67612),\n",
" (u'gmp::ChromiumCDMParent::RecvOnSessionMessage(labeled)', 67024),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_NPNVnetscapeWindow(labeled)', 66991),\n",
" (u'<unknown IPC msg name>', 66272),\n",
" (u'dom::workers::ServiceWorkerManager::FireControllerChange', 66128),\n",
" (u'PContent::Msg_ActivateA11y', 65399),\n",
" (u'PAsmJSCacheEntry::Msg_OnOpenMetadataForRead', 63274),\n",
" (u'ChromiumCDMProxy::OnSetSessionId(labeled)', 62826),\n",
" (u'PPluginInstance::Msg_SetNetscapeWindowAsParent(labeled)', 62076),\n",
" (u'PBrowser::Msg_RealMouseButtonEvent', 60999),\n",
" (u'PContent::Msg_NotifyPushSubscriptionModifiedObservers', 59661),\n",
" (u'WheelTransaction::SetTimeout', 59443),\n",
" (u'WaitUntilHandler::ReportOnMainThread', 58439),\n",
" (u'WorkerScopeSkipWaitingRunnable', 57926),\n",
" (u'ClaimRunnable', 57438),\n",
" (u'PContent::Msg_BidiKeyboardNotify', 56580),\n",
" (u'nsBindingManager::DoProcessAttachedQueue', 56576),\n",
" (u'ChromiumCDMProxy::OnCDMCreated(labeled)', 56399),\n",
" (u'PCompositorBridge::Msg_DidComposite', 56397),\n",
" (u'nsPagePrintTimer(labeled)', 54611),\n",
" (u'POfflineCacheUpdate::Msg_Finish', 51017),\n",
" (u'exports.makeInfallible/<[ThreadSafeDevToolsUtils.js]:JS', 47306),\n",
" (u'ChromiumCDMProxy::Shutdown(labeled)', 46656),\n",
" (u'PBrowser::Msg_SetDocShellIsActive', 46621),\n",
" (u'PContent::Msg_NotifyEmptyHTTPCache', 46412),\n",
" (u'GMPCrashHelper::Destroy(labeled)', 45932),\n",
" (u'nsThreadSyncDispatch', 45418),\n",
" (u'ServiceWorkerClientPostMessageRunnable', 44819),\n",
" (u'AsyncGetPACURIRequestCallback', 44743),\n",
" (u'PContent::Msg_InvokeDragSession', 43516),\n",
" (u'nsHtml5DataAvailable', 43487),\n",
" (u'PStreamNotify::Msg_RedirectNotifyResponse', 42436),\n",
" (u'PBrowser::Msg_RealKeyEvent', 42301),\n",
" (u'POfflineCacheUpdate::Msg_AssociateDocuments', 41630),\n",
" (u'WorkerGetRunnable', 41431),\n",
" (u'done[anonymous]:JS', 41430),\n",
" (u'ProxyReleaseEvent for AsyncGetPACURIRequest::mServiceHolder(labeled)',\n",
" 41055),\n",
" (u'PContent::Msg_SetOffline', 40683),\n",
" (u'PAsmJSCacheEntry::Msg___delete__', 39457),\n",
" (u'PContent::Msg_ClearImageCache', 37879),\n",
" (u'PBroadcastChannel::Msg___delete__', 37265),\n",
" (u'PBrowser::Msg_SetUseGlobalHistory', 37095),\n",
" (u'ProxyReleaseEvent for WebSocketImpl::mService(labeled)', 36902),\n",
" (u'ProxyReleaseEvent for WebSocketImpl::mChannel(labeled)', 36667),\n",
" (u'ScriptLoaderRunnable::CancelMainThreadWithBindingAborted', 36280),\n",
" (u'PFilePicker::Msg___delete__(labeled)', 35488),\n",
" (u'UpdateContextLossStatusTask', 34629),\n",
" (u'PWebSocket::Msg_OnStop', 34387),\n",
" (u'ChromiumCDMProxy::OnExpirationChange(labeled)', 34301),\n",
" (u'PBrowser::Msg_SetWidgetNativeData', 34235),\n",
" (u'PChildToParentStream::Msg_StartReading', 34190),\n",
" (u'PDocAccessible::Msg_CurValue(labeled)', 34151),\n",
" (u'nsPluginHost', 34142),\n",
" (u'dom::LoadStartDetectionRunnable', 33741),\n",
" (u'PWebSocket::Msg___delete__', 32803),\n",
" (u'PContent::Msg_UnregisterSheet', 31424),\n",
" (u'dom::AsyncTeardownRunnable', 30982),\n",
" (u'ChromiumCDMProxy::OnSessionClosed(labeled)', 30958),\n",
" (u'ProxyReleaseEvent for URLValueData::mURI', 30585),\n",
" (u'PBrowser::Msg_UpdateNativeWindowHandle', 30520),\n",
" (u'PBroadcastChannel::Msg_Notify', 30170),\n",
" (u'PContent::Msg_PushWithData', 29548),\n",
" (u'PWebSocket::Msg_OnStart', 28805),\n",
" (u'dom::TrackEventRunner(labeled)', 27159),\n",
" (u'ChromiumCDMProxy::OnKeyStatusesChange(labeled)', 26217),\n",
" (u'PDocAccessible::Msg_Attributes(labeled)', 26147),\n",
" (u'PFileSystemRequest::Msg___delete__(labeled)', 25731),\n",
" (u'MozPromise::ThenValueBase::ResolveOrRejectRunnable(labeled)', 24167),\n",
" (u'ConduitDeleteEvent', 24046),\n",
" (u'PBrowser::Msg_SwappedWithOtherRemoteLoader(labeled)', 23577),\n",
" (u'CSPReportSenderRunnable(labeled)', 22731),\n",
" (u'AbstractThread::Runner for PrincipalHandleOrImageSizeChanged(labeled)',\n",
" 21793),\n",
" (u'SyncRunnable', 21606),\n",
" (u'PDocAccessible::Msg_CharacterCount(labeled)', 21107),\n",
" (u'PContent::Msg_PBrowserConstructor', 20633),\n",
" (u'PBrowser::Msg_PRenderFrameConstructor', 20633),\n",
" (u'PBrowser::Msg_Show', 20633),\n",
" (u'PBrowser::Msg_InitRendering', 20633),\n",
" (u'AbstractThread::Runner for IntrinsicSizeChanged(labeled)', 20622),\n",
" (u'PBrowser::Msg_Destroy', 20559),\n",
" (u'PPluginInstance::Msg_NPN_SetValue_NPPVpluginDrawingModel(labeled)', 20483),\n",
" (u'PAltDataOutputStream::Msg_DeleteSelf(labeled)', 20368),\n",
" (u'ProxyReleaseEvent for MakePrincipalHandle::nsIPrincipal', 20178),\n",
" (u'nsHtml5StreamParserReleaser', 19884),\n",
" (u'EmptyEntriesCallbackRunnable(labeled)', 19731),\n",
" (u'PBrowser::Msg_LoadURL', 19577),\n",
" (u'net::HttpBaseChannel::EnsureUploadStreamIsCloneableComplete', 19284),\n",
" (u'PBrowser::Msg_SuppressDisplayport', 19149),\n",
" (u'storageEvent/<[cookieControllerFrame.js]:JS', 18910),\n",
" (u'PContent::Msg_SetCaptivePortalState', 18572),\n",
" (u'PWebBrowserPersistDocument::Msg___delete__', 17706),\n",
" (u'PPluginInstance::Msg_InitDXGISurface(labeled)', 17293),\n",
" (u'PRemotePrintJob::Msg_PageProcessed(labeled)', 17138),\n",
" (u'PSpeechSynthesis::Msg_InitialVoicesAndState', 17122),\n",
" (u'GetRunnable', 16977),\n",
" (u'PContent::Msg_UpdateDictionaryList', 16832),\n",
" (u'PBrowser::Msg_SwappedWithOtherRemoteLoader', 16462),\n",
" (u'dom::HTMLMediaElement::StreamSizeListener::ReceivedSize(labeled)', 16432),\n",
" (u'AbstractThread::Runner for dom::OnStateChangeTask(labeled)', 15899),\n",
" (u'nsHtml5LoadFlusher', 15694),\n",
" (u'Notification::CreateAndShow', 15656),\n",
" (u'PDocAccessible::Msg_Extents(labeled)', 15433),\n",
" (u'PDocAccessible::Msg_TextSubstring(labeled)', 15097),\n",
" (u'dom::CancelWebSocketRunnable', 14714),\n",
" (u'ProxyReleaseEvent for Console::mStorage(labeled)', 14435),\n",
" (u'net::ExecuteCallback', 13913),\n",
" (u'nsExternalAppHandler', 13158),\n",
" (u'dom::NotifyObserversTask', 13036),\n",
" (u'dom::EventSourceImpl::FailConnection', 13012),\n",
" (u'PAltDataOutputStream::Msg_Error(labeled)', 12495),\n",
" (u'HTMLMediaElement::VideoDecodeSuspendTimerCallback', 12431),\n",
" (u'ScriptErrorRunnable(labeled)', 11875),\n",
" (u'RequestPromptEvent', 11676),\n",
" (u'ScriptLoader::EncodeBytecode', 11664),\n",
" (u'PContent::Msg_PWebBrowserPersistDocumentConstructor', 11612),\n",
" (u'PSpeechSynthesis::Msg_NotifyVoicesChanged', 11486),\n",
" (u'PBrowser::Msg_NavigateByKey(labeled)', 11375),\n",
" (u'nsHtml5TimerKungFu', 11320),\n",
" (u'nsHtml5RequestStopper', 11304),\n",
" (u'PBrowser::Msg_SizeModeChanged', 11077),\n",
" (u'PServiceWorkerManager::Msg_NotifyRemoveAll', 10916),\n",
" (u'PHttpChannel::Msg_IssueDeprecationWarning(labeled)', 10830),\n",
" (u'PContent::Msg_Shutdown', 10815),\n",
" (u'PSpeechSynthesis::Msg_IsSpeakingChanged', 10658),\n",
" (u'ChromeTooltipListener::MouseMove', 10553),\n",
" (u'PExternalHelperApp::Msg_Cancel', 10433),\n",
" (u'PBrowser::Msg_SetKeyboardIndicators', 10428),\n",
" (u'PContent::Msg_ReinitRenderingForDeviceReset', 10057),\n",
" (u'PPluginInstance::Msg_FinalizeDXGISurface(labeled)', 9968),\n",
" (u'net::CancelDNSRequestEvent(labeled)', 9946),\n",
" (u'HandleNumberControlSpin(labeled)', 9922),\n",
" (u'PBrowser::Msg_StopIMEStateManagement', 9861),\n",
" (u'PDocAccessible::Msg_CaretOffset(labeled)', 9812),\n",
" (u'imgCancelRunnable', 9811),\n",
" (u'PPrintSettingsDialog::Msg___delete__(labeled)', 9805),\n",
" (u'History::DispatchNotifyVisited', 9669),\n",
" (u'PWebBrowserPersistDocument::Msg_SetPersistFlags', 9609),\n",
" (u'AbstractThread::Runner for MozPromise::ThenValueBase::ResolveOrRejectRunnable',\n",
" 9591),\n",
" (u'PWebBrowserPersistDocument::Msg_PWebBrowserPersistResourcesConstructor',\n",
" 9588),\n",
" (u'DebuggerOnGCRunnable(labeled)', 9483),\n",
" (u'nsHtml5StreamParserContinuation', 9227),\n",
" (u'PDocAccessible::Msg_URL(labeled)', 9045),\n",
" (u'PWebBrowserPersistDocument::Msg_PWebBrowserPersistSerializeConstructor',\n",
" 8985),\n",
" (u'AsyncWaitRunnable(labeled)', 8965),\n",
" (u'ProxyReleaseEvent for Console::mSandbox(labeled)', 8744),\n",
" (u'PWebSocket::Msg_OnServerClose', 8734),\n",
" (u'dom::TeardownURLRunnable', 8675),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyDataEnded',\n",
" 8290),\n",
" (u'Accessible::TakeFocus', 8271),\n",
" (u'PBackgroundIDBDatabase::Msg_VersionChange(labeled)', 8108),\n",
" (u'PGamepadEventChannel::Msg___delete__', 8033),\n",
" (u'dom::HTMLMediaElement::WakeLockBoolWrapper::UpdateWakeLock', 8004),\n",
" (u'PWyciwygChannel::Msg_OnStopRequest(labeled)', 7941),\n",
" (u'PWyciwygChannel::Msg_OnStartRequest(labeled)', 7941),\n",
" (u'PDocAccessible::Msg_GetTextAtOffset(labeled)', 7848),\n",
" (u'PPluginInstance::Msg_PPluginSurfaceConstructor(labeled)', 7473),\n",
" (u'InternalLoadEvent(labeled)', 7420),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_NPNVdocumentOrigin(labeled)', 7405),\n",
" (u'PBackgroundIDBFactoryRequest::Msg_Blocked(labeled)', 7384),\n",
" (u'PDocAccessible::Msg_SelectionBoundsAt(labeled)', 7308),\n",
" (u'PPrinting::Msg_PRemotePrintJobConstructor(labeled)', 7292),\n",
" (u'nsPrintCompletionEvent(labeled)', 7283),\n",
" (u'PRemotePrintJob::Msg_PrintInitializationResult(labeled)', 7258),\n",
" (u'PRemotePrintJob::Msg___delete__(labeled)', 7255),\n",
" (u'PPrintProgressDialog::Msg_DialogOpened(labeled)', 7246),\n",
" (u'PWyciwygChannel::Msg_OnDataAvailable(labeled)', 7159),\n",
" (u'PContent::Msg_VarUpdate', 6760),\n",
" (u'PCookieService::Msg_RemoveAll(labeled)', 6523),\n",
" (u'wait/<[common.jsm]:JS', 6483),\n",
" (u'ChannelLoader::LoadInternal', 6301),\n",
" (u'net::HttpChannelChild::AsyncCall', 6181),\n",
" (u'dom::workers::CancelChannelRunnable', 6172),\n",
" (u'ipc::MessageChannel::OnNotifyMaybeChannelError', 6065),\n",
" (u'ProxyReleaseEvent for AudioProxyThread::mConduit(labeled)', 5998),\n",
" (u'ProxyReleaseEvent for CheckScriptEvaluationWithCallback::mKeepAliveToken',\n",
" 5912),\n",
" (u'ProxyReleaseEvent for CheckScriptEvaluationWithCallback::mServiceWorkerPrivate',\n",
" 5912),\n",
" (u'DelayedFireSingleTapEvent(labeled)', 5875),\n",
" (u'dom::FileCreatedRunnable(labeled)', 5409),\n",
" (u'imgRequestMainThreadCancel', 5247),\n",
" (u'media-runnable_args_base(labeled)', 5170),\n",
" (u'PContent::Msg_InitGMPService', 5163),\n",
" (u'LogToBrowserConsole(labeled)', 5018),\n",
" (u'GetUserMediaNotificationEvent', 4799),\n",
" (u'net::HttpChannelChild::OverrideRunnable', 4704),\n",
" (u'FinalizationEvent', 4626),\n",
" (u'widget::AudioSession::OnSessionDisconnectedInternal', 4515),\n",
" (u'AbstractThread::Runner for media-runnable_args_base(labeled)', 4380),\n",
" (u'PPluginScriptableObject::Msg_GetParentProperty(labeled)', 4295),\n",
" (u'nsAutoRefTraits<nsOwningThreadSourceSurfaceRef>::SurfaceReleaser', 4219),\n",
" (u'nsPresContextType::RunWillPaintObservers', 4200),\n",
" (u'dom::HTMLCanvasElement::CallPrintCallback(labeled)', 4033),\n",
" (u'dom::HTMLCanvasPrintState::NotifyDone', 4029),\n",
" (u'PBrowser::Msg_RealDragEvent', 3854),\n",
" (u'PDocAccessible::Msg_LinkIndexAtOffset(labeled)', 3782),\n",
" (u'PHttpChannel::Msg_ReportSecurityMessage', 3729),\n",
" (u'PCompositorBridge::Msg_SharedCompositorFrameMetrics', 3680),\n",
" (u'PCompositorBridge::Msg_ReleaseSharedCompositorFrameMetrics', 3669),\n",
" (u'PSpeechSynthesisRequest::Msg_OnPause', 3649),\n",
" (u'PSpeechSynthesisRequest::Msg_OnResume', 3649),\n",
" (u'dom::CreateBlobRunnable(labeled)', 3596),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_PreferredDXGIAdapter(labeled)', 3568),\n",
" (u'nsPresContext::ThemeChangedInternal', 3566),\n",
" (u'RequestAllowEvent', 3503),\n",
" (u'PFileDescriptorSet::Msg___delete__', 3239),\n",
" (u'PDocAccessible::Msg_Relations(labeled)', 3213),\n",
" (u'PContent::Msg_ReinitRendering', 3150),\n",
" (u'layers::ReleaseOnMainThreadTask(labeled)', 3133),\n",
" (u'LayerTransactionChild::Destroy(labeled)', 3133),\n",
" (u'dom::nsResumeTimeoutsEvent', 3126),\n",
" (u'dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed',\n",
" 2965),\n",
" (u'Notification::Close', 2897),\n",
" (u'gfxPlatformFontList::InitOtherFamilyNamesRunnable', 2885),\n",
" (u'PPluginInstance::Msg_RevokeCurrentDirectSurface(labeled)', 2778),\n",
" (u'PBrowser::Msg_UIResolutionChanged', 2716),\n",
" (u'dom::BlobCreationDoneRunnable', 2591),\n",
" (u'MediaManager::SendPendingGUMRequest', 2567),\n",
" (u'dom::GetSubscriptionRunnable', 2536),\n",
" (u'handle[self-hosted]:JS', 2522),\n",
" (u'GetUserMediaStreamRunnable', 2517),\n",
" (u'PPluginScriptableObject::Msg_Unprotect(labeled)', 2510),\n",
" (u'PDocAccessible::Msg_State', 2461),\n",
" (u'dom::PostMessageRunnable', 2461),\n",
" (u'dom::FontFaceSet::CheckLoadingFinishedAfterDelay', 2447),\n",
" (u'PColorPicker::Msg_Update(labeled)', 2418),\n",
" (u'SourceListener::NotifyRemoved', 2377),\n",
" (u'PFTPChannel::Msg_OnStartRequest(labeled)', 2368),\n",
" (u'PPluginSurface::Msg___delete__(labeled)', 2358),\n",
" (u'PDocAccessible::Msg_StartOffset(labeled)', 2320),\n",
" (u'PBrowser::Msg_RealTouchMoveEvent', 2309),\n",
" (u'PDocAccessible::Msg_EndOffset(labeled)', 2305),\n",
" (u'nsIInterceptedChannel::ResetInterception', 2301),\n",
" (u'dom::ErrorPropagationRunnable(labeled)', 2298),\n",
" (u'ChromiumCDMProxy::OnSessionError(labeled)', 2224),\n",
" (u'PFTPChannel::Msg_OnStopRequest(labeled)', 2211),\n",
" (u'PAPZ::Msg_NotifyAsyncScrollbarDragRejected(labeled)', 2180),\n",
" (u'NotifyObservers', 2128),\n",
" (u'PVRLayer::Msg___delete__(labeled)', 2107),\n",
" (u'run[arAkahukuUtil.js]:JS', 2099),\n",
" (u'nsPACMan::StartLoading', 2080),\n",
" (u'PBrowser::Msg_SelectionEvent(labeled)', 1998),\n",
" (u'nsGeolocationRequest::TimerCallbackHolder', 1976),\n",
" (u'PBrowser::Msg_MenuKeyboardListenerInstalled', 1950),\n",
" (u'SourceListener::NotifyFinished', 1795),\n",
" (u'AbstractThread::Runner for BenchmarkPlayback::Output', 1783),\n",
" (u'GASRunnable(labeled)', 1649),\n",
" (u'MinimizeMemoryUsageRunnable', 1528),\n",
" (u'printPreviewInitialize[browser-content.js]:JS', 1495),\n",
" (u'PContent::Msg_RequestMemoryReport', 1419),\n",
" (u'nsFontFaceLoader::LoadTimerCallback(labeled)', 1316),\n",
" (u'PDocAccessible::Msg_CharBounds(labeled)', 1309),\n",
" (u'dom::TimerDriver::TimerDriver', 1249),\n",
" (u'PContent::Msg_FlushMemory', 1194),\n",
" (u'PDocAccessible::Msg_TableIsProbablyForLayout(labeled)', 1192),\n",
" (u'PSpeechSynthesis::Msg_SetDefaultVoice', 1080),\n",
" (u'PDocAccessible::Msg_Name', 1079),\n",
" (u'PDocAccessible::Msg_Description', 1023),\n",
" (u'PDocAccessible::Msg_TextBounds(labeled)', 994),\n",
" (u'GmpInitDoneRunnable', 985),\n",
" (u'nsHtml5ExecutorFlusher', 984),\n",
" (u'PContent::Msg_Push', 960),\n",
" (u'dom::XMLHttpRequestMainThread::CloseRequestWithError', 892),\n",
" (u'PostDebuggerMessageRunnable(labeled)', 872),\n",
" (u'net::HttpChannelChild::OnTransportAndData', 866),\n",
" (u'postProcessNodes[contentPolicy.js]:JS', 865),\n",
" (u'PDocAccessible::Msg_ParentCOMProxy', 853),\n",
" (u'nsPACMan::StartLoading(labeled)', 822),\n",
" (u'nsTransformBlockerEvent', 794),\n",
" (u'PBackgroundStorage::Msg_Error', 791),\n",
" (u'completePromise[self-hosted]:JS', 786),\n",
" (u'PHttpChannel::Msg_FailedAsyncOpen', 779),\n",
" (u'FileReader(labeled)', 756),\n",
" (u'PDocAccessible::Msg_Text(labeled)', 730),\n",
" (u'PServiceWorkerManager::Msg_NotifyRemove', 712),\n",
" (u'nsPluginCrashedEvent', 711),\n",
" (u'PointerLockRequest(labeled)', 683),\n",
" (u'PDocAccessible::Msg___delete__', 640),\n",
" (u'nsIDocument::SelectorCache', 628),\n",
" (u'dom::MediaRecorder::Session::PushBlobRunnable', 626),\n",
" (u'dom::MediaRecorder::Session::EncoderErrorNotifierRunnable', 626),\n",
" (u'PBrowser::Msg_HandledWindowedPluginKeyEvent(labeled)', 607),\n",
" (u'PPluginInstance::Msg_OnWindowedPluginKeyEvent(labeled)', 603),\n",
" (u'PContent::Msg_PushSubscriptionChange', 565),\n",
" (u'PPluginScriptableObject::Msg_InvokeDefault(labeled)', 551),\n",
" (u'ipc::TaskFactory::RunnableMethod', 541),\n",
" (u'PHttpChannel::Msg_AssociateApplicationCache', 533),\n",
" (u'placeHighlight/row.highlight.timer<[grid.jsm]:JS', 531),\n",
" (u'PBackgroundIDBDatabase::Msg_Invalidate(labeled)', 525),\n",
" (u'ProxyReleaseEvent for nsConsoleService::retiredMessage(labeled)', 525),\n",
" (u'PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete(labeled)', 525),\n",
" (u'nsHtml5StreamParser::DoDataAvailable', 506),\n",
" (u'net::PACLoadComplete(labeled)', 472),\n",
" (u'dom::HTMLCanvasElement::ToBlob(labeled)', 460),\n",
" (u'PHttpChannel::Msg_LogBlockedCORSRequest', 448),\n",
" (u'CompositorBridgeChild::AfterDestroy', 431),\n",
" (u'PPluginInstance::Msg_NPN_GetURL(labeled)', 428),\n",
" (u'AbstractThread::Runner for ReportResultTask(labeled)', 425),\n",
" (u'EventStateManager::CreateClickHoldTimer(labeled)', 408),\n",
" (u'DestroyViewerEvent(labeled)', 387),\n",
" (u'dom::StartUnregisterRunnable', 386),\n",
" (u'PContent::Msg_MinimizeMemoryUsage', 382),\n",
" (u'dom::FulfillImageBitmapPromiseTask', 352),\n",
" (u'PPluginSurface::Msg___delete__', 350),\n",
" (u'dom::CallbackRunnable', 346),\n",
" (u'PBrowser::Msg_SetOriginAttributes(labeled)', 328),\n",
" (u'PDocAccessible::Msg_ActionCount(labeled)', 326),\n",
" (u'PDocAccessible::Msg_ActionNameAt(labeled)', 322),\n",
" (u'dom::UnsubscribeRunnable', 306),\n",
" (u'PBrowser::Msg_SetWindowName(labeled)', 296),\n",
" (u'imgRequestProxy::OnLoadComplete', 281),\n",
" (u'dom::MediaRecorder::Session::DispatchStartEventRunnable', 268),\n",
" (u'dom::MediaRecorder::Session::DestroyRunnable', 268),\n",
" (u'nsChannelClassifier::NotifyTrackingProtectionDisabled', 265),\n",
" (u'dom::workers::WorkerPrivate::MemoryReporter::FinishCollectRunnable(labeled)',\n",
" 258),\n",
" (u'PQuotaUsageRequest::Msg___delete__', 258),\n",
" (u'PPluginInstance::Msg_NPN_GetValueForURL(labeled)', 254),\n",
" (u'PContent::Msg_UpdateAppLocales', 251),\n",
" (u'current/this.scheduled<[sights.jsm]:JS', 234),\n",
" (u'PDocAccessible::Msg_AnchorURIAt(labeled)', 216),\n",
" (u'PBrowser::Msg_HandleAccessKey(labeled)', 213),\n",
" (u'observe/<[contentPolicy.js]:JS', 205),\n",
" (u'PDocAccessible::Msg_SelectionCount(labeled)', 194),\n",
" (u'net::PACLoadComplete', 188),\n",
" (u'ChromiumCDMProxy::RejectPromise(labeled)', 188),\n",
" (u'PFTPChannel::Msg_FlushedForDiversion(labeled)', 170),\n",
" (u'PFTPChannel::Msg_DivertMessages(labeled)', 170),\n",
" (u'PFTPChannel::Msg_DeleteSelf(labeled)', 169),\n",
" (u'JSDispatchableRunnable', 165),\n",
" (u'PContent::Msg_GarbageCollect', 163),\n",
" (u'AsyncPaintWaitEvent', 159),\n",
" (u'PContent::Msg_CycleCollect', 156),\n",
" (u'dom::StreamReadyRunnable', 153),\n",
" (u'PBrowser::Msg_CompositionEvent', 148),\n",
" (u'PColorPicker::Msg___delete__(labeled)', 133),\n",
" (u'imgRequestProxy::BlockOnload', 132),\n",
" (u'imgRequestProxy::UnblockOnload', 132),\n",
" (u'DTMFSendTimerCallback_m', 131),\n",
" (u'ClientFocusRunnable', 121),\n",
" (u'PDocAccessible::Msg_Extents', 114),\n",
" (u'PDocAccessible::Msg_URL', 114),\n",
" (u'PMessagePort::Msg_StopSendingDataConfirmed', 111),\n",
" (u'PBrowser::Reply_BrowserFrameOpenWindow(labeled)', 107),\n",
" (u'PContent::Msg_UpdateRequestedLocales', 106),\n",
" (u'laterTickResolvingPromise/</<[utils.js]:JS', 100),\n",
" (u'PWebrtcGlobal::Msg_GetStatsRequest', 100),\n",
" (u'PBrowser::Msg_AwaitLargeAlloc(labeled)', 89),\n",
" (u'PDocAccessible::Msg_LinkCount(labeled)', 89),\n",
" (u'PVRManager::Msg_ReplyGamepadVibrateHaptic', 88),\n",
" (u'PRemotePrintJob::Msg_AbortPrint(labeled)', 86),\n",
" (u'AbstractThread::Runner for MediaStreamGraphShutDownRunnable(labeled)', 85),\n",
" (u'PContent::Msg_GeolocationError', 85),\n",
" (u'CheckResponsivenessTask', 79),\n",
" (u'dom::ThreadInitializeRunnable(labeled)', 78),\n",
" (u'PDocAccessible::Msg_SetCaretOffset(labeled)', 78),\n",
" (u'nsFocusManager::RaiseWindow', 77),\n",
" (u'PContent::Msg_PushError', 73),\n",
" (u'nsFtpChildAsyncAlert(labeled)', 72),\n",
" (u'PWebrtcGlobal::Msg_ClearStatsRequest', 66),\n",
" (u'ErrorCallbackRunnable', 64),\n",
" (u'dom::nsSourceErrorEventRunner', 63),\n",
" (u'PBrowser::Msg_RealTouchEvent', 63),\n",
" (u'RegisterDebuggerMainThreadRunnable', 62),\n",
" (u'PChildToParentStream::Msg_RequestClose', 61),\n",
" (u'nsPluginDestroyRunnable', 60),\n",
" (u'AbstractThread::Runner for AsyncCubebTask::EnsureThread', 59),\n",
" (u'GetUserMediaWindowListener::Remove', 58),\n",
" (u'PBrowser::Msg_SetWindowName', 56),\n",
" (u'HttpChannelChild::SetMatchedInfo', 54),\n",
" (u'AsyncTaskRunnable', 52),\n",
" (u'PBrowser::Msg_ThemeChanged', 48),\n",
" (u'AppendAppNotesRunnable(labeled)', 48),\n",
" (u'PContent::Msg_GetFilesResponse', 45),\n",
" (u'XPCJSRuntime::DoCycleCollectionCallback', 45),\n",
" (u'PointerUnlocker', 44),\n",
" (u'AbstractThread::Runner for RunnableRelease(labeled)', 44),\n",
" (u'PDocAccessible::Msg_TakeFocus(labeled)', 41),\n",
" (u'PWebAuthnTransaction::Msg_ConfirmRegister', 41),\n",
" (u'PDocAccessible::Msg_RestoreFocus', 40),\n",
" (u'DummyEvent', 40),\n",
" (u'PWebrtcGlobal::Msg_GetLogRequest', 38),\n",
" (u'net::WaitForThreadShutdown(labeled)', 36),\n",
" (u'nsDocumentShownDispatcher', 34),\n",
" (u'DataChannelBlobSendRunnable(labeled)', 34),\n",
" (u'net::WaitForThreadShutdown', 33),\n",
" (u'PPSMContentDownloader::Msg___delete__', 33),\n",
" (u'ReportFetchListenerWarningRunnable', 30),\n",
" (u'dom::CreateBlobRunnable', 29),\n",
" (u'dom::FileCreatedRunnable', 29),\n",
" (u'setInterval() in Timer.jsm', 28),\n",
" (u'FuzzTimerCallBack', 26),\n",
" (u'PDocAccessible::Msg_AtkKeyBinding(labeled)', 26),\n",
" (u'PQuotaRequest::Msg___delete__', 24),\n",
" (u'dom::workers::PushErrorReporter::ReportOnMainThread', 23),\n",
" (u'this.aSync/<[sandboxTools.jsm]:JS', 23),\n",
" (u'PContent::Msg_FileCreationResponse', 22),\n",
" (u'WebCore::HRTFDatabaseLoader::ProxyReleaseEvent', 20),\n",
" (u'IMENotificationSender', 20),\n",
" (u'AbstractThread::Runner for FinishCollectRunnable(labeled)', 19),\n",
" (u'AbstractThread::Runner for detail::Listener::ApplyWithNoArgs(labeled)',\n",
" 19),\n",
" (u'dom::U2FSignRunnable::Run(labeled)', 18),\n",
" (u'UnregisterDebuggerMainThreadRunnable', 18),\n",
" (u'ProxyReleaseEvent for U2FSignRunnable::mCallback', 18),\n",
" (u'PServiceWorkerManager::Msg_NotifySoftUpdate', 17),\n",
" (u'PDocAccessible::Msg_NativeState(labeled)', 16),\n",
" (u'nsBaseChannel::RedirectRunnable(labeled)', 16),\n",
" (u'PDocAccessible::Msg_LinkAt(labeled)', 14),\n",
" (u'dom::WebAudioUtils::LogToDeveloperConsole(labeled)', 13),\n",
" (u'dom::ContentChild::AsyncOpenAnonymousTemporaryFile', 13),\n",
" (u'PBrowser::Msg_Print(labeled)', 13),\n",
" (u'HTMLMediaElement::QueueLoadFromSourceTask', 11),\n",
" (u'AbstractThread::Runner for dom::AudioDestinationNode::FireOfflineCompletionEvent(labeled)',\n",
" 11),\n",
" (u'nsHtml5Parser::Terminate', 11),\n",
" ...]"
]
},
"execution_count": 14,
"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