Skip to content

Instantly share code, notes, and snippets.

@bevis-tseng
Created August 10, 2017 01:42
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/2314117220caa2685bc50930cfb50142 to your computer and use it in GitHub Desktop.
Save bevis-tseng/2314117220caa2685bc50930cfb50142 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": 13,
"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": 14,
"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": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"Dataset.from_source(\"telemetry\").schema"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"fetching 6944.38625MB in 658 files...\n"
]
}
],
"source": [
"pings = Dataset.from_source(\"telemetry\") \\\n",
" .where(docType='main') \\\n",
" .where(appBuildId=lambda x: x.startswith('20170802') or x.startswith('20170803')) \\\n",
" .where(appUpdateChannel=\"nightly\") \\\n",
" .records(sc, sample=1.0)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"subset = get_pings_properties(pings, [\"payload/processes/content/keyedHistograms/MAIN_THREAD_RUNNABLE_MS\"])"
]
},
{
"cell_type": "code",
"execution_count": 17,
"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": 18,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"freq = subset.flatMap(count).reduceByKey(lambda a, b: a+b).collect()"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"freq.sort(key=lambda d: d[1], reverse=True)"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": [
"def is_labeled(name):\n",
" if name.endswith('(labeled)') or 'PVsync' in name or 'Idle' in name:\n",
" return True\n",
" return False"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {
"collapsed": false
},
"outputs": [],
"source": [
"freq_filt = [ (name, v) for (name, v) in freq if not name.startswith('PJavaScript') ]"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"[(u'TimeoutExecutor Runnable(labeled)', 11069475394),\n",
" (u'PVsync::Msg_Notify', 9232292233),\n",
" (u'IdleRunnable', 8851364509),\n",
" (u'CollectorRunner(labeled)', 8229942018),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable(labeled)',\n",
" 5398180926),\n",
" (u'AsyncEventDispatcher(labeled)', 3518259321),\n",
" (u'PCompositorBridge::Msg_DidComposite(labeled)', 2215134134),\n",
" (u'LayerActivityTracker(labeled)', 2175264838),\n",
" (u'nsDocument::NotifyIntersectionObservers(labeled)', 2098544915),\n",
" (u'PBrowser::Msg_RealMouseMoveEvent(labeled)', 2056069764),\n",
" (u'CompleteResumeRunnable(labeled)', 2020542104),\n",
" (u'IdleRunnableWrapper for AsyncFreeSnowWhite', 1772645636),\n",
" (u'MediaResource::Destroy(labeled)', 1130175450),\n",
" (u'Anonymous_interface_timer', 1091567148),\n",
" (u'LogMessageRunnable(labeled)', 836313251),\n",
" (u'AbstractThread::Runner for MediaStreamGraphStableStateRunnable(labeled)',\n",
" 705898309),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyBytesConsumed(labeled)',\n",
" 702422699),\n",
" (u'ProgressTracker::AsyncNotifyRunnable(labeled)', 699285177),\n",
" (u'TelemetryIPCAccumulator::IPCTimerFired(labeled)', 661786808),\n",
" (u'dom::PostMessageEvent(labeled)', 652072565),\n",
" (u'HTMLMediaElement::nsAsyncEventRunner(labeled)', 608446516),\n",
" (u'StorageNotifierService::Broadcast(labeled)', 604137580),\n",
" (u'MediaCache::UpdateEvent(labeled)', 601039524),\n",
" (u'nsIDocument::SelectorCache(labeled)', 455058529),\n",
" (u'ProxyReleaseEvent for nsStyleDisplay::mSpecifiedTransform(labeled)',\n",
" 445605960),\n",
" (u'dom::PostMessageRunnable(labeled)', 419069881),\n",
" (u'layers::DestroyTextureData(labeled)', 413338804),\n",
" (u'PTexture::Msg___delete__(labeled)', 405442428),\n",
" (u'net::HttpChannelChild::OnTransportAndData(labeled)', 392485428),\n",
" (u'PAPZ::Msg_RequestContentRepaint(labeled)', 362583128),\n",
" (u'PHttpChannel::Msg_DeleteSelf(labeled)', 324120884),\n",
" (u'PHttpChannel::Msg_OnStartRequest(labeled)', 316164429),\n",
" (u'AbstractThread::Runner for MozPromise::ThenValueBase::ResolveOrRejectRunnable(labeled)',\n",
" 298624428),\n",
" (u'PContent::Msg_NotifyVisited', 278284019),\n",
" (u'ProxyReleaseEvent for NS_ReleaseOnMainThreadSystemGroup(labeled)',\n",
" 224878260),\n",
" (u'PContent::Msg_DispatchLocalStorageChange', 222542787),\n",
" (u'IDecodingTask::NotifyDecodeComplete(labeled)', 219796399),\n",
" (u'PredictorLearnRunnable(labeled)', 214740396),\n",
" (u'XMLHttpRequest(labeled)', 199431772),\n",
" (u'PBrowser::Msg_AsyncMessage(labeled)', 185945976),\n",
" (u'StyleImageRequestCleanupTask', 183242364),\n",
" (u'IdleRequestExecutor', 165839372),\n",
" (u'non-nsINamed ThrottledEventQueue runnable(labeled)', 135201159),\n",
" (u'PContent::Msg_DataStoragePut', 134467723),\n",
" (u'PPluginInstance::Msg_ShowDirectDXGISurface(labeled)', 134373280),\n",
" (u'WinWakeLockListener', 133084352),\n",
" (u'RefreshDriverVsyncObserver::NormalPriorityNotify', 131755899),\n",
" (u'PresShell::UpdateApproximateFrameVisibility(labeled)', 127291557),\n",
" (u'HTMLMediaElement::ProgressTimerCallback(labeled)', 123786312),\n",
" (u'PBrowser::Msg_MouseWheelEvent(labeled)', 117261840),\n",
" (u'PVRManager::Msg_UpdateDisplayInfo', 116620339),\n",
" (u'StorageNotifierRunnable(labeled)', 111266298),\n",
" (u'SHMEM_DESTROYED_MESSAGE(labeled)', 109853371),\n",
" (u'net::WrappedChannelEvent(labeled)', 97300491),\n",
" (u'FinishPreparingForNewPartRunnable', 96312465),\n",
" (u'PHttpChannel::Msg_SetPriority(labeled)', 95467390),\n",
" (u'nsHtml5ExecutorFlusher(labeled)', 93810521),\n",
" (u'PBrowser::Msg_SynthMouseMoveEvent(labeled)', 88960195),\n",
" (u'nsHtml5ExecutorReflusher(labeled)', 85830735),\n",
" (u'PContent::Msg_AsyncMessage', 85173698),\n",
" (u'AbstractThread::Runner for dom::AnalyserNodeEngine::TransferBuffer(labeled)',\n",
" 81594517),\n",
" (u'nsBrowserStatusFilter::TimeoutHandler(labeled)', 77237220),\n",
" (u'PPluginInstance::Msg_ShowDirectBitmap(labeled)', 75272924),\n",
" (u'PBrowser::Msg_RealKeyEvent(labeled)', 73954517),\n",
" (u'PWebSocket::Msg_OnMessageAvailable(labeled)', 70454634),\n",
" (u'EverySecondTelemetryCallback_m', 69483052),\n",
" (u'nsUnblockOnloadEvent(labeled)', 67398541),\n",
" (u'PCompositorBridge::Msg_ParentAsyncMessages', 64706534),\n",
" (u'IDecodingTask::NotifyProgress(labeled)', 64371225),\n",
" (u'HTMLMediaElement::nsResolveOrRejectPendingPlayPromisesRunner(labeled)',\n",
" 61725200),\n",
" (u'AsyncTimeEventRunner(labeled)', 59851615),\n",
" (u'CheckResponsivenessTask(labeled)', 58778411),\n",
" (u'nsPresContextType::RunWillPaintObservers(labeled)', 57662939),\n",
" (u'DummyEvent', 53953724),\n",
" (u'nsHtml5LoadFlusher(labeled)', 53806305),\n",
" (u'AbstractThread::Runner for Command(labeled)', 50832738),\n",
" (u'RasterImage::OnSurfaceDiscarded', 49252290),\n",
" (u'BlurCache(labeled)', 48921429),\n",
" (u'AvailableRunnable', 47429169),\n",
" (u'nsHtml5StreamParserReleaser(labeled)', 45807542),\n",
" (u'PContent::Msg_PreferenceUpdate', 45327408),\n",
" (u'nsPipeInputStream::AsyncWait(labeled)', 44830321),\n",
" (u'nsCaret::CaretBlinkCallback_timer', 44667034),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange(labeled)', 42772838),\n",
" (u'WindowDestroyedEvent(labeled)', 38756868),\n",
" (u'imgRequestProxy::DoRemoveFromLoadGroup', 36668155),\n",
" (u'InactiveRefreshDriverTimer::ScheduleNextTick', 35747956),\n",
" (u'PBrowser::Msg_RealMouseButtonEvent(labeled)', 34296887),\n",
" (u'IdleRunnableWrapper for nsIDocument::FlushPendingLinkUpdatesFromRunnable',\n",
" 33814064),\n",
" (u'nsIDocument::HandleRebuildUserFontSet(labeled)', 33347495),\n",
" (u'IdleRunnableWrapper for WindowDestroyedEvent', 31880683),\n",
" (u'Canceled_timer(labeled)', 30540603),\n",
" (u'PStorage::Msg_LoadItem', 30142662),\n",
" (u'PTexture::Msg___delete__', 29718484),\n",
" (u'ScrollFrameHelper::ScheduleSyntheticMouseMove', 29527038),\n",
" (u'PVRManager::Msg_GamepadUpdate', 29170422),\n",
" (u'IncrementalFinalizeRunnable', 29076636),\n",
" (u'ShortTermURISpecCache(labeled)', 27684807),\n",
" (u'imgRequestProxy::Notify(labeled)', 27521746),\n",
" (u'nsHtml5SVGLoadDispatcher(labeled)', 26371242),\n",
" (u'PAPZ::Msg_NotifyAPZStateChange(labeled)', 25950801),\n",
" (u'dom::NotifyOffThreadScriptLoadCompletedRunnable(labeled)', 25526303),\n",
" (u'PContent::Msg_ParentActivated', 25253799),\n",
" (u'nsDocument::UpdateVisibilityState(labeled)', 23623007),\n",
" (u'mscom::MainThreadRelease(labeled)', 23368740),\n",
" (u'nsBindingManager::DoProcessAttachedQueue(labeled)', 23090303),\n",
" (u'AbstractThread::Runner for AutoTaskDispatcher::TaskGroupRunnable',\n",
" 22697390),\n",
" (u'StorageNotifierService::Broadcast', 22340882),\n",
" (u'ContentUnbinder', 22222343),\n",
" (u'gfxFontCache::gfxFontCache(labeled)', 21855386),\n",
" (u'PBrowser::Msg_UpdateDimensions(labeled)', 21728702),\n",
" (u'nsDocumentShownDispatcher(labeled)', 20970938),\n",
" (u'UITimerCallback_timer(labeled)', 20908311),\n",
" (u'nsDocument::NotifyStyleSheetApplicableStateChanged(labeled)', 19998311),\n",
" (u'dom::HTMLMediaElement::DoRemoveSelfReference(labeled)', 19879502),\n",
" (u'ProxyReleaseEvent for MainThreadHandoff(labeled)', 19700705),\n",
" (u'NotifyGCEndRunnable(labeled)', 19628214),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyBytesConsumed',\n",
" 18443271),\n",
" (u'dom::FlushRejections(labeled)', 17925351),\n",
" (u'IdleRunnableWrapper for mozInlineSpellResume', 17031608),\n",
" (u'UpdateTimerCallback', 16613623),\n",
" (u'nsPipeInputStream::AsyncWait', 16335812),\n",
" (u'ScrollFrameActivityTracker(labeled)', 16091652),\n",
" (u'nsDocument::DispatchContentLoadedEvents(labeled)', 15846051),\n",
" (u'PBackgroundIDBCursor::Msg_Response(labeled)', 15440159),\n",
" (u'PBrowser::Msg_LoadRemoteScript(labeled)', 15353526),\n",
" (u'PWebSocket::Msg_OnAcknowledge(labeled)', 15072303),\n",
" (u'nsThreadShutdownAckEvent', 14804700),\n",
" (u'CompleteResumeRunnable', 14600001),\n",
" (u'ChromeTooltipListener::MouseMove(labeled)', 13494909),\n",
" (u'imgCacheExpirationTracker', 13395972),\n",
" (u'dom::ScriptLoader::ProcessPendingRequests(labeled)', 13083041),\n",
" (u'EventListenerService::NotifyPendingChanges(labeled)', 12601634),\n",
" (u'PPluginScriptableObject::Msg_NPN_Evaluate(labeled)', 12545321),\n",
" (u'GCTimerFired(labeled)', 12333671),\n",
" (u'nsIThread::AsyncShutdown', 12180677),\n",
" (u'FlushTimerCallback', 12002491),\n",
" (u'PHal::Msg_NotifyWakeLockChange', 11360613),\n",
" (u'PContent::Msg_PIPCBlobInputStreamConstructor', 11289637),\n",
" (u'StartupRefreshDriverTimer::ScheduleNextTick', 11109573),\n",
" (u'PContentPermissionRequest::Msg___delete__', 10911200),\n",
" (u'PContentPermissionRequest::Msg_NotifyResult', 10907705),\n",
" (u'NotificationPermissionRequest(labeled)', 10847723),\n",
" (u'NotificationPermissionRequest::DispatchResolvePromise(labeled)', 10845005),\n",
" (u'dom::SimpleTextTrackEvent', 10739865),\n",
" (u'PHttpChannel::Msg_Redirect1Begin(labeled)', 10711266),\n",
" (u'nsAsyncRedirectVerifyHelper(labeled)', 10710434),\n",
" (u'nsAsyncVerifyRedirectCallbackEvent(labeled)', 10707479),\n",
" (u'PWebSocket::Msg_OnBinaryMessageAvailable(labeled)', 10589583),\n",
" (u'ImageCache', 10409307),\n",
" (u'PuppetWidget::PaintTask(labeled)', 10388631),\n",
" (u'PHttpChannel::Msg_Redirect3Complete(labeled)', 10343028),\n",
" (u'AbstractThread::Runner for VideoFrameContainerInvalidateRunnable(labeled)',\n",
" 10339127),\n",
" (u'PContent::Msg_BlobURLRegistration', 9826885),\n",
" (u'InactiveRefreshDriverTimer::StartTimer', 9575784),\n",
" (u'IdleRunnableWrapper::SetTimer', 9394722),\n",
" (u'IdleRunnableWrapper', 9219954),\n",
" (u'GradientCache(labeled)', 8956951),\n",
" (u'AsyncTimeEventRunner', 8903849),\n",
" (u'media-runnable_args_base', 8735332),\n",
" (u'nsPresContext::HandleMediaFeatureValuesChangedEvent(labeled)', 8670349),\n",
" (u'PContent::Msg_SetPermissionsWithKey', 8633345),\n",
" (u'PBackgroundIDBRequest::Msg___delete__(labeled)', 8605570),\n",
" (u'WebCryptoTask', 8467078),\n",
" (u'TileExpiry', 8151712),\n",
" (u'PresShell::FireResizeEvent(labeled)', 8128594),\n",
" (u'dom::workers::WorkerMainThreadRunnable(labeled)', 8061161),\n",
" (u'dom::TextTrack::DispatchAsyncTrustedEvent(labeled)', 8056888),\n",
" (u'nsDocument::DoNotifyPossibleTitleChange', 7737094),\n",
" (u'non-nsINamed runnable', 7700212),\n",
" (u'ProxyReleaseRunnable', 7495454),\n",
" (u'PBrowser::Msg_SetDocShellIsActive(labeled)', 7409716),\n",
" (u'ChannelMediaDecoder::ResourceCallback::TimerCallback(labeled)', 7156953),\n",
" (u'dom::TextTrackManager::TimeMarchesOn(labeled)', 7035925),\n",
" (u'nsMemoryReporterManager::GetHeapAllocatedAsync', 7025028),\n",
" (u'nsComposerCommandsUpdater', 6709402),\n",
" (u'PPluginInstance::Msg_Show(labeled)', 6595168),\n",
" (u'ProgressTracker::AsyncNotifyRunnable', 6454419),\n",
" (u'nsHtml5SVGLoadDispatcher', 6436416),\n",
" (u'setTimeout() in Timer.jsm', 6429689),\n",
" (u'PresShell::sPaintSuppressionCallback(labeled)', 6420511),\n",
" (u'ThrottleTimeoutsCallback(labeled)', 6152220),\n",
" (u'PContent::Msg_DataStorageRemove', 6019533),\n",
" (u'PBrowser::Msg_SuppressDisplayport(labeled)', 6011582),\n",
" (u'setTimeout() in Timer.jsm(labeled)', 5988396),\n",
" (u'nsDelayedCalcBCBorders(labeled)', 5881292),\n",
" (u'AsyncEventDispatcher', 5867826),\n",
" (u'gfxFontCache(labeled)', 5784782),\n",
" (u'gfxFcPlatformFontList::gfxFcPlatformFontList', 5780541),\n",
" (u'non-nsINamed ThrottledEventQueue runnable', 5675758),\n",
" (u'SurfaceTracker', 5651505),\n",
" (u'RuleProcessorCache::ExpirationTracker(labeled)', 5468279),\n",
" (u'DataChannelOnMessageAvailable(labeled)', 5394421),\n",
" (u'ProgressTracker::SyncNotifyProgress', 5369344),\n",
" (u'NotifyBHRHangObservers(labeled)', 5332725),\n",
" (u'dom::PostMessageEvent', 5315875),\n",
" (u'nsDocument::DispatchContentLoadedEvents', 5301787),\n",
" (u'PresShell::sPaintSuppressionCallback', 5300540),\n",
" (u'PContent::Msg_LoadProcessScript', 5123591),\n",
" (u'IDecodingTask::NotifyDecodeComplete', 4737063),\n",
" (u'PContent::Msg_Activate', 4646850),\n",
" (u'PContent::Msg_Deactivate', 4625423),\n",
" (u'anonymous(labeled)', 4542007),\n",
" (u'PCacheOp::Msg___delete__', 4517102),\n",
" (u'NotifyChannelActiveRunnable', 4516740),\n",
" (u'PBackgroundIDBTransaction::Msg_Complete(labeled)', 4501429),\n",
" (u'AudioPlaybackRunnable', 4395601),\n",
" (u'PBackgroundIDBTransaction::Msg___delete__(labeled)', 4390029),\n",
" (u'PContent::Msg_BlobURLUnregistration', 4266210),\n",
" (u'DecoderDoctorDocumentWatcher_timer', 4110476),\n",
" (u'PHttpChannel::Msg_DeleteSelf', 4086129),\n",
" (u'PHttpChannel::Msg_OnStartRequest', 4073227),\n",
" (u'ScrollFrameHelper::ResetDisplayPortExpiryTimer', 4041396),\n",
" (u'MozPromise::ThenValueBase::ResolveOrRejectRunnable', 3988763),\n",
" (u'nsPresContext::HandleMediaFeatureValuesChangedEvent', 3853209),\n",
" (u'PresShell::FireResizeEvent', 3853209),\n",
" (u'FullGCTimerFired(labeled)', 3763855),\n",
" (u'ProxyHashtableDestructor', 3747727),\n",
" (u'Anonymous_observer_timer', 3595313),\n",
" (u'PBrowser::Msg_StopIMEStateManagement(labeled)', 3451092),\n",
" (u'ScrollbarActivity::FadeBeginTimerFired', 3424629),\n",
" (u'imgCancelRunnable', 3351731),\n",
" (u'PBrowser::Msg_RealDragEvent(labeled)', 3295649),\n",
" (u'dom::FontFaceSet::CheckLoadingFinishedAfterDelay(labeled)', 3255623),\n",
" (u'nsWindowMemoryReporter::AsyncCheckForGhostWindows_timer', 3222515),\n",
" (u'nsIDocument::HandleRebuildUserFontSet', 3190905),\n",
" (u'PStorage::Msg_LoadDone', 3170279),\n",
" (u'PGamepadEventChannel::Msg_GamepadUpdate', 3162743),\n",
" (u'dom::GamepadUpdateRunnable', 3161838),\n",
" (u'PBrowser::Msg_RealTouchMoveEvent(labeled)', 3069983),\n",
" (u'SendTelemetry(labeled)', 3007867),\n",
" (u'ProxyReleaseEvent for ExtendableEventWorkerRunnable::mKeepAliveToken',\n",
" 3000314),\n",
" (u'image::ImageResource::SendOnUnlockedDraw', 2921323),\n",
" (u'PServiceWorkerUpdater::Msg_Proceed', 2917974),\n",
" (u'AbstractThread::Runner for MediaSourceDecoder::SetInitialDuration(labeled)',\n",
" 2881237),\n",
" (u'PContent::Msg_SetPluginList', 2858360),\n",
" (u'nsHTMLDNSPrefetch::nsDeferrals::Tick', 2700472),\n",
" (u'dom::workers::ServiceWorkerRegistrationInfo::AsyncUpdateRegistrationStateProperties',\n",
" 2498101),\n",
" (u'dom::AudioChannelService::AudioChannelWindow::NotifyMediaBlockStop',\n",
" 2396550),\n",
" (u'dom::LoadStartDetectionRunnable(labeled)', 2324160),\n",
" (u'layers::TextureClientPool::ResetTimers', 2298098),\n",
" (u'WatchdogTimerEvent', 2268651),\n",
" (u'ShrinkingGCTimerFired(labeled)', 2253304),\n",
" (u'dom::AsyncTeardownRunnable(labeled)', 2224950),\n",
" (u'ProxyReleaseEvent for nsStyleContentData::mContent.mImage(labeled)',\n",
" 2201508),\n",
" (u'dom::workers::RegistrationUpdateRunnable', 2183911),\n",
" (u'ipc::MessageChannel::DispatchOnChannelConnected', 2098845),\n",
" (u'ProxyReleaseEvent for ServiceWorkerRegistrationInfo', 2073557),\n",
" (u'ProxyReleaseEvent for nsIInterceptedChannel', 2071086),\n",
" (u'ServiceWorkerRegistrationInfo::TryToActivate', 2058959),\n",
" (u'PBrowser::Msg_SizeModeChanged(labeled)', 2054094),\n",
" (u'PBrowserStream::Msg_StreamDestroyed(labeled)', 2051137),\n",
" (u'PContent::Msg_RefreshScreens', 1974085),\n",
" (u'ProxyReleaseEvent for WeakReferenceSupport(labeled)', 1910893),\n",
" (u'PBrowser::Msg_UIResolutionChanged(labeled)', 1890967),\n",
" (u'CategoryNotificationRunnable', 1860134),\n",
" (u'HTMLMediaElement::nsAsyncEventRunner', 1781710),\n",
" (u'AutoTaskQueue::~AutoTaskQueue(labeled)', 1747871),\n",
" (u'HttpChannelChild::SetMatchedInfo(labeled)', 1742381),\n",
" (u'dom::workers::FetchEventRunnable::ResumeRequest', 1729397),\n",
" (u'PPluginInstance::Msg_PStreamNotifyConstructor(labeled)', 1696139),\n",
" (u'PContent::Msg_GMPsChanged', 1684164),\n",
" (u'ProgressTracker::OnDiscard', 1676199),\n",
" (u'PBackground::Msg_PCacheStreamControlConstructor', 1671141),\n",
" (u'PBackground::Msg_PFileDescriptorSetConstructor', 1671141),\n",
" (u'PCacheStreamControl::Msg___delete__', 1671068),\n",
" (u'WMFVideoMFTManager::~WMFVideoMFTManager(labeled)', 1623443),\n",
" (u'PCacheStorage::Msg___delete__', 1619065),\n",
" (u'dom::cache::ReadStream::Inner::NoteClosedRunnable', 1618448),\n",
" (u'ReleasingTimerHolder(labeled)', 1593512),\n",
" (u'ServiceWorkerJob::AsyncExecute', 1592433),\n",
" (u'ProxyReleaseEvent for ServiceWorkerJob(labeled)', 1585741),\n",
" (u'PContent::Msg_LoadAndRegisterSheet', 1532728),\n",
" (u'PMessagePort::Msg_ReceiveData', 1521027),\n",
" (u'nsAutoCompleteController', 1483140),\n",
" (u'PBackground::Msg_PCacheConstructor', 1413237),\n",
" (u'PNecko::Reply_GetExtensionFD', 1393883),\n",
" (u'PCache::Msg___delete__', 1359257),\n",
" (u'a11y::DocAccessible::ScrollPositionDidChange', 1356539),\n",
" (u'PBrowser::Msg_SetUseGlobalHistory(labeled)', 1355291),\n",
" (u'PBrowser::Msg_Show(labeled)', 1347109),\n",
" (u'PTCPSocket::Msg_Callback(labeled)', 1342178),\n",
" (u'PBrowser::Msg_MenuKeyboardListenerInstalled(labeled)', 1295314),\n",
" (u'PBrowser::Msg_Destroy(labeled)', 1256788),\n",
" (u'TabChild::DelayedDeleteRunnable', 1249482),\n",
" (u'Background::ChildImpl::CreateActorRunnable', 1247775),\n",
" (u'XMLHttpRequest', 1230543),\n",
" (u'AsyncScriptCompiler(labeled)', 1219018),\n",
" (u'VideoUtils::DeleteObjectTask(labeled)', 1217008),\n",
" (u'PBrowser::Msg_PRenderFrameConstructor(labeled)', 1185235),\n",
" (u'PBrowser::Msg_InitRendering(labeled)', 1185235),\n",
" (u'PContent::Msg_PBrowserConstructor(labeled)', 1185235),\n",
" (u'dom::HTMLMediaElement::WakeLockBoolWrapper::UpdateWakeLock(labeled)',\n",
" 1178210),\n",
" (u'PAPZ::Msg_Destroy(labeled)', 1174942),\n",
" (u'CSPReportSenderRunnable', 1161509),\n",
" (u'ThrottledEventQueue::Inner::ShutdownComplete', 1155519),\n",
" (u'PBrowser::Msg_SetWidgetNativeData(labeled)', 1154347),\n",
" (u'ChannelLoader::LoadInternal(labeled)', 1142908),\n",
" (u'PPluginInstance::Msg_NPN_SetValue_NPPVpluginIsPlayingAudio(labeled)',\n",
" 1059025),\n",
" (u'TransactionIdAllocator::NotifyTransactionCompleted', 1057202),\n",
" (u'nsJSChannel::EvaluateScript', 1050616),\n",
" (u'PStorage::Msg_LoadUsage', 1049455),\n",
" (u'OnLinkClickEvent(labeled)', 1041633),\n",
" (u'nsDocument::NotifyStyleSheetApplicableStateChanged', 1020242),\n",
" (u'PBrowser::Msg_UpdateNativeWindowHandle(labeled)', 1016850),\n",
" (u'CharSetChangingRunnable(labeled)', 998738),\n",
" (u'nsIScriptElement::FireErrorEvent', 983150),\n",
" (u'PLayerTransaction::Msg___delete__(labeled)', 975514),\n",
" (u'PContent::Msg_RegisterChromeItem', 952335),\n",
" (u'PDocAccessible::Msg_State(labeled)', 945988),\n",
" (u'NotifyDidPaintForSubtree(labeled)', 940407),\n",
" (u'IDecodingTask::NotifyProgress', 895378),\n",
" (u'HTMLMediaElement::VideoDecodeSuspendTimerCallback(labeled)', 893453),\n",
" (u'PMessagePort::Msg_Entangled', 887793),\n",
" (u'PBrowser::Msg_RealMouseMoveEvent', 872012),\n",
" (u'PVsync::Msg_VsyncRate', 856725),\n",
" (u'imgRequestMainThreadCancel', 809253),\n",
" (u'ProxyReleaseEvent for TrackBuffersManager::mParentDecoder', 803845),\n",
" (u'Canceled_timer', 778118),\n",
" (u'nsIThreadPool::Shutdown', 762767),\n",
" (u'dom::AsyncErrorReporter', 747283),\n",
" (u'nsAutoRefTraits<nsMainThreadSourceSurfaceRef>::SurfaceReleaser', 685911),\n",
" (u'PRemoteSpellcheckEngine::Msg_NotifyOfCurrentDictionary', 674944),\n",
" (u'AccessibleCaretEventHub::LaunchScrollEndInjector', 659518),\n",
" (u'BeginConsumeBodyRunnable(labeled)', 658449),\n",
" (u'PStorage::Msg_Observe', 658158),\n",
" (u'EventListenerService::NotifyPendingChanges', 652166),\n",
" (u'nsDelayedEventDispatcher(labeled)', 611899),\n",
" (u'PBackgroundIDBCursor::Msg___delete__(labeled)', 602651),\n",
" (u'StyleImageRequestCleanupTask(labeled)', 601349),\n",
" (u'dom::EventSourceImpl::DispatchAllMessageEvents', 597560),\n",
" (u'nsChannelClassifier::NotifyTrackingProtectionDisabled(labeled)', 585975),\n",
" (u'dom::workers::WorkerProxyToMainThreadRunnable', 581309),\n",
" (u'nsScrollbarButtonFrame(labeled)', 561762),\n",
" (u'nsPresContext::HandleRebuildCounterStyles(labeled)', 556686),\n",
" (u'POfflineCacheUpdate::Msg_NotifyStateEvent', 534494),\n",
" (u'PContent::Msg_RegisterChrome', 533486),\n",
" (u'HTMLMediaElement::NoSupportedMediaSourceError(labeled)', 533063),\n",
" (u'dom::XMLHttpRequestMainThread::CloseRequestWithError(labeled)', 521543),\n",
" (u'PContent::Msg_PScriptCacheConstructor', 520474),\n",
" (u'PContent::Msg_SetXPCOMProcessAttributes', 520474),\n",
" (u'PContent::Msg_InitRendering', 520474),\n",
" (u'PContent::Msg_InitProfiler', 520474),\n",
" (u'PContent::Msg_InitServiceWorkers', 520474),\n",
" (u'PContent::Msg_RemoteType', 520474),\n",
" (u'PContent::Msg_AppInfo', 520474),\n",
" (u'PContent::Msg_InitBlobURLs', 520474),\n",
" (u'PContent::Msg_InitProcessHangMonitor', 520444),\n",
" (u'nsObserverService::RegisterReporter', 520370),\n",
" (u'AddPreferencesMemoryReporterRunnable', 520358),\n",
" (u'nsContentUtils::UserInteractionObserver::Init', 520334),\n",
" (u'AddConsolePrefWatchers', 520329),\n",
" (u'Background::ChildImpl::OpenChildProcessActorRunnable', 520307),\n",
" (u'RunnableFunction', 520115),\n",
" (u'PContent::Msg_SetProcessSandbox', 520071),\n",
" (u'RegisterObserverRunnable(labeled)', 518369),\n",
" (u'WindowDestroyedEvent', 501088),\n",
" (u'dom::nsResumeTimeoutsEvent(labeled)', 498735),\n",
" (u'ScriptLoaderRunnable', 483262),\n",
" (u'dom::MainThreadFetchRunnable', 466557),\n",
" (u'PBrowser::Msg_CompositionEvent(labeled)', 461588),\n",
" (u'PDocAccessible::Msg___delete__(labeled)', 456452),\n",
" (u'PStorage::Msg_OriginsHavingData', 456246),\n",
" (u'dom::workers::FinishResponse', 447741),\n",
" (u'PHttpChannel::Msg_ReportSecurityMessage(labeled)', 438879),\n",
" (u'PWebSocket::Msg_OnStop(labeled)', 436452),\n",
" (u'nsNativeTheme(labeled)', 431478),\n",
" (u'crashreporter::LSPAnnotationGatherer::Annotate', 428291),\n",
" (u'dom::CallDispatchConnectionCloseEvents', 423643),\n",
" (u'PContent::Msg_SetAudioSessionData', 423020),\n",
" (u'CheckPluginStopEvent', 421433),\n",
" (u'EncodingCompleteEvent', 420914),\n",
" (u'nsAutoFocusEvent', 418745),\n",
" (u'PWebSocket::Msg___delete__(labeled)', 417551),\n",
" (u'ProxyReleaseEvent for HeapAllocatedCallback', 404855),\n",
" (u'PBackgroundIDBFactoryRequest::Msg___delete__(labeled)', 377726),\n",
" (u'PWebSocket::Msg_OnStart(labeled)', 369601),\n",
" (u'HashchangeCallback(labeled)', 368139),\n",
" (u'PBrowser::Msg_LoadURL(labeled)', 364499),\n",
" (u'WebrtcVideoConduit::WebrtcVideoConduit', 360240),\n",
" (u'dom::CallbackRunnable(labeled)', 354094),\n",
" (u'PaintTimerCallBack(labeled)', 347813),\n",
" (u'nsJARChannel::FireOnProgress', 340521),\n",
" (u'CompositableForwarder(labeled)', 308671),\n",
" (u'PBackgroundIDBFactory::Msg_PBackgroundIDBDatabaseConstructor(labeled)',\n",
" 295506),\n",
" (u'net::DNSRequestChild::StartRequest(labeled)', 284927),\n",
" (u'PDNSRequest::Msg_LookupCompleted(labeled)', 284849),\n",
" (u'ChildImpl::Release', 283743),\n",
" (u'PWebSocket::Msg_OnServerClose(labeled)', 268741),\n",
" (u'gfxFontInfoLoader::StartLoader', 268547),\n",
" (u'FontInfoLoadCompleteEvent', 267979),\n",
" (u'ShutdownThreadEvent', 267923),\n",
" (u'WorkerThreadPrimaryRunnable::FinishedRunnable', 257257),\n",
" (u'PTCPSocket::Msg_UpdateBufferedAmount(labeled)', 255264),\n",
" (u'PHal::Msg_NotifySensorChange', 253890),\n",
" (u'dom::workers::WorkerMainThreadRunnable', 240798),\n",
" (u'GlobalAllocPolicy::GlobalAllocPolicy(labeled)', 240601),\n",
" (u'imgRequestProxy::OnLoadComplete(labeled)', 238438),\n",
" (u'ScriptPreloader::DoFinishOffThreadDecode', 231895),\n",
" (u'CallbackCaller(labeled)', 225986),\n",
" (u'PMessagePort::Msg___delete__', 224186),\n",
" (u'PBackgroundIDBDatabase::Msg___delete__(labeled)', 214760),\n",
" (u'nsSimplePluginEvent', 203683),\n",
" (u'nsTextControlFrame::ScrollOnFocusEvent(labeled)', 196349),\n",
" (u'nsContentSink::DoProcessLinkHeader', 194066),\n",
" (u'PBackgroundIDBFactory::Msg___delete__(labeled)', 191879),\n",
" (u'nsXMLContentSink::ContinueInterruptedParsingIfEnabled', 188391),\n",
" (u'dom::nsSourceErrorEventRunner(labeled)', 182333),\n",
" (u'imgRequestProxy::BlockOnload(labeled)', 175190),\n",
" (u'PDocAccessible::Msg_ParentCOMProxy(labeled)', 169284),\n",
" (u'TopLevelWorkerFinishedRunnable(labeled)', 169260),\n",
" (u'MainThreadReleaseRunnable(labeled)', 169246),\n",
" (u'PContent::Reply_CreateWindow', 162013),\n",
" (u'dom::StreamReadyRunnable(labeled)', 160207),\n",
" (u'imgRequestProxy::UnblockOnload(labeled)', 160202),\n",
" (u'HTMLMediaElement::QueueLoadFromSourceTask(labeled)', 158527),\n",
" (u'PPluginInstance::Msg_NPN_ConvertPoint(labeled)', 156494),\n",
" (u'PContent::Msg_UnregisterSheet', 150867),\n",
" (u'RuntimeService::ShutdownIdleThreads', 149727),\n",
" (u'dom::workers::ChangeStateUpdater', 147702),\n",
" (u'PBrowser::Msg_RealTouchEvent(labeled)', 146784),\n",
" (u'dom::TrackEventRunner', 143677),\n",
" (u'nsRefreshTimer(labeled)', 142856),\n",
" (u'PStunAddrsRequest::Msg_OnStunAddrsAvailable(labeled)', 139639),\n",
" (u'PBrowser::Msg_SetKeyboardIndicators(labeled)', 134001),\n",
" (u'PContent::Msg_DataStorageClear', 128470),\n",
" (u'net::ExecuteCallback(labeled)', 114794),\n",
" (u'ProxyReleaseEvent for URLValueData::mURI', 111566),\n",
" (u'PBackground::Msg_PIPCBlobInputStreamConstructor', 110367),\n",
" (u'PServiceWorkerManager::Msg_NotifyRegister', 108913),\n",
" (u'<unknown IPC msg name>', 107140),\n",
" (u'nsAsyncInstantiateEvent', 106244),\n",
" (u'HistoryTracker(labeled)', 103369),\n",
" (u'HTMLMediaElement::ProgressTimerCallback', 103017),\n",
" (u'DelayedRunnable', 102223),\n",
" (u'Empty_microtask_runnable', 99890),\n",
" (u'dom::BlobCreationDoneRunnable(labeled)', 96621),\n",
" (u'net::WebSocketBaseRunnable(labeled)', 96474),\n",
" (u'AbstractThread::Runner for GraphStartedRunnable(labeled)', 93507),\n",
" (u'net::WebSocketBaseRunnable', 92795),\n",
" (u'PContent::Msg_SetConnectivity', 92146),\n",
" (u'PWebSocketEventListener::Msg_FrameReceived(labeled)', 91446),\n",
" (u'nsMemoryReporterManager::DispatchReporter', 88511),\n",
" (u'LoadTimerCallback(labeled)', 88255),\n",
" (u'TopLevelWorkerFinishedRunnable', 87797),\n",
" (u'MainThreadReleaseRunnable', 87797),\n",
" (u'PPluginScriptableObject::Msg_Invoke(labeled)', 82291),\n",
" (u'PBrowser::Msg_AsyncMessage', 81871),\n",
" (u'ServiceWorkerPrivateTimerCallback', 78176),\n",
" (u'PBrowser::Msg_MouseWheelEvent', 77874),\n",
" (u'PBrowser::Msg_LoadRemoteScript', 76944),\n",
" (u'PContent::Msg_ProvideAnonymousTemporaryFile', 75096),\n",
" (u'ChannelMediaDecoder::ResourceCallback::TimerCallback', 73828),\n",
" (u'nsDocShell::FireDummyOnLocationChange(labeled)', 73808),\n",
" (u'AbstractThread::Runner for MediaStreamGraphShutdownThreadRunnable(labeled)',\n",
" 73589),\n",
" (u'media::LambdaRunnable', 72942),\n",
" (u'indexedDB::BackgroundCursorChild::DelayedActionRunnable(labeled)', 71695),\n",
" (u'PHttpChannel::Msg_AssociateApplicationCache(labeled)', 71238),\n",
" (u'SyncRunnable(labeled)', 71113),\n",
" (u'dom::TextTrackManager::UpdateCueDisplay(labeled)', 69621),\n",
" (u'dom::workers::LifeCycleEventCallback', 69067),\n",
" (u'TelemetryIPCAccumulator::ArmIPCTimer(labeled)', 66097),\n",
" (u'PrefChangedUpdateTimerCallback', 64469),\n",
" (u'MediaDecodeTask::OnMetadataRead(labeled)', 64088),\n",
" (u'layers::TextureClientReleaseTask', 62684),\n",
" (u'RequestPromptEvent', 62311),\n",
" (u'dom::workers::GetRegistrationRunnable', 61828),\n",
" (u'PContent::Msg_NotifyAlertsObserver', 61735),\n",
" (u'nsContentSink_timer', 60279),\n",
" (u'nsAutoScrollTimer(labeled)', 59950),\n",
" (u'PPluginInstance::Msg_PluginFocusChange(labeled)', 59018),\n",
" (u'nsCallRequestFullScreen(labeled)', 57192),\n",
" (u'dom::HTMLTrackElement::DispatchTrustedEvent(labeled)', 54695),\n",
" (u'net::HttpChannelChild::TrySendDeletingChannel(labeled)', 54450),\n",
" (u'nsDocShell::RestorePresentationEvent(labeled)', 54198),\n",
" (u'nsRefreshDriver::DoRefresh(labeled)', 54105),\n",
" (u'dom::asmjscache::FileDescriptorHolder', 53428),\n",
" (u'IDBDatabase::NoteInactiveTransactionDelayed(labeled)', 53125),\n",
" (u'PWebSocket::Msg_OnAcknowledge', 52588),\n",
" (u'net::MsgEvent', 51287),\n",
" (u'PStreamNotify::Msg_RedirectNotifyResponse(labeled)', 51018),\n",
" (u'dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed(labeled)',\n",
" 50271),\n",
" (u'PServiceWorkerManager::Msg_NotifyUnregister', 49236),\n",
" (u'PTCPSocket::Msg___delete__(labeled)', 48747),\n",
" (u'PHttpChannel::Msg_FailedAsyncOpen(labeled)', 47668),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_NPNVnetscapeWindow(labeled)', 47448),\n",
" (u'HTMLMediaElement::nsResolveOrRejectPendingPlayPromisesRunner', 46901),\n",
" (u'PContent::Msg_EndDragSession', 46584),\n",
" (u'AbstractThread::Runner for dom::StateChangeTask(labeled)', 44694),\n",
" (u'ProxyReleaseEvent for nsDOMDataChannel::mSelfRef(labeled)', 44526),\n",
" (u'PWebSocket::Msg_OnMessageAvailable', 44317),\n",
" (u'dom::workers::WorkerProxyToMainThreadRunnable(labeled)', 43917),\n",
" (u'PContent::Msg_LastPrivateDocShellDestroyed', 43858),\n",
" (u'psm::SyncRunnableBase', 43831),\n",
" (u'PHttpChannel::Msg_FinishInterceptedRedirect(labeled)', 43339),\n",
" (u'net::HttpChannelChild::FinishInterceptedRedirect', 43338),\n",
" (u'ChromiumCDMProxy::ResolvePromise', 43080),\n",
" (u'PrefChangedUpdateTimerCallback(labeled)', 42666),\n",
" (u'CharSetChangingRunnable', 42314),\n",
" (u'Notification::CreateAndShow(labeled)', 41964),\n",
" (u'nsBrowserStatusFilter::TimeoutHandler', 41919),\n",
" (u'PWebSocket::Msg_OnBinaryMessageAvailable', 40281),\n",
" (u'nsFormFillController::MaybeStartControllingInput', 39596),\n",
" (u'dom::workers::GetReadyPromiseRunnable', 39133),\n",
" (u'BeginConsumeBodyRunnable', 39128),\n",
" (u'dom::HTMLMediaElement::DoRemoveSelfReference', 38329),\n",
" (u'QuitTask', 38317),\n",
" (u'OggDemuxer::~OggDemuxer(labeled)', 37979),\n",
" (u'ShutdownThreadEvent(labeled)', 37659),\n",
" (u'PBrowser::Msg_SynthMouseMoveEvent', 35507),\n",
" (u'PContent::Msg_AddPermission', 34525),\n",
" (u'nsPresContext::UIResolutionChangedInternal(labeled)', 34443),\n",
" (u'SimpleTimerBasedRefreshDriverTimer::StartTimer', 34275),\n",
" (u'OnTransportStatusAsyncEvent(labeled)', 34125),\n",
" (u'PMedia::Msg_GetPrincipalKeyResponse', 33856),\n",
" (u'nsPresContext::ThemeChangedInternal(labeled)', 33699),\n",
" (u'Notification::Close(labeled)', 33414),\n",
" (u'setInterval() in Timer.jsm', 31836),\n",
" (u'POfflineCacheUpdate::Msg_Finish', 30446),\n",
" (u'PExternalHelperApp::Msg___delete__', 29792),\n",
" (u'PSpeechSynthesis::Msg_VoiceAdded', 29668),\n",
" (u'PContent::Msg_GeolocationUpdate', 29460),\n",
" (u'PDocAccessible::Msg_RestoreFocus(labeled)', 29128),\n",
" (u'PChannelDiverter::Msg___delete__', 28468),\n",
" (u'HttpChannelChild::Resume(labeled)', 28405),\n",
" (u'PBrowser::Msg_ThemeChanged(labeled)', 28224),\n",
" (u'nsParserContinueEvent', 27827),\n",
" (u'POfflineCacheUpdate::Msg_AssociateDocuments', 27449),\n",
" (u'PBrowser::Msg_UpdateDimensions', 26894),\n",
" (u'RequestSendLocationEvent', 26812),\n",
" (u'SHMEM_CREATED_MESSAGE(labeled)', 26810),\n",
" (u'PFTPChannel::Msg_OnDataAvailable(labeled)', 26163),\n",
" (u'nsSliderFrame(labeled)', 25810),\n",
" (u'dom::EventSourceImpl::AnnounceConnection', 24805),\n",
" (u'AbstractThread::Runner for DispatchKeyNeededEvent(labeled)', 24640),\n",
" (u'PPluginInstance::Msg_NPN_PushPopupsEnabledState(labeled)', 24436),\n",
" (u'sReflowContinueCallback(labeled)', 24217),\n",
" (u'PPluginInstance::Msg_NPN_PopPopupsEnabledState(labeled)', 24181),\n",
" (u'ProxyReleaseEvent for MediaStreamGraphImpl::CurrentDriver(labeled)',\n",
" 23747),\n",
" (u'dom::workers::CheckScriptEvaluationWithCallback::ReportFetchFlag', 23462),\n",
" (u'dom::workers::ServiceWorkerManager::FireUpdateFoundOnServiceWorkerRegistrations',\n",
" 23426),\n",
" (u'dom::workers::ServiceWorkerManager::FireControllerChange', 22231),\n",
" (u'PHttpChannel::Msg_LogBlockedCORSRequest(labeled)', 22047),\n",
" (u'InternalLoadEvent(labeled)', 21739),\n",
" (u'gfx::gfxWindowsPlatform::SchedulePaintIfDeviceReset', 21543),\n",
" (u'dom::workers::GetRegistrationsRunnable', 21304),\n",
" (u'PContent::Msg_ActivateA11y', 21108),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_SupportsAsyncDXGISurface(labeled)',\n",
" 21076),\n",
" (u'WorkerScopeSkipWaitingRunnable', 20960),\n",
" (u'PBackgroundIDBDatabase::Msg_PBackgroundIDBVersionChangeTransactionConstructor(labeled)',\n",
" 20861),\n",
" (u'PBackgroundIDBVersionChangeTransaction::Msg_Complete(labeled)', 20855),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_SupportsAsyncBitmapSurface(labeled)',\n",
" 20712),\n",
" (u'dom::AudioChannelService::AudioChannelWindow::MaybeNotifyMediaBlockStart',\n",
" 20533),\n",
" (u'PBackgroundIDBVersionChangeTransaction::Msg___delete__(labeled)', 20430),\n",
" (u'ClaimRunnable', 20178),\n",
" (u'PBrowser::Msg_HandleTap(labeled)', 20166),\n",
" (u'dom::WorkerListener::StartListeningForEvents', 20132),\n",
" (u'PBrowser::Msg_RealMouseButtonEvent', 19765),\n",
" (u'dom::WorkerListener::StopListeningForEvents', 19017),\n",
" (u'gfxFontInfoLoader::FinalizeLoader', 18689),\n",
" (u'PAsmJSCacheEntry::Msg_OnOpenCacheFile', 18186),\n",
" (u'PPluginScriptableObject::Msg___delete__', 17644),\n",
" (u'PContent::Msg_BidiKeyboardNotify', 17392),\n",
" (u'nsPagePrintTimer(labeled)', 16773),\n",
" (u'gmp::ChromiumCDMParent::RecvOnSessionMessage', 16332),\n",
" (u'PContent::Msg_NotifyEmptyHTTPCache', 16325),\n",
" (u'nsBindingManager::DoProcessAttachedQueue', 16132),\n",
" (u'PChildToParentStream::Msg___delete__', 16076),\n",
" (u'PAsmJSCacheEntry::Msg_OnOpenMetadataForRead', 15733),\n",
" (u'ChromiumCDMProxy::OnSetSessionId', 15318),\n",
" (u'nsAsyncRedirectVerifyHelper', 14971),\n",
" (u'nsAsyncVerifyRedirectCallbackEvent', 14969),\n",
" (u'PBrowser::Msg_SetDocShellIsActive', 14581),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyDataEnded(labeled)',\n",
" 14419),\n",
" (u'FileCallbackRunnable(labeled)', 14361),\n",
" (u'PCompositorBridge::Msg_DidComposite', 14166),\n",
" (u'PHttpChannel::Msg_Redirect1Begin', 14056),\n",
" (u'PHttpChannel::Msg_Redirect3Complete', 14004),\n",
" (u'PNecko::Reply_GetExtensionStream', 13742),\n",
" (u'dom::EventSourceImpl::ReestablishConnection', 13698),\n",
" (u'PContent::Msg_PFileDescriptorSetConstructor', 13650),\n",
" (u'ChromiumCDMProxy::OnCDMCreated(labeled)', 13640),\n",
" (u'dom::EventSourceImpl::CloseInternal', 12949),\n",
" (u'PAsmJSCacheEntry::Msg___delete__', 12579),\n",
" (u'PContent::Msg_InvokeDragSession', 12543),\n",
" (u'PContent::Msg_SetOffline', 12382),\n",
" (u'PPluginInstance::Msg_SetNetscapeWindowAsParent(labeled)', 12262),\n",
" (u'PBrowser::Msg_RealKeyEvent', 12137),\n",
" (u'PAltDataOutputStream::Msg_DeleteSelf(labeled)', 12033),\n",
" (u'PStreamNotify::Msg_RedirectNotifyResponse', 11885),\n",
" (u'ChromiumCDMProxy::Shutdown', 11172),\n",
" (u'DebuggerOnGCRunnable(labeled)', 11132),\n",
" (u'AsyncGetPACURIRequestCallback', 11132),\n",
" (u'AutoUnblockScriptClosing::~AutoUnblockScriptClosing(labeled)', 10979),\n",
" (u'GMPCrashHelper::Destroy(labeled)', 10887),\n",
" (u'dom::EventSourceImpl::SetReconnectionTimeout', 10812),\n",
" (u'PBrowser::Msg_SetUseGlobalHistory', 10483),\n",
" (u'PContent::Msg_ClearImageCache', 10368),\n",
" (u'PFilePicker::Msg___delete__(labeled)', 10331),\n",
" (u'nsPluginHost', 10277),\n",
" (u'ConduitDeleteEvent', 10046),\n",
" (u'PSpeechSynthesis::Msg_IsSpeakingChanged', 9946),\n",
" (u'ProxyReleaseEvent for AsyncGetPACURIRequest::mServiceHolder(labeled)',\n",
" 9380),\n",
" (u'PBrowser::Msg_SetWidgetNativeData', 9361),\n",
" (u'PExternalHelperApp::Msg_Cancel', 8992),\n",
" (u'nsThreadSyncDispatch', 8588),\n",
" (u'nsHtml5DataAvailable', 8502),\n",
" (u'PDocAccessible::Msg_Name(labeled)', 8427),\n",
" (u'ChromiumCDMProxy::OnSessionClosed', 8248),\n",
" (u'nsHtml5StreamParserReleaser', 8159),\n",
" (u'PBrowser::Msg_SwappedWithOtherRemoteLoader(labeled)', 8140),\n",
" (u'PBrowser::Msg_UpdateNativeWindowHandle', 8026),\n",
" (u'ProxyReleaseEvent for WebSocketImpl::mService(labeled)', 7997),\n",
" (u'ProxyReleaseEvent for WebSocketImpl::mChannel(labeled)', 7931),\n",
" (u'PGamepadEventChannel::Msg___delete__', 7859),\n",
" (u'ChromiumCDMProxy::OnExpirationChange', 7843),\n",
" (u'PWebSocket::Msg_OnStop', 7672),\n",
" (u'dom::TrackEventRunner(labeled)', 7654),\n",
" (u'PContent::Msg_NotifyPushSubscriptionModifiedObservers', 7630),\n",
" (u'ScriptLoader::EncodeBytecode', 7498),\n",
" (u'SyncRunnable', 7411),\n",
" (u'PChildToParentStream::Msg_StartReading', 7325),\n",
" (u'PContent::Msg_FileCreationResponse', 7040),\n",
" (u'PWebSocket::Msg___delete__', 6972),\n",
" (u'AsyncResizeEventCallback(labeled)', 6955),\n",
" (u'WorkerGetRunnable', 6896),\n",
" (u'dom::EventSourceImpl::FailConnection', 6887),\n",
" (u'Accessible::TakeFocus', 6787),\n",
" (u'ProxyReleaseEvent for MakePrincipalHandle::nsIPrincipal', 6784),\n",
" (u'ScriptLoaderRunnable::CancelMainThreadWithBindingAborted', 6709),\n",
" (u'widget::AudioSession::OnSessionDisconnectedInternal', 6635),\n",
" (u'PDocAccessible::Msg_Description(labeled)', 6595),\n",
" (u'PBrowser::Msg_RealDragEvent', 6390),\n",
" (u'MozPromise::ThenValueBase::ResolveOrRejectRunnable(labeled)', 6315),\n",
" (u'nsHtml5LoadFlusher', 6089),\n",
" (u'PBrowser::Msg_SuppressDisplayport', 6010),\n",
" (u'PPluginInstance::Msg_NPN_SetValue_NPPVpluginDrawingModel(labeled)', 5984),\n",
" (u'PContent::Msg_PBrowserConstructor', 5962),\n",
" (u'PBrowser::Msg_PRenderFrameConstructor', 5962),\n",
" (u'PBrowser::Msg_Show', 5962),\n",
" (u'PBrowser::Msg_InitRendering', 5962),\n",
" (u'PBrowser::Msg_Destroy', 5935),\n",
" (u'ChromiumCDMProxy::OnKeyStatusesChange', 5872),\n",
" (u'PBroadcastChannel::Msg___delete__', 5788),\n",
" (u'AbstractThread::Runner for PrincipalHandleOrImageSizeChanged(labeled)',\n",
" 5723),\n",
" (u'UpdateContextLossStatusTask', 5648),\n",
" (u'PContent::Msg_UpdateDictionaryList', 5618),\n",
" (u'AbstractThread::Runner for IntrinsicSizeChanged(labeled)', 5526),\n",
" (u'dom::AudioDestinationNode::FireOfflineCompletionEvent', 5500),\n",
" (u'PBrowser::Msg_LoadURL', 5478),\n",
" (u'PWebSocket::Msg_OnStart', 5370),\n",
" (u'PDocAccessible::Msg_CurValue(labeled)', 5272),\n",
" (u'PRemotePrintJob::Msg_PageProcessed(labeled)', 5271),\n",
" (u'MatchAllRunnable', 5224),\n",
" (u'nsAutoRefTraits<nsOwningThreadSourceSurfaceRef>::SurfaceReleaser', 5214),\n",
" (u'PWebSocketEventListener::Msg_FrameSent(labeled)', 5111),\n",
" (u'dom::HTMLMediaElement::StreamSizeListener::ReceivedSize(labeled)', 5104),\n",
" (u'dom::TimerDriver::TimerDriver', 5086),\n",
" (u'PBrowser::Msg_NavigateByKey(labeled)', 4933),\n",
" (u'CSPReportSenderRunnable(labeled)', 4850),\n",
" (u'HTMLMediaElement::VideoDecodeSuspendTimerCallback', 4747),\n",
" (u'PContent::Msg_SetCaptivePortalState', 4534),\n",
" (u'PBrowser::Msg_SwappedWithOtherRemoteLoader', 4521),\n",
" (u'PServiceWorkerManager::Msg_NotifyRemoveAll', 4356),\n",
" (u'WheelTransaction::SetTimeout', 4347),\n",
" (u'ProxyReleaseEvent for Console::mStorage(labeled)', 4308),\n",
" (u'PContent::Msg_AudioDefaultDeviceChange', 4212),\n",
" (u'dom::MainThreadFetchRunnable(labeled)', 4211),\n",
" (u'PPluginInstance::Msg_InitDXGISurface(labeled)', 4078),\n",
" (u'imgRequestProxy::Notify', 3988),\n",
" (u'net::HttpBaseChannel::EnsureUploadStreamIsCloneableComplete', 3976),\n",
" (u'DelayedFireSingleTapEvent(labeled)', 3950),\n",
" (u'net::HttpChannelChild::AsyncCall', 3934),\n",
" (u'PSpeechSynthesisRequest::Msg_OnResume', 3913),\n",
" (u'PSpeechSynthesisRequest::Msg_OnPause', 3912),\n",
" (u'PDocAccessible::Msg_Extents(labeled)', 3889),\n",
" (u'PSpeechSynthesis::Msg_InitialVoicesAndState', 3838),\n",
" (u'PContent::Msg_PushWithData', 3818),\n",
" (u'dom::CreateImageBitmapFromBlobTask', 3804),\n",
" (u'HandleNumberControlSpin(labeled)', 3664),\n",
" (u'PHttpChannel::Msg_IssueDeprecationWarning(labeled)', 3656),\n",
" (u'PPluginInstance::Msg_RevokeCurrentDirectSurface(labeled)', 3635),\n",
" (u'PWebBrowserPersistDocument::Msg___delete__', 3545),\n",
" (u'ProxyReleaseEvent for Console::mSandbox(labeled)', 3520),\n",
" (u'PBrowser::Msg_StopIMEStateManagement', 3426),\n",
" (u'dom::LoadStartDetectionRunnable', 3393),\n",
" (u'GetRunnable', 3377),\n",
" (u'nsExternalAppHandler', 3360),\n",
" (u'PPrintSettingsDialog::Msg___delete__(labeled)', 3262),\n",
" (u'dom::AsyncTeardownRunnable', 3240),\n",
" (u'ChromeTooltipListener::MouseMove', 3071),\n",
" (u'PDocAccessible::Msg_CaretOffset(labeled)', 3008),\n",
" (u'PContent::Msg_VarUpdate', 2976),\n",
" (u'net::CancelDNSRequestEvent(labeled)', 2974),\n",
" (u'ProxyReleaseEvent for AudioProxyThread::mConduit(labeled)', 2954),\n",
" (u'AbstractThread::Runner for MozPromise::ThenValueBase::ResolveOrRejectRunnable',\n",
" 2832),\n",
" (u'PSpeechSynthesis::Msg_NotifyVoicesChanged', 2818),\n",
" (u'PDocAccessible::Msg_CharBounds(labeled)', 2668),\n",
" (u'PBrowser::Msg_SetKeyboardIndicators', 2667),\n",
" (u'nsIDocument::SelectorCache', 2632),\n",
" (u'PBrowser::Msg_SizeModeChanged', 2573),\n",
" (u'dom::HTMLMediaElement::WakeLockBoolWrapper::UpdateWakeLock', 2535),\n",
" (u'PVRLayer::Msg___delete__(labeled)', 2516),\n",
" (u'PPluginInstance::Msg_FinalizeDXGISurface(labeled)', 2435),\n",
" (u'FinalizationEvent', 2417),\n",
" (u'nsHtml5StreamParserContinuation', 2360),\n",
" (u'dom::CancelWebSocketRunnable', 2329),\n",
" (u'PContent::Msg_PWebBrowserPersistDocumentConstructor', 2321),\n",
" (u'PPrinting::Msg_PRemotePrintJobConstructor(labeled)', 2312),\n",
" (u'nsPrintCompletionEvent(labeled)', 2308),\n",
" (u'PPrintProgressDialog::Msg_DialogOpened(labeled)', 2307),\n",
" (u'PRemotePrintJob::Msg_PrintInitializationResult(labeled)', 2292),\n",
" (u'PRemotePrintJob::Msg___delete__(labeled)', 2292),\n",
" (u'PHttpChannel::Msg_SetPriority', 2252),\n",
" (u'dom::TeardownURLRunnable', 2230),\n",
" (u'PVRManager::Msg_ReplyGamepadVibrateHaptic', 2209),\n",
" (u'PColorPicker::Msg_Update(labeled)', 2197),\n",
" (u'dom::workers::CancelChannelRunnable', 2111),\n",
" (u'MinimizeMemoryUsageRunnable', 2108),\n",
" (u'Notification::CreateAndShow', 2103),\n",
" (u'nsHtml5TimerKungFu', 2076),\n",
" (u'nsHtml5RequestStopper', 2073),\n",
" (u'PCompositorBridge::Msg_SharedCompositorFrameMetrics', 2059),\n",
" (u'PCompositorBridge::Msg_ReleaseSharedCompositorFrameMetrics', 2055),\n",
" (u'PBrowser::Msg_UIResolutionChanged', 2040),\n",
" (u'ipc::MessageChannel::OnNotifyMaybeChannelError', 2019),\n",
" (u'dom::FileCreatedRunnable(labeled)', 1968),\n",
" (u'PBackgroundIDBDatabase::Msg_VersionChange(labeled)', 1893),\n",
" (u'PWebBrowserPersistDocument::Msg_SetPersistFlags', 1846),\n",
" (u'PWebBrowserPersistDocument::Msg_PWebBrowserPersistResourcesConstructor',\n",
" 1825),\n",
" (u'PContent::Msg_ReinitRenderingForDeviceReset', 1824),\n",
" (u'PWyciwygChannel::Msg_OnStopRequest(labeled)', 1801),\n",
" (u'PWyciwygChannel::Msg_OnStartRequest(labeled)', 1801),\n",
" (u'PContent::Msg_Shutdown', 1793),\n",
" (u'PWebBrowserPersistDocument::Msg_PWebBrowserPersistSerializeConstructor',\n",
" 1680),\n",
" (u'PContent::Msg_FlushMemory', 1677),\n",
" (u'PBackgroundIDBFactoryRequest::Msg_Blocked(labeled)', 1644),\n",
" (u'nsHtml5ExecutorFlusher', 1592),\n",
" (u'PWyciwygChannel::Msg_OnDataAvailable(labeled)', 1541),\n",
" (u'GetUserMediaNotificationEvent', 1495),\n",
" (u'AbstractThread::Runner for media-runnable_args_base(labeled)', 1476),\n",
" (u'PPluginInstance::Msg_PPluginSurfaceConstructor(labeled)', 1452),\n",
" (u'ServiceWorkerClientPostMessageRunnable', 1451),\n",
" (u'LogToBrowserConsole(labeled)', 1438),\n",
" (u'net::ExecuteCallback', 1394),\n",
" (u'PPluginScriptableObject::Msg_GetParentProperty(labeled)', 1361),\n",
" (u'nsPresContextType::RunWillPaintObservers', 1360),\n",
" (u'ChannelLoader::LoadInternal', 1322),\n",
" (u'nsIInterceptedChannel::ResetInterception', 1322),\n",
" (u'dom::HTMLCanvasPrintState::NotifyDone', 1277),\n",
" (u'dom::HTMLCanvasElement::CallPrintCallback(labeled)', 1277),\n",
" (u'dom::CreateBlobRunnable(labeled)', 1244),\n",
" (u'PContent::Msg_InitGMPService', 1235),\n",
" (u'media-runnable_args_base(labeled)', 1235),\n",
" (u'PBroadcastChannel::Msg_Notify', 1227),\n",
" (u'AsyncWaitRunnable(labeled)', 1224),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_NPNVdocumentOrigin(labeled)', 1204),\n",
" (u'PHttpChannel::Msg_ReportSecurityMessage', 1173),\n",
" (u'dom::NotifyObserversTask', 1126),\n",
" (u'GASRunnable(labeled)', 1090),\n",
" (u'PWebSocket::Msg_OnServerClose', 1084),\n",
" (u'PFileDescriptorSet::Msg___delete__', 1081),\n",
" (u'net::HttpChannelChild::OnTransportAndData', 1075),\n",
" (u'WaitUntilHandler::ReportOnMainThread', 1063),\n",
" (u'RequestAllowEvent', 1047),\n",
" (u'nsPresContext::ThemeChangedInternal', 1044),\n",
" (u'PContent::Msg_ReinitRendering', 1020),\n",
" (u'PAltDataOutputStream::Msg_Error(labeled)', 1012),\n",
" (u'PPluginInstance::Msg_NPN_GetValue_PreferredDXGIAdapter(labeled)', 1006),\n",
" (u'PContent::Msg_RequestMemoryReport', 997),\n",
" (u'dom::nsResumeTimeoutsEvent', 931),\n",
" (u'net::HttpChannelChild::OverrideRunnable', 914),\n",
" (u'ProxyReleaseEvent for CheckScriptEvaluationWithCallback::mKeepAliveToken',\n",
" 875),\n",
" (u'ProxyReleaseEvent for CheckScriptEvaluationWithCallback::mServiceWorkerPrivate',\n",
" 875),\n",
" (u'NotifyObservers', 870),\n",
" (u'PAPZ::Msg_NotifyAsyncScrollbarDragRejected(labeled)', 866),\n",
" (u'dom::MediaRecorder::Session::PushBlobRunnable', 860),\n",
" (u'dom::MediaRecorder::Session::EncoderErrorNotifierRunnable', 860),\n",
" (u'nsTransformBlockerEvent', 828),\n",
" (u'dom::HTMLMediaElement::AudioChannelAgentCallback::MaybeNotifyMediaResumed',\n",
" 826),\n",
" (u'MediaManager::SendPendingGUMRequest', 812),\n",
" (u'GetUserMediaStreamRunnable', 812),\n",
" (u'SourceListener::NotifyRemoved', 738),\n",
" (u'ProxyReleaseEvent for nsConsoleService::retiredMessage(labeled)', 721),\n",
" (u'dom::PostMessageRunnable', 709),\n",
" (u'PPluginScriptableObject::Msg_Unprotect(labeled)', 658),\n",
" (u'PDocAccessible::Msg_TableIsProbablyForLayout(labeled)', 650),\n",
" (u'PBrowser::Msg_MenuKeyboardListenerInstalled', 634),\n",
" (u'layers::ReleaseOnMainThreadTask(labeled)', 608),\n",
" (u'LayerTransactionChild::Destroy(labeled)', 608),\n",
" (u'Background::ChildImpl::AlreadyCreatedCallbackRunnable', 600),\n",
" (u'dom::FontFaceSet::CheckLoadingFinishedAfterDelay', 584),\n",
" (u'SourceListener::NotifyFinished', 582),\n",
" (u'PDocAccessible::Msg_CharacterCount(labeled)', 547),\n",
" (u'AbstractThread::Runner for BenchmarkPlayback::Output', 540),\n",
" (u'PContent::Msg_MinimizeMemoryUsage', 527),\n",
" (u'Notification::Close', 484),\n",
" (u'dom::FulfillImageBitmapPromiseTask', 477),\n",
" (u'nsPACMan::StartLoading', 473),\n",
" (u'PDocAccessible::Msg_URL(labeled)', 471),\n",
" (u'dom::GetSubscriptionRunnable', 468),\n",
" (u'nsGeolocationRequest::TimerCallbackHolder', 454),\n",
" (u'PDocAccessible::Msg_LandmarkRole(labeled)', 413),\n",
" (u'GmpInitDoneRunnable', 411),\n",
" (u'PDocAccessible::Msg_ARIARoleAtom(labeled)', 409),\n",
" (u'PFileSystemRequest::Msg___delete__(labeled)', 380),\n",
" (u'nsFontFaceLoader::LoadTimerCallback(labeled)', 376),\n",
" (u'PPluginSurface::Msg___delete__(labeled)', 375),\n",
" (u'PHttpChannel::Msg_LogBlockedCORSRequest', 361),\n",
" (u'PDocAccessible::Msg_GetTextAtOffset(labeled)', 349),\n",
" (u'PDocAccessible::Msg_SelectionBoundsAt(labeled)', 349),\n",
" (u'PDocAccessible::Msg_TextSubstring(labeled)', 349),\n",
" (u'dom::BlobCreationDoneRunnable', 341),\n",
" (u'dom::MediaRecorder::Session::DispatchStartEventRunnable', 338),\n",
" (u'dom::MediaRecorder::Session::DestroyRunnable', 338),\n",
" (u'EmptyEntriesCallbackRunnable(labeled)', 326),\n",
" (u'PointerLockRequest(labeled)', 318),\n",
" (u'imgRequestProxy::OnLoadComplete', 294),\n",
" (u'PBrowser::Msg_SelectionEvent(labeled)', 293),\n",
" (u'PFTPChannel::Msg_OnStartRequest(labeled)', 288),\n",
" (u'ipc::TaskFactory::RunnableMethod', 286),\n",
" (u'nsPACMan::StartLoading(labeled)', 280),\n",
" (u'imgRequestProxy::BlockOnload', 273),\n",
" (u'imgRequestProxy::UnblockOnload', 262),\n",
" (u'AbstractThread::Runner for ChannelMediaDecoder::ResourceCallback::NotifyDataEnded',\n",
" 260),\n",
" (u'PSpeechSynthesis::Msg_SetDefaultVoice', 252),\n",
" (u'ChromiumCDMProxy::OnSessionError', 250),\n",
" (u'PStorage::Msg_Error', 245),\n",
" (u'PBrowser::Msg_HandleAccessKey(labeled)', 244),\n",
" (u'Runnable', 240),\n",
" (u'PDocAccessible::Msg_ParentCOMProxy', 236),\n",
" (u'PDocAccessible::Msg_RelationByType(labeled)', 223),\n",
" (u'PFTPChannel::Msg_OnStopRequest(labeled)', 223),\n",
" (u'DestroyViewerEvent(labeled)', 202),\n",
" (u'nsPluginCrashedEvent', 197),\n",
" (u'PContent::Msg_Push', 189),\n",
" (u'dom::workers::WorkerPrivate::MemoryReporter::FinishCollectRunnable(labeled)',\n",
" 187),\n",
" (u'PDocAccessible::Msg_Text(labeled)', 178),\n",
" (u'PHttpChannel::Msg_AssociateApplicationCache', 177),\n",
" (u'PBackgroundIDBDatabase::Msg_Invalidate(labeled)', 177),\n",
" (u'PBackgroundIDBDatabase::Msg_CloseAfterInvalidationComplete(labeled)', 177),\n",
" (u'PServiceWorkerManager::Msg_NotifyRemove', 169),\n",
" (u'CompositorBridgeChild::AfterDestroy', 168),\n",
" (u'PAPZ::Msg_NotifyAutoscrollHandledByAPZ(labeled)', 152),\n",
" (u'net::PACLoadComplete', 145),\n",
" (u'PContent::Msg_GeolocationError', 142),\n",
" (u'PContent::Msg_UpdateAppLocales', 136),\n",
" (u'net::PACLoadComplete(labeled)', 135),\n",
" (u'AsyncPaintWaitEvent', 130),\n",
" (u'PContent::Msg_PushSubscriptionChange', 124),\n",
" (u'nsFocusManager::RaiseWindow', 120),\n",
" (u'PMessagePort::Msg_StopSendingDataConfirmed', 112),\n",
" (u'PWebAuthnTransaction::Msg_ConfirmSign', 89),\n",
" (u'PWebSocketEventListener::Msg___delete__(labeled)', 87),\n",
" (u'PDocAccessible::Msg___delete__', 83),\n",
" (u'net::WaitForThreadShutdown', 78),\n",
" (u'PQuotaUsageRequest::Msg___delete__', 77),\n",
" (u'PBrowser::Msg_SetOriginAttributes(labeled)', 71),\n",
" (u'PBrowser::Msg_SetWindowName(labeled)', 69),\n",
" (u'PContent::Msg_DomainSetChanged', 68),\n",
" (u'PPluginInstance::Msg_NPN_GetURL(labeled)', 68),\n",
" (u'PPluginSurface::Msg___delete__', 67),\n",
" (u'RegisterDebuggerMainThreadRunnable', 65),\n",
" (u'dom::XMLHttpRequestMainThread::CloseRequestWithError', 64),\n",
" (u'PFTPChannel::Msg_FlushedForDiversion(labeled)', 63),\n",
" (u'PFTPChannel::Msg_DivertMessages(labeled)', 63),\n",
" (u'PFTPChannel::Msg_DeleteSelf(labeled)', 62),\n",
" (u'PChildToParentStream::Msg_RequestClose', 60),\n",
" (u'FileReader(labeled)', 56),\n",
" (u'PBrowser::Msg_SetWindowName', 53),\n",
" (u'CheckResponsivenessTask', 49),\n",
" (u'PHttpChannel::Msg_FailedAsyncOpen', 49),\n",
" (u'PBrowser::Msg_HandledWindowedPluginKeyEvent(labeled)', 48),\n",
" (u'PPluginInstance::Msg_OnWindowedPluginKeyEvent(labeled)', 48),\n",
" (u'PDocAccessible::Msg_Attributes(labeled)', 47),\n",
" (u'dom::WebAudioUtils::LogToDeveloperConsole(labeled)', 45),\n",
" (u'ChromiumCDMProxy::RejectPromise', 44),\n",
" (u'PWebAuthnTransaction::Msg_ConfirmRegister', 42),\n",
" (u'PColorPicker::Msg___delete__(labeled)', 42),\n",
" (u'ScriptErrorRunnable(labeled)', 41),\n",
" (u'nsChannelClassifier::NotifyTrackingProtectionDisabled', 41),\n",
" (u'dom::workers::PushErrorReporter::ReportOnMainThread', 40),\n",
" (u'PWebAuthnTransaction::Msg_Cancel', 37),\n",
" (u'AbstractThread::Runner for AsyncCubebTask::EnsureThread', 35),\n",
" (u'EventStateManager::CreateClickHoldTimer(labeled)', 32),\n",
" (u'PContent::Msg_UpdateRequestedLocales', 32),\n",
" (u'PPluginScriptableObject::Msg_InvokeDefault(labeled)', 31),\n",
" (u'AsyncTaskRunnable', 30),\n",
" (u'dom::ThreadInitializeRunnable(labeled)', 29),\n",
" (u'PContent::Msg_GarbageCollect', 29),\n",
" (u'PContent::Msg_CycleCollect', 29),\n",
" (u'PRemotePrintJob::Msg_AbortPrint(labeled)', 25),\n",
" (u'net::WaitForThreadShutdown(labeled)', 24),\n",
" (u'nsHtml5StreamParser::DoDataAvailable', 24),\n",
" (u'PBrowser::Msg_AwaitLargeAlloc(labeled)', 23),\n",
" (u'UnregisterDebuggerMainThreadRunnable', 22),\n",
" (u'dom::CallbackRunnable', 22),\n",
" (u'PServiceWorkerManager::Msg_NotifySoftUpdate', 20),\n",
" (u'dom::U2FSignRunnable::Run(labeled)', 18),\n",
" (u'ProxyReleaseEvent for U2FSignRunnable::mCallback', 18),\n",
" (u'PBrowser::Reply_BrowserFrameOpenWindow(labeled)', 17),\n",
" (u'PContent::Msg_PCycleCollectWithLogsConstructor', 16),\n",
" (u'dom::nsSourceErrorEventRunner', 16),\n",
" (u'dom::workers::WorkerPrivate::MemoryReporter::FinishCollectRunnable', 15),\n",
" (u'PointerUnlocker', 14),\n",
" (u'PDocAccessible::Msg_NativeState(labeled)', 14),\n",
" (u'PBrowser::Msg_ThemeChanged', 14),\n",
" (u'PPSMContentDownloader::Msg___delete__', 14),\n",
" (u'PDocAccessible::Msg_Value(labeled)', 14),\n",
" (u'PPluginInstance::Msg_NPN_GetValueForURL(labeled)', 14),\n",
" (u'ReportFetchListenerWarningRunnable', 14),\n",
" (u'PDocAccessible::Msg_Title(labeled)', 13),\n",
" (u'PDocAccessible::Msg_GetLevelInternal(labeled)', 13),\n",
" (u'PDocAccessible::Msg_EmulatedWindow(labeled)', 12),\n",
" (u'WebCore::HRTFDatabaseLoader::ProxyReleaseEvent', 12),\n",
" (u'dom::StreamReadyRunnable', 11),\n",
" (u'IMENotificationSender', 11),\n",
" (u'AbstractThread::Runner for detail::Listener::ApplyWithNoArgs(labeled)',\n",
" 10),\n",
" (u'dom::StartUnregisterRunnable', 9),\n",
" (u'ClientFocusRunnable', 9),\n",
" (u'PContent::Msg_GetFilesResponse', 8),\n",
" (u'indexedDB::BackgroundRequestChild::PreprocessHelper(labeled)', 7),\n",
" (u'PBackgroundIDBRequest::Msg_Preprocess(labeled)', 7),\n",
" (u'nsFrameLoaderDestroyRunnable', 7),\n",
" (u'PBrowser::Msg_CompositionEvent', 7),\n",
" (u'HTMLMediaElement::QueueLoadFromSourceTask', 6),\n",
" (u'nsFtpChildAsyncAlert(labeled)', 6),\n",
" (u'AbstractThread::Runner for FinishCollectRunnable(labeled)', 5),\n",
" (u'PWebrtcGlobal::Msg_GetStatsRequest', 5),\n",
" (u'XPCJSRuntime::DoCycleCollectionCallback', 5),\n",
" (u'PWebrtcGlobal::Msg_GetLogRequest', 5),\n",
" (u'dom::U2FTask(labeled)', 4),\n",
" (u'ErrorCallbackRunnable', 4),\n",
" (u'PQuotaRequest::Msg___delete__', 4),\n",
" (u'nsAsyncMessageToChild', 4),\n",
" (u'HTMLMediaElement::NoSupportedMediaSourceError', 3),\n",
" (u'PSpeechSynthesisRequest::Msg_OnBoundary', 2),\n",
" (u'GetUserMediaWindowListener::Remove', 2),\n",
" (u'PContent::Msg_PushError', 2),\n",
" (u'net::HttpChannelChild::TrySendDeletingChannel', 2),\n",
" (u'PSpeechSynthesisRequest::Msg_OnMark', 2),\n",
" (u'ProxyReleaseEvent for U2FRegisterRunnable::mCallback', 2),\n",
" (u'nsHtml5Parser::Terminate', 2),\n",
" (u'dom::U2FRegisterRunnable::Run(labeled)', 2),\n",
" (u'ReleaseMediaOperationResource', 2),\n",
" (u'AbstractThread::Runner for detail::Listener::ApplyWithNoArgs', 2),\n",
" (u'places::Database::EnsureConnection()', 2),\n",
" (u'CompletePesumeRulnable(labeled)', 1),\n",
" (u'nsDocument::UpdateVisibilityState', 1),\n",
" (u'nsDocumentShownDispatcher', 1),\n",
" (u'PDocAccessible::Msg_RestoreFocus', 1),\n",
" (u'dom::ContentChild::AsyncOpenAnonymousTemporaryFile', 1),\n",
" (u'nsPluginDestroyRunnable', 1),\n",
" (u'dom::workers::ServiceWorkerRegistrationInfo::FinishActivate', 1),\n",
" (u'dom::UpdateRunnable', 1),\n",
" (u'dom::UnsubscribeRunnable', 1),\n",
" (u'nsImageBoxFrameEvent(labeled)', 1),\n",
" (u'dom::HTMLCanvasElement::ToBlob(labeled)', 1),\n",
" (u'PBrowser::Msg_Print', 1),\n",
" (u'PBrowser::Msg_NavigateByKey', 1),\n",
" (u'NotifyOffThreadScriptCompletedRunnable', 1)]"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[ (name, v) for (name, v) in freq_filt ]"
]
},
{
"cell_type": "code",
"execution_count": 23,
"metadata": {
"collapsed": false
},
"outputs": [
{
"data": {
"text/plain": [
"(139, 101, 39)"
]
},
"execution_count": 23,
"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": 24,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0.952210985863\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": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"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