summaryrefslogtreecommitdiffstats
path: root/tools/heapcheck/suppressions.txt
blob: e8f86494f958a3b7f1ad6088a64338178c9f0a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
# There are three kinds of suppressions in this file.
# 1. third party stuff we have no control over
#
# 2. intentional unit test errors, or stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing
#
# 3. Suppressions for real chromium bugs that are not yet fixed.
# These should all be in chromium's bug tracking system (but a few aren't yet).
# Periodically we should sweep this file and the bug tracker clean by
# running overnight and removing outdated bugs/suppressions.
#-----------------------------------------------------------------------

# 1. third party stuff we have no control over
{
  bug_39050_a
  Heapcheck:Leak
  fun:FcPatternObjectAddWithBinding
}
{
  bug_39050_b
  Heapcheck:Leak
  fun:FcPatternObjectInsertElt
}
{
  bug_39050_c
  Heapcheck:Leak
  fun:FcConfigValues
}
{
  bug_39050_d
  Heapcheck:Leak
  fun:IA__FcLangSetCreate
}
{
  bug_39050_d2
  Heapcheck:Leak
  fun:FcLangSetCreate
}
{
  bug_39050_e
  Heapcheck:Leak
  fun:IA__FcStrCopy
}
{
  bug_39050_e2
  Heapcheck:Leak
  fun:FcStrCopy
}
{
  bug_39050_f
  Heapcheck:Leak
  fun:FcValueSave
}
{
  bug_39050_g
  Heapcheck:Leak
  fun:FcPatternHash
}
{
  bug_39050_h
  Heapcheck:Leak
  fun:FcConfigFilename
}
{
  bug_39050_i
  Heapcheck:Leak
  fun:FcCharSetFindLeafCreate
}
{
  bug_39050_j
  Heapcheck:Leak
  fun:FcCharSetPutLeaf
}
{
  bug_39050_k
  Heapcheck:Leak
  fun:IA__FcCharSetCreate
}
{
   bug_186086 (Skia -- global singleton instance of SkFontConfigDirect)
   Heapcheck:Leak
   ...
   fun:SkFontConfigInterfaceDirect::SkFontConfigInterfaceDirect
   fun:SkFontConfigInterface::GetSingletonDirectInterface
}
{
   bug_51988_a
   Heapcheck:Leak
   ...
   fun:*nsPKCS12Blob_ImportHelper
   fun:mozilla_security_manager::nsPKCS12Blob_Import
   fun:net::NSSCertDatabase::ImportFromPKCS12
}
{
   bug_51988_b
   Heapcheck:Leak
   ...
   fun:mozilla_security_manager::nsPKCS12Blob_Export
   fun:net::NSSCertDatabase::ExportToPKCS12
}
{
   bug_51988_c
   Heapcheck:Leak
   ...
   fun:crypto::Open*NSSDB
}
{
   bug_51988_d
   Heapcheck:Leak
   ...
   fun:*New
   ...
   fun:crypto::EnsureNSSInit
}
{
   bug_51988_e
   Heapcheck:Leak
   ...
   fun:net::CertDatabaseNSSTest_*_Test::TestBody
}
{
   bug_51988_f
   Heapcheck:Leak
   ...
   fun:net::CertDatabaseNSSTest::TearDown
}
{
   bug_51988_g
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   ...
   fun:net::CertDatabaseNSSTest::SetUp
}
{
   bug_51988_h
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   ...
   fun:chromeos::onc::CertificateImporter::ParseServerOrCaCertificate
}
{
   bug_51988_i
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   fun:net::X509Certificate::GetDefaultNickname
}
{
   bug_51988_j
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   fun:chromeos::*::ListCertsInSlot
}
{
   bug_119677
   Heapcheck:Leak
   ...
   fun:DisplayChangeObserverX11
   fun:aura::Env::Init
   fun:aura::Env::GetInstance
}
{
   bug_146464_a
   Heapcheck:Leak
   fun:get_peer_sock_name
   fun:base::MessagePumpAuraX11::GetDefaultXDisplay
}
{
   bug_146464_b
   Heapcheck:Leak
   fun:add_codeset.isra.10
   ...
   fun:RootWindowHostX11
   fun:aura::RootWindowHost::Create
}
{
   bug_146464_c
   Heapcheck:Leak
   ...
   fun:RootWindowHostX11
   fun:aura::RootWindowHost::Create
}

# There is not CloseTestNSSDB due to NSS bug 588269.
# When NSS 3.14 is the minimum version required, this should be removed.
# http://crbug.com/156433 .
{
   bug_156433_a
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   fun:*OpenUserDB
   fun:*OpenTestNSSDB
   fun:*ScopedTestNSSDB
}
{
   bug_156433_b
   Heapcheck:Leak
   fun:PORT_Alloc_Util
   fun:*OpenUserDB
   fun:*OpenTestNSSDB
   fun:*ScopedTestNSSDB
}

# Probably a leak in GTK.
{
   bug_175744
   Heapcheck:Leak
   ...
   fun:GtkThemeService::GtkThemeService
   fun:ThemeServiceFactory::BuildServiceInstanceFor
   fun:BrowserContextKeyedServiceFactory::GetServiceForBrowserContext
   fun:*
   fun:BrowserContextDependencyManager::CreateBrowserContextServices
   fun:TestingProfile::Init
   fun:TestingProfile::TestingProfile
}


#-----------------------------------------------------------------------
# 2. intentional unit test errors, or stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing
{
   Heapcheck sanity test (ToolsSanityTest.MemoryLeak).
   Heapcheck:Leak
   fun:base::ToolsSanityTest_MemoryLeak_Test::TestBody
}
{
   FileStream::Context can leak through WorkerPool by design (Linux)
   Heapcheck:Leak
   fun:net::FileStream::FileStream
}
{
   FileStream::Context can leak through WorkerPool by design (CrOS)
   Heapcheck:Leak
   fun:FileStream
}
{
   Tasks posted to WorkerPool can leak by design
   Heapcheck:Leak
   fun:base::internal::PostTaskAndReplyImpl::PostTaskAndReply
   fun:base::WorkerPool::PostTaskAndReply
}
# This one pops out too often on different leaks and the stacks are very often
# uninformative, e.g. don't include anything related to the bug.
# TODO(earthdok): revisit what we want to do with _Rep when we have LSan.
{
   basic_string::_Rep::_S_create
   Heapcheck:Leak
   fun:std::basic_string::_Rep::_S_create
   fun:std::basic_string::basic_string
}

#-----------------------------------------------------------------------
# 3. Suppressions for real chromium bugs that are not yet fixed.
# These should all be in chromium's bug tracking system (but a few aren't yet).
# Periodically we should sweep this file and the bug tracker clean by
# running overnight and removing outdated bugs/suppressions.
{
   bug_34994_a
   Heapcheck:Leak
   ...
   fun:*Invoke
   fun:v8::internal::Execution::Call
   fun:v8::Script::Run
}
{
   bug_34994_b
   Heapcheck:Leak
   ...
   fun:*Invoke
   fun:v8::internal::Execution::Call
   fun:v8::Function::Call
}
{
   bug_49300_a
   Heapcheck:Leak
   fun:disk_cache::StorageBlock::AllocateData
   fun:disk_cache::StorageBlock::Data
}
{
   bug_49300_b
   Heapcheck:Leak
   ...
   fun:disk_cache::BackendImpl::CreateEntryImpl
   fun:disk_cache::BackendImpl::SyncCreateEntry
   fun:disk_cache::BackendIO::ExecuteBackendOperation
}
{
   bug_49300_c
   Heapcheck:Leak
   ...
   fun:disk_cache::BackendImpl::NewEntry
   fun:disk_cache::BackendImpl::MatchEntry
}
{
   bug_65940_a
   Heapcheck:Leak
   ...
   fun:IPC::SyncChannel::SyncChannel
   fun:ChildThread::Init
   fun:ChildThread::ChildThread
   fun:RenderThreadImpl::RenderThreadImpl
}
{
   bug_65940_b
   Heapcheck:Leak
   fun:__gnu_cxx::new_allocator::allocate
   fun:std::_Vector_base::_M_allocate
   fun:std::vector::_M_insert_aux
   fun:std::vector::push_back
   fun:IPC::ChannelProxy::Context::OnAddFilter
}
{
   bug_67378_a
   Heapcheck:Leak
   ...
   fun:*SetPacScriptFromDisk
}
{
   bug_67378_b
   Heapcheck:Leak
   ...
   fun:*LoadScriptData
}
{
   bug_67378_c
   Heapcheck:Leak
   fun:*ASCIILiteralToV8String
   fun:net::ProxyResolverV8::Context::InitV8
   fun:net::ProxyResolverV8::SetPacScript
}
{
   bug_67378_d
   Heapcheck:Leak
   fun:*ScriptDataToV8String
   fun:net::ProxyResolverV8::Context::InitV8
   fun:net::ProxyResolverV8::SetPacScript
}
{
   bug_82974a
   Heapcheck:Leak
   ...
   fun:net::X509Certificate::CreateOSCertHandleFromBytes*
}
{
   bug_82974b
   Heapcheck:Leak
   ...
   fun:*PKIXVerifyCert
}
{
   bug_82974c
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   fun:net::*::ListCertsInSlot
   ...
   fun:net::CertDatabaseNSSTest::TearDown
}
{
   bug_82974d
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   fun:net::NSSCertDatabase::ListCerts
}
{
   bug_82974e
   Heapcheck:Leak
   ...
   fun:net::NSSCertDatabase::DeleteCertAndKey
   fun:*::CleanupSlotContents
}
{
   bug_82974f
   Heapcheck:Leak
   ...
   fun:net::NSSCertDatabase::DeleteCertAndKey
   fun:*ParseServerOrCaCertificate
}
{
   bug_90013_a
   Heapcheck:Leak
   fun:??
   fun:gfx::RenderTextLinux::EnsureLayout
}
{
   bug_90013_b
   Heapcheck:Leak
   fun:??
   fun:gfx::RenderTextLinux::GetStringSize
}
{
   bug_90013_c
   Heapcheck:Leak
   fun:??
   fun:*FindBestMatchFontFamilyName
   fun:PlatformFontPango
}
{
   bug_90013_d
   Heapcheck:Leak
   fun:??
   fun:gfx::GetPangoFontMetrics
   fun:gfx::PlatformFontPango::InitPangoMetrics
}
{
   bug_99304
   Heapcheck:Leak
   fun:v8::internal::SkipList::Update
   fun:v8::internal::PagedSpace::AllocateRaw
   fun:v8::internal::Heap::ReserveSpace
   fun:v8::internal::Deserializer::Deserialize
   fun:v8::internal::Isolate::Init
   fun:v8::internal::V8::Initialize
   fun:v8::internal::Snapshot::Initialize
   fun:*InitializeHelper
}
{
   bug_114770
   Heapcheck:Leak
   ...
   fun:TestShell::InitializeTestShell
   fun:TestShellTestSuite::Initialize
   fun:base::TestSuite::Run
}
{
   bug_114978
   Heapcheck:Leak
   ...
   fun:mozilla_security_manager::GenKeyAndSignChallenge
   fun:net::KeygenHandler::GenKeyAndSignChallenge
}
{
   bug_114986
   Heapcheck:Leak
   ...
   fun:ThemeServiceFactory::BuildServiceInstanceFor
   ...
   fun:BrowserContextKeyedServiceFactory::GetServiceForBrowserContext
   fun:ThemeServiceFactory::GetForProfile
}
{
   bug_124758
   Heapcheck:Leak
   fun:sqlite3MemMalloc
   fun:crypto::RSAPrivateKey::FindFromPublicKeyInfo
   fun:crypto::RSAPrivateKeyNSSTest_*_Test::TestBody
}
{
  bug_132431
  Heapcheck:Leak
  ...
  fun:*LoadDefaults
  fun:gfx::GetDefaultWebKitFontRenderParams
  ...
  fun:*TestBody
}
{
   bug_145703
   Heapcheck:Leak
   ...
   fun:content::SiteInstanceImpl::GetProcess
   fun:RenderViewHostImpl
   fun:content::RenderViewHostFactory::Create
   fun:content::RenderViewHostManager::Init
   fun:content::WebContentsImpl::Init
   fun:content::TestWebContents::Create
   fun:content::WebContentsTester::CreateTestWebContents
}
{
   bug_145705
   Heapcheck:Leak
   ...
   fun:extensions::SettingsFrontend::Create
   fun:ExtensionService::ExtensionService
   fun:extensions::TestExtensionSystem::CreateExtensionService
   fun:extensions::::TestExtensionEnvironment::GetExtensionService
   fun:extensions::::TestExtensionEnvironment::MakeExtension
   fun:extensions::::DeclarativeContentActionTest_ShowPageAction_Test::TestBody
}
{
   bug_150648
   Heapcheck:Leak
   fun:WTF::fastMalloc
   fun:WTF::StringImpl::createUninitialized
   fun:WTF::StringImpl::create
   fun:WebKit::WebString::assign
   fun:*WebString*
   fun:webkit_glue::CppBoundClass::BindToJavascript
   fun:*didClearWindowObject
   fun:WebKit::FrameLoaderClientImpl::dispatchDidClearWindowObjectInWorld
   fun:WebCore::FrameLoader::dispatchDidClearWindowObjectInWorld
}
# Intentionally comment this out temporarily to get a stack trace from the bot.
#{
#   bug_155530
#   Heapcheck:Leak
#   ...
#   fun:*CreateLocaleDefaultValue
#   ...
#   fun:PermissionQueueControllerTests::SetUp
#}
{
   bug_157885
   Heapcheck:Leak
   ...
   fun:dom_storage::DomStorageContext::CreateSessionNamespace
}
{
   bug_159191
   Heapcheck:Leak
   ...
   fun:SkFontHost::CreateTypeface
   fun:SkTypeface::GetDefaultTypeface
   fun:SkScalerContext::MakeRec
   fun:SkPaint::descriptorProc
   fun:SkPaint::detachCache
   fun:SkAutoGlyphCache::SkAutoGlyphCache
   fun:SkDraw::drawText
   fun:SkDevice::drawText
   fun:SkCanvas::drawText
   fun:media::FakeVideoCaptureDevice::OnCaptureTask
}
# Need to figure out if the bug_159551 leaks are intentional or not.
{
   bug_159551_message_loop
   Heapcheck:Leak
   fun:MessageLoop
   ...
   fun:testing::internal::TestFactoryImpl::CreateTest
}
{
   bug_159551_bind_cros
   Heapcheck:Leak
   fun:base::Bind
   fun:net::FileStream::Context::CloseAndDelete
   fun:net::FileStream::Context::Orphan
   fun:~FileStream
}
{
   bug_159551_bind_linux
   Heapcheck:Leak
   fun:base::Bind
   fun:net::FileStream::Context::CloseAndDelete
   fun:net::FileStream::Context::Orphan
   fun:net::FileStream::~FileStream
}
{
   bug_164185
   Heapcheck:Leak
   ...
   fun:BookmarkBarGtk::GetFirstHiddenBookmark
   fun:BookmarkBarGtk::SetChevronState
   fun:BookmarkBarGtk::BookmarkNodeAdded
   fun:BookmarkModel::AddNode
   fun:BookmarkModel::AddURLWithCreationTime
   fun:BookmarkModel::AddURL
   fun:BookmarkBarGtkUnittest_HidesHelpMessageWithBookmark_Test::TestBody
}
{
   bug_166989
   Heapcheck:Leak
   ...
   fun:ui::CreateInvisibleCursor
   ...
   fun:ui::CursorLoader::Create
   fun:ash::ImageCursors::SetDeviceScaleFactor
   fun:ash::CursorManager::SetDeviceScaleFactor
   fun:ash::Shell::Init
}
{
   bug_169185_a
   Heapcheck:Leak
   fun:v8::internal::SlotsBufferAllocator::AllocateBuffer
   fun:v8::internal::SlotsBuffer::AddTo
   fun:v8::internal::MarkCompactCollector::RecordSlot
   ...
   fun:v8::internal::StaticMarkingVisitor::IterateBody
   fun:v8::internal::IncrementalMarking::VisitObject
   fun:v8::internal::IncrementalMarking::ProcessMarkingDeque
   fun:v8::internal::IncrementalMarking::Step
   ...
   fun:v8::internal::*Space::AllocateRaw
}
{
   bug_169185_b
   Heapcheck:Leak
   fun:v8::internal::SkipList::Update
   fun:v8::internal::PagedSpace::AllocateRaw
   fun:v8::internal::Heap::CreateCode
   fun:v8::internal::Factory::NewCode
   fun:v8::internal::CodeGenerator::MakeCodeEpilogue
   fun:v8::internal::FullCodeGenerator::MakeCode
   fun:*GenerateCode
   fun:*MakeCode
   fun:v8::internal::Compiler::CompileLazy
   fun:*CompileLazyHelper
   fun:v8::internal::JSFunction::CompileLazy
   ...
   fun:*Invoke
}
{
   bug_169185_c
   Heapcheck:Leak
   fun:v8::internal::SkipList::Update
   fun:v8::internal::PagedSpace::AllocateRaw
   fun:v8::internal::Heap::CreateCode
   fun:v8::internal::Factory::NewCode
   fun:v8::internal::StubCompiler::GetCodeWithFlags
   fun:v8::internal::StubCompiler::GetCodeWithFlags
   ...
   fun:v8::internal::StubCache::Compute*
}
{
   bug_169185_d
   Heapcheck:Leak
   fun:v8::internal::SkipList::Update
   fun:v8::internal::PagedSpace::AllocateRaw
   fun:v8::internal::Heap::CreateCode
   fun:v8::internal::Factory::NewCode
   fun:v8::internal::RegExpMacroAssemblerX64::GetCode
   fun:v8::internal::RegExpCompiler::Assemble
   fun:v8::internal::RegExpEngine::Compile
}
{
   bug_169185_e
   Heapcheck:Leak
   fun:v8::internal::SkipList::Update
   fun:v8::internal::PagedSpace::AllocateRaw
   fun:v8::internal::Heap::CreateCode
   fun:v8::internal::Factory::NewCode
   fun:v8::internal::CodeGenerator::MakeCodeEpilogue
   fun:v8::internal::FullCodeGenerator::MakeCode
   fun:GenerateCode
   fun:MakeCode
   fun:MakeFunctionInfo
   fun:v8::internal::Compiler::Compile
   fun:v8::Script::New
   fun:v8::Script::Compile
   fun:v8::Script::Compile
   fun:V8UnitTest::ExecuteScriptInContext
   fun:V8UnitTest::ExecuteJavascriptLibraries
   fun:V8UnitTest::RunJavascriptTestF
}
{
   bug_169678
   Heapcheck:Leak
   fun:v8::internal::SlotsBufferAllocator::AllocateBuffer
   fun:v8::internal::SlotsBuffer::AddTo
   fun:v8::internal::MarkCompactCollector::RecordRelocSlot
   fun:v8::internal::StaticMarkingVisitor::VisitEmbeddedPointer
   fun:v8::internal::RelocInfo::Visit
   fun:v8::internal::Code::CodeIterateBody
   fun:v8::internal::StaticMarkingVisitor::VisitCode
   fun:v8::internal::StaticMarkingVisitor::IterateBody
   fun:v8::internal::IncrementalMarking::VisitObject
   fun:v8::internal::IncrementalMarking::ProcessMarkingDeque
   fun:v8::internal::IncrementalMarking::Step
}
{
   bug_169678_a
   Heapcheck:Leak
   fun:v8::internal::SlotsBufferAllocator::AllocateBuffer
   fun:v8::internal::SlotsBuffer::AddTo
   fun:v8::internal::MarkCompactCollector::RecordSlot
   fun:v8::internal::IncrementalMarkingMarkingVisitor::VisitPointers
   ...
   fun:v8::internal::Heap::CollectGarbage
   ...
   fun:v8::String::New
}
{
   bug_171547_b
   Heapcheck:Leak
   ...
   fun:FilterBuilder
   fun:::LoadWhitelistsOnBlockingPoolThread
}
{
   bug_171547_c
   Heapcheck:Leak
   ...
   fun:FilterBuilder::Build
   fun:::LoadWhitelistsOnBlockingPoolThread
}
{
   bug_172077
   Heapcheck:Leak
   ...
   fun:extensions::RegexSetMatcher::RebuildMatcher
   fun:extensions::RegexSetMatcher::ClearPatterns
   ...
   fun:extensions::URLMatcher::UpdateRegexSetMatcher
   fun:extensions::URLMatcher::UpdateInternalDatastructures
   fun:extensions::URLMatcher::AddConditionSets
   fun:::FilterBuilder::Build
   fun:::LoadWhitelistsOnBlockingPoolThread
}
{
   bug_173597
   Heapcheck:Leak
   fun:FcConfigEvaluate
   fun:gfx::RenderTextLinux::EnsureLayout
   fun:gfx::RenderTextTest_PangoAttributes_Test::TestBody
}
{
   bug_175100
   Heapcheck:Leak
   ...
   fun:*StartSync
   ...
   fun:OneClickSigninHelper::DidStopLoading
   ...
   fun:OneClickSigninHelperTest*::TestBody
}
{
   bug_176888
   Heapcheck:Leak
   fun:__GI___strdup
   fun:Init
   fun:GcryptInitializer
}
{
   bug_177285
   Heapcheck:Leak
   fun:MessageLoop
   fun:FileSystemURLRequestJobTest
}
# * is for DeriveFont and InitWithNameAndSize.
{
   bug_189170
   Heapcheck:Leak
   ...
   fun:SkFontHost::CreateTypeface
   fun:SkTypeface::CreateFromName
   fun:gfx::PlatformFontPango::*
}
{
   bug_189194_a
   Heapcheck:Leak
   ...
   fun:extensions::SettingsFrontend::Create
   fun:ExtensionService::ExtensionService
   fun:extensions::TestExtensionSystem::CreateExtensionService
   fun:ProfileSigninConfirmationHelperTest::SetUp
}
{
  bug_225596
  Heapcheck:Leak
  fun:chromeos::input_method::InputMethodManagerImpl::Init
  fun:chromeos::input_method::Initialize
  fun:chromeos::input_method::InputMethodConfigurationTest_TestInitialize_Test::TestBody
}
{
   bug_181691
   Heapcheck:Leak
   ...
   fun:InitThread
   fun:ShCompile
   fun:gpu::gles2::ShaderTranslator::Translate
   fun:gpu::gles2::ProgramManager::ForceCompileShader
   fun:gpu::gles2::ProgramManager::DoCompileShader
   fun:gpu::gles2::GLES2DecoderImpl::DoCompileShader
   fun:gpu::gles2::GLES2DecoderImpl::HandleCompileShader
   fun:gpu::gles2::GLES2DecoderImpl::DoCommand
   fun:gpu::CommandParser::ProcessCommand
}
{
   bug_233532
   Heapcheck:Leak
   ...
   fun:GetStoragePartitionFromConfig
   fun:content::BrowserContext::GetStoragePartition
   fun:content::NavigationControllerImpl::GetSessionStorageNamespace
   fun:content::RenderViewHostManager::Init
}
{
   bug_236791
   Heapcheck:Leak
   ...
   fun:ash::test::FocusCyclerTest_CycleFocusThroughWindowWithPanes_Test::TestBody
}
{
   bug_246567a
   Heapcheck:Leak
   fun:v8::internal::PerThreadAssertScopeBase::AssertData
   fun:v8::internal::PerThreadAssertScope::IsAllowed
   fun:v8::internal::Heap::AllocateRaw
   fun:v8::internal::Heap::Allocate
   fun:v8::internal::Heap::AllocateForeign
   fun:v8::internal::Heap::AllocateExternal
   fun:v8::internal::Factory::NewExternal
   fun:v8::External::New
   fun:net::ProxyResolverV8::Context::InitV8
   fun:net::ProxyResolverV8::SetPacScript
   fun:net::ProxyResolverV8Tracing::Job::ExecuteProxyResolver
   fun:net::ProxyResolverV8Tracing::Job::ExecuteBlocking
}
{
   bug_246567b
   Heapcheck:Leak
   fun:v8::internal::PerThreadAssertScopeBase::AssertData
   fun:v8::internal::PerThreadAssertScope::IsAllowed
   fun:v8::internal::HandleScope::CreateHandle
   fun:Handle
   fun:MacroAssembler
   fun:v8::internal::Deoptimizer::EnsureCodeForDeoptimizationEntry
   fun:v8::internal::Isolate::Init
   fun:v8::internal::V8::Initialize
   fun:v8::internal::Snapshot::Initialize
   fun:InitializeHelper
   fun:v8::V8::Initialize
   fun:v8::Locker::Initialize
   fun:net::ProxyResolverV8::Context::InitV8
   fun:net::ProxyResolverV8::SetPacScript
   fun:net::ProxyResolverV8Tracing::Job::ExecuteProxyResolver
   fun:net::ProxyResolverV8Tracing::Job::ExecuteBlocking
}
{
   bug_246567c
   Heapcheck:Leak
   fun:v8::internal::PerThreadAssertScopeBase::AssertData
   fun:v8::internal::PerThreadAssertScope::IsAllowed
   fun:v8::internal::HandleScope::CreateHandle
   fun:Handle
}
{
   bug_247525
   Heapcheck:Leak
   ...
   fun:appcache::AppCacheStorageImpl::Initialize
   fun:appcache::AppCacheService::Initialize
   fun:content::ChromeAppCacheService::InitializeOnIOThread
}
{
   bug_250533
   Heapcheck:Leak
   ...
   fun:net::TestURLRequestContextGetter::GetURLRequestContext
   fun:ProxyResolvingClientSocket
   fun:jingle_glue::XmppClientSocketFactory::CreateTransportClientSocket
   fun:jingle_glue::ChromeAsyncSocket::Connect
}
{
   bug_251034_a
   Heapcheck:Leak
   ...
   fun:gfx::OSMESAApiBase::OSMesaMakeCurrentFn
   fun:gfx::GLContextOSMesa::MakeCurrent
   fun:gpu::gles2::GLES2DecoderImpl::MakeCurrent
   fun:PumpCommands
}
{
   bug_251034_b
   Heapcheck:Leak
   ...
   fun:Initialize
   fun:gpu::GLInProcessContext::CreateContext
   fun:webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl::MaybeInitializeGL
   fun:webkit::gpu::WebGraphicsContext3DInProcessCommandBufferImpl::makeContextCurrent
}
{
   bug_251034_c
   Heapcheck:Leak
   ...
   fun:gfx::OSMESAApiBase::OSMesaMakeCurrentFn
   fun:gfx::GLContextOSMesa::MakeCurrent
   fun:ScopedMakeCurrent
   fun:gfx::GLSurfaceOSMesa::Resize
   fun:gfx::NativeViewGLSurfaceOSMesa::Resize
   fun:OnResizeView
}
{
   bug_251034_d
   Heapcheck:Leak
   ...
   fun:gfx::OSMESAApiBase::OSMesaMakeCurrentFn
   fun:gfx::GLContextOSMesa::MakeCurrent
   fun:~ScopedMakeCurrent
   fun:base::DefaultDeleter::operator
   fun:~scoped_ptr_impl
   fun:~scoped_ptr
   fun:gfx::GLSurfaceOSMesa::Resize
   fun:gfx::NativeViewGLSurfaceOSMesa::Resize
   fun:OnResizeView
}
{
   bug_251827_a
   Heapcheck:Leak
   fun:MakePlanarBuffer
   fun:media::AudioBufferTest*
}
{
   bug_251827_b
   Heapcheck:Leak
   fun:MakeInterleavedBuffer
   fun:media::AudioBufferTest*
}
{
   bug_258113
   Heapcheck:Leak
   fun:ppapi::proxy::PPP_Class_Proxy::CreateProxiedObject
   fun:ppapi::proxy::PPB_Var_Deprecated_Proxy::OnMsgCreateObjectDeprecated
   fun:void DispatchToMethod
   fun:IPC::SyncMessageSchema::DispatchWithSendParams
   fun:PpapiHostMsg_PPBVar_CreateObjectDeprecated::Dispatch
   fun:ppapi::proxy::PPB_Var_Deprecated_Proxy::OnMessageReceived
   fun:ppapi::proxy::Dispatcher::OnMessageReceived
   fun:ppapi::proxy::HostDispatcher::OnMessageReceived
   fun:IPC::ChannelProxy::Context::OnDispatchMessage
   fun:IPC::SyncChannel::ReceivedSyncMsgQueue::DispatchMessages
   fun:IPC::SyncChannel::SyncContext::DispatchMessages
   fun:IPC::SyncChannel::WaitForReply
   fun:IPC::SyncChannel::SendWithTimeout
   fun:IPC::SyncChannel::Send
   fun:ppapi::proxy::ProxyChannel::Send
   fun:ppapi::proxy::HostDispatcher::Send
   fun:DidCreate
   fun:ppapi::proxy::PPP_Instance_Private_ProxyTest_PPPInstancePrivate_Test::TestBody
}
{
   bug_258132
   Heapcheck:Leak
   ...
   fun:ppapi::proxy::PluginProxyMultiThreadTest::RunTest
   fun:ppapi::ThreadAwareCallbackMultiThreadTest_RunOnTargetThread_Test::TestBody
}
{
   bug_259350a
   Heapcheck:Leak
   ...
   fun:SingleLoginAttemptTest_*_Test
}
{
   bug_259350b
   Heapcheck:Leak
   ...
   fun:notifier::SingleLoginAttempt::OnError
}
{
   bug_259350c
   Heapcheck:Leak
   ...
   fun:buzz::XmppClient::Process
   fun:talk_base::Task::Step
   fun:talk_base::TaskRunner::InternalRunTasks
   fun:talk_base::TaskRunner::RunTasks
   fun:jingle_glue::TaskPump::CheckAndRunTasks
}
{
   bug_259350d
   Heapcheck:Leak
   ...
   fun:jingle_glue::ProxyResolvingClientSocket::ProcessProxyResolveDone
}
{
   bug_222687a
   Heapcheck:Leak
   ...
   fun:chrome::StorageMonitor::GetInstance
   fun:GetMediaTransferProtocolManager
   fun:~MediaTransferProtocolDeviceObserverLinux
   fun:~MediaTransferProtocolDeviceObserverLinux
   fun:base::DefaultDeleter::operator
   fun:~scoped_ptr_impl
   fun:~scoped_ptr
   fun:~StorageMonitorLinux
   fun:~TestStorageMonitorLinux
   fun:~TestStorageMonitorLinux
}
{
   bug_263748a
   Heapcheck:Leak
   ...
   fun:DisassemblerElf32X86Test_All_Test::TestBody
}
{
   bug_263748b
   Heapcheck:Leak
   ...
   fun:TypedRVATest_*_Test::TestBody
}
{
   bug_263748c
   Heapcheck:Leak
   ...
   fun:EncodeDecodeTest_Elf_Small_Test::TestBody
}
{
   bug_264225
   Heapcheck:Leak
   ...
   fun:TestingProfile::CreateRequestContext
   fun:UbertokenFetcherTest::SetUp
}