blob: 904a7b613242d1aecd3a3b95b379e16b7ba21a5e (
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
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
|
# 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_66941_a
Heapcheck:Leak
fun:PR_NewLock
fun:net::TestRootCerts::*
}
{
bug_66941_b
Heapcheck:Leak
fun:nss_ZAlloc
fun:net::TestRootCerts::*
}
{
bug_66941_c
Heapcheck:Leak
fun:PL_ArenaAllocate
fun:net::TestRootCerts::*
}
{
bug_66941_d
Heapcheck:Leak
fun:sqlite3MemMalloc
fun:net::TestRootCerts::Add
}
{
bug_todo_getdelim_lucid
Heapcheck:Leak
fun:_IO_getdelim
}
{
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
}
# leak in OSMesa used to run compositor_unittests in bots.
{
bug_148477_a
Heapcheck:Leak
...
fun:gfx::GLContextOSMesa::MakeCurrent
...
fun:webkit::gpu::WebGraphicsContext3DInProcessImpl::*
}
{
bug_148477_b
Heapcheck:Leak
...
fun:gfx::GLApiBase::glCompileShaderFn
fun:webkit::gpu::WebGraphicsContext3DInProcessImpl::compileShader
fun:cc::ProgramBindingBase::LoadShader
fun:cc::ProgramBindingBase::Init
fun:ProgramBinding
...
fun:cc::SingleThreadProxy::CommitAndComposite
fun:cc::SingleThreadProxy::CompositeImmediately
}
{
bug_148477_c
Heapcheck:Leak
...
fun:gfx::GLApiBase::glLinkProgramFn
fun:webkit::gpu::WebGraphicsContext3DInProcessImpl::linkProgram
fun:cc::ProgramBindingBase::Link
fun:cc::ProgramBinding*
}
# 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
}
{
bug_156829
Heapcheck:Leak
...
fun:content::AudioInputDeviceManager::EnumerateOnDeviceThread
}
# Probably a leak in GTK.
{
bug_175744
Heapcheck:Leak
...
fun:GtkThemeService::GtkThemeService
fun:ThemeServiceFactory::BuildServiceInstanceFor
fun:ProfileKeyedServiceFactory::GetServiceForProfile
fun:ProfileKeyedServiceFactory::CreateServiceNow
fun:ProfileDependencyManager::CreateProfileServices
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
}
{
Intentional leak in BrowserThreadTest.NotReleasedIfTargetThreadNonExistent
Heapcheck:Leak
fun:content::BrowserThreadTest_NotReleasedIfTargetThreadNonExistent_Test::TestBody
}
{
Intentional leak of *Histograms to avoid shutdown races
Heapcheck:Leak
...
fun:base::*Histogram::FactoryGet
}
{
Intentional leak of stats histogram to avoid shutdown races
Heapcheck:Leak
...
fun:disk_cache::StatsHistogram::FactoryGet
}
{
String name pushed into deliberately leaked histograms
Heapcheck:Leak
...
fun:*basic_string*
fun:base:*:HistogramTest_*_Test::TestBody
}
{
String name pushed into deliberately leaked ScoketPool histigram
Heapcheck:Leak
...
fun:std::string::*
...
fun:net::ClientSocketPoolHistograms::ClientSocketPoolHistograms
}
{
String name pushed into leaked CookieMonsterHistograms
Heapcheck:Leak
...
fun:*basic_string*
fun:net::CookieMonster::InitializeHistograms
}
{
String name pushed into deliberately leaked StatsHistogram
Heapcheck:Leak
...
fun:*basic_string*
fun:DiskCacheBackendTest_Histograms_Test::TestBody
}
{
Histogram name pushed in deliberately leaked StatsHistogram
Heapcheck:Leak
...
fun:*basic_string*
fun:disk_cache::Stats::Init
}
{
Intentional LeakyLazyInstanceTraits leaks
Heapcheck:Leak
...
fun:base::internal::LeakyLazyInstanceTraits::New
fun:base::LazyInstance::Pointer
}
{
Intentional leak in object tracking statics to avoid shutdown race
Heapcheck:Leak
...
fun:tracked_objects::ThreadData::Initialize*
}
{
Intentional leak in object tracking of thread context to avoid shutdown race
Heapcheck:Leak
fun:tracked_objects::ThreadData::Get
}
{
Intentional leak of task birth and death data to avoid shutdown race
Heapcheck:Leak
...
fun:tracked_objects::ThreadData::TallyA*
}
{
NSS is initialized (LeakyLazyInstance) but intentionally never shut down
Heapcheck:Leak
...
fun:InitSessionCacheLocks
fun:initSessionCacheLocksLazily
...
fun:ssl_InitSessionCacheLocks
}
{
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
}
#-----------------------------------------------------------------------
# 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_17540
Heapcheck:Leak
fun:base::MessagePumpLibevent::WatchFileDescriptor
fun:MessageLoopForIO::WatchFileDescriptor
fun:IPC::Channel::ChannelImpl::Connect
fun:IPC::Channel::Connect
fun:IPC::ChannelProxy::Context::OnChannelOpened
}
{
bug_39014
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
fun:*DispatchToMethod
fun:RunnableMethod::Run
}
{
bug_34570
Heapcheck:Leak
fun:URLRequestHttpJob::Factory
fun:URLRequestJobManager::CreateJob
fun:net::URLRequest::Start
fun:URLRequestTest_CancelTest_DuringCookiePolicy_Test::TestBody
}
{
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
}
# TODO(glider): sometimes the stacks differ between the bot and the local run,
# e.g. "base::subtle::RefCountedBase::RefCountedBase" vs. "RefCountedBase".
{
bug_38305
Heapcheck:Leak
fun:browser_sync::UIModelWorker::DoWorkAndWaitUntilDone
fun:Syncer::SyncShare
fun:FakeSyncShareTask::Run
fun:MessageLoop::RunTask
}
{
bug_38490
Heapcheck:Leak
...
fun:browser_sync::SyncBackendHost::Core::NotifyFrontend
}
{
bug_44354
Heapcheck:Leak
...
fun:NetTestSuite::InitializeTestThread
fun:NetTestSuite::Initialize
}
{
bug_46678_a
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:remoting::Differ::MergeBlocks
}
{
bug_46678_b
Heapcheck:Leak
fun:remoting::DifferTest::MarkBlocksAndCheckMerge
}
{
bug_46678_c
Heapcheck:Leak
fun:remoting::DifferTest_*_Test::TestBody
}
# '*ChromotingPlugin' stands for 'ChromotingPlugin' and
# 'remoting::ChromotingPlugin::ChromotingPlugin'.
{
bug_46678_d
Heapcheck:Leak
...
fun:*ChromotingPlugin
fun:CreatePlugin
}
{
bug_46715
Heapcheck:Leak
fun:*makeExternalString
fun:WebCore::*v8ExternalStringSlow
}
{
bug_46886
Heapcheck:Leak
...
fun:*SpdyHttpStreamTest_SendRequest_Test*
}
{
bug_19775_a
Heapcheck:Leak
...
fun:history::InMemoryHistoryBackend::Init
fun:history::HistoryBackend::InitImpl
}
{
bug_19775_b
Heapcheck:Leak
...
fun:history::HistoryBackend::InitImpl
fun:history::HistoryBackend::Init
}
{
bug_19775_d
Heapcheck:Leak
...
fun:ProfileManagerTest_CreateAndUseTwoProfiles_Test::TestBody
}
{
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_50598_a
Heapcheck:Leak
...
fun:RenderThread
fun:safe_browsing::PhishingDOMFeatureExtractorTest::SetUp
}
{
bug_50598_b
Heapcheck:Leak
fun:WaitableEvent
fun:ChildProcess
fun:RenderProcess
fun:MockRenderProcess
fun:safe_browsing::PhishingDOMFeatureExtractorTest::SetUp
}
{
bug_50598_c
Heapcheck:Leak
...
fun:safe_browsing::PhishingDOMFeatureExtractorTest::GetNextThreadName
}
{
bug_53184
Heapcheck:Leak
fun:base::WaitableEventWatcher::StartWatching
fun:IPC::SyncChannel::SyncContext::OnChannelOpened
fun:*DispatchToMethod
fun:RunnableMethod::Run
fun:MessageLoop::RunTask
}
{
bug_56676_a
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
fun:std::_Vector_base::_M_allocate
fun:std::vector::_M_allocate_and_copy
fun:std::vector::operator=
fun:MockDispatcher::DidReadDirectory
fun:fileapi::FileSystemOperation::DidReadDirectory
}
{
bug_56676_b
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
fun:std::string::_Rep::_S_create
fun:std::string::_S_construct
fun:std::string::_S_construct_aux
fun:std::string::_S_construct
fun:*basic_string*
fun:file_util::FileEnumerator::ReadDirectory
fun:file_util::FileEnumerator::Next
fun:::RelayReadDirectory::RunWork
fun:::MessageLoopRelay::ProcessOnTargetThread
}
{
bug_58474_a
Heapcheck:Leak
...
fun:FileSystemHostContextTest_CheckValidPath_Test::TestBody
}
{
bug_58474_b
Heapcheck:Leak
...
fun:FileSystemHostContextTest_GetRootPath_Test::TestBody
}
{
bug_60872
Heapcheck:Leak
fun:base::BaseTimer::Start
fun:ReloadButtonGtk::OnClicked
fun:ReloadButtonGtk::OnClickedThunk
fun:g_closure_invoke
fun:ReloadButtonGtkTest_*_Test::TestBody
}
{
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_68304
Heapcheck:Leak
...
fun:IPC::ParamTraits::Read
fun:IPC::ReadParam
fun:IPC::MessageWithTuple::Read
fun:IPC::MessageWithTuple::Dispatch
fun:ResourceDispatcherHost::OnMessageReceived
fun:ResourceDispatcherHostTest::MakeTestRequest
}
{
bug_70327
Heapcheck:Leak
...
fun:gfx::Canvas::SizeStringInt
fun:gfx::Canvas::GetStringWidth
fun:gfx::PlatformFontPango::GetStringWidth
...
fun:ui::TextEliderTest_*_Test::TestBody
}
{
bug_71909
Heapcheck:Leak
fun:TestingProfile::CreateRequestContext
fun:MockService
...
fun:ExtensionUpdaterTest*
}
{
bug_79322a
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
fun:std::string::_Rep::_S_create
fun:std::string::_S_construct
fun:std::string::_S_construct_aux
fun:std::string::_S_construct
fun:*basic_string*
fun:AutofillMetrics::Log
}
{
bug_79322b
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
fun:std::string::_Rep::_S_create
fun:std::string::_Rep::_M_clone
fun:std::string::reserve
fun:std::operator+
fun:HistoryQuickProvider::Start
fun:HistoryQuickProviderTest::RunTest
}
{
bug_79322c
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
fun:std::string::_Rep::_S_create
fun:std::string::_Rep::_M_clone
fun:std::string::reserve
fun:std::operator+
fun:ThreadWatcher::Initialize
fun:ThreadWatcher::ThreadWatcher
fun:CustomThreadWatcher::CustomThreadWatcher
fun:ThreadWatcherTest::ThreadWatcherTest
}
{
bug_79322d
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
fun:std::string::_Rep::_S_create
fun:std::string::_Rep::_M_clone
fun:std::string::reserve
fun:std::operator+
fun:AutocompleteController::Start
fun:::AutocompleteProviderTest::RunTest
}
{
bug_79328
Heapcheck:Leak
...
fun:TestingProfile::CreateRequestContext
fun:*
}
{
bug_80467
Heapcheck:Leak
...
fun:ExtensionService::RecordPermissionMessagesHistogram
}
{
bug_80472
Heapcheck:Leak
...
fun:fileapi::::FileSystemURLRequestJobTest::SetUp
}
{
bug_80473
Heapcheck:Leak
...
fun:fileapi::::FileSystemDirURLRequestJobTest::SetUp
}
{
bug_80550_a
Heapcheck:Leak
...
fun:RenderWidgetHost::WasRestored
}
{
bug_80550_b
Heapcheck:Leak
...
fun:RenderWidgetHost::WasHidden
}
{
bug_80663
Heapcheck:Leak
...
fun:URLFetcher::Core::StartURLRequest
fun:URLFetcher::Core::StartURLRequestWhen*
}
{
bug_81575
Heapcheck:Leak
...
fun:Options
fun:fileapi::FileSystemOriginDatabase::Init
}
{
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_83195
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
fun:std::string::_Rep::_S_create
fun:std::string::_S_construct
fun:std::string::_S_construct_aux
fun:std::string::_S_construct
fun:std::basic_string::basic_string
fun:webkit_glue::WebKitClientImpl::histogramCustomCounts
fun:WebCore::PlatformBridge::histogramCustomCounts
fun:WebKit::WebViewImpl::paint
fun:WebWidgetHost::PaintRect
fun:WebWidgetHost::Paint
fun:::WebWidgetHostGtkWidget::HandleExpose
fun:_gtk_marshal_BOOLEAN__BOXED
fun:base::MessagePumpForUI::DispatchEvents
fun:base::MessagePumpForUI::EventDispatcher
fun:base::MessagePumpForUI::RunOnce
fun:base::MessagePumpForUI::RunWithDispatcher
fun:base::MessagePumpForUI::Run
fun:MessageLoop::RunInternal
fun:MessageLoop::RunHandler
}
{
bug_88640
Heapcheck:Leak
...
fun:ProfileImpl::DoFinalInit
fun:ProfileImpl::OnPrefsLoaded
}
{
bug_88735
Heapcheck:Leak
...
fun:ProtocolHandlerRegistry::MaybeCreateJob
fun:MakeRequest
}
{
bug_90369_a
Heapcheck:Leak
fun:std::string::_Rep::_S_create
fun:std::string::_Rep::_M_clone
fun:std::string::reserve
fun:std::string::append
fun:FilePath::Append
fun:ProfileManagerTest_CreateProfilesAsync_Test::TestBody
}
{
bug_90369_b
Heapcheck:Leak
fun:std::string::_Rep::_S_create
fun:std::string::_Rep::_M_clone
fun:std::string::reserve
fun:std::string::append
fun:FilePath::Append
fun:ProfileManagerTest_CreateProfileAsyncMultipleRequests_Test::TestBody
}
{
bug_91174
Heapcheck:Leak
fun:DownloadManager::OnPathExistenceAvailable
}
{
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_91845_a
Heapcheck:Leak
...
fun:BrowserAccessibilityManager::CreateAccessibilityTree
...
fun:BrowserAccessibilityManagerTest_TestCreateEmptyDocument_Test::TestBody
}
{
bug_91845_b
Heapcheck:Leak
fun:BrowserAccessibilityManagerTest_TestCreateEmptyDocument_Test::TestBody
}
{
bug_91845_c
Heapcheck:Leak
...
fun:BrowserAccessibilityManager::Create
fun:BrowserAccessibilityManager::CreateEmptyDocument
fun:BrowserAccessibilityManagerTest_TestCreateEmptyDocument_Test::TestBody
}
{
bug_93006a
Heapcheck:Leak
fun:DownloadManager::Init
fun:DownloadManagerTest*
fun:DownloadManagerTest_*
}
{
bug_93006b
Heapcheck:Leak
fun:DownloadManagerTest*
fun:DownloadManagerTest_*
}
{
bug_93006c
Heapcheck:Leak
...
fun:MockDownloadManager*
fun:DownloadManagerTest*
fun:DownloadManagerTest_*
}
{
bug_93006d
Heapcheck:Leak
...
fun:DownloadManager::AddObserver
fun:*SelectFileObserver
fun:DownloadManagerTest_*
}
{
bug_94764
Heapcheck:Leak
fun:remoting::ClientSession::UnpressKeys
fun:remoting::ClientSessionTest_UnpressKeys_Test::TestBody
}
{
bug_96069
Heapcheck:Leak
fun:__gnu_cxx::new_allocator::allocate
...
fun:disk_cache::MemBackendImpl::CreateBackend
...
fun:net::HttpCache::CreateBackend
fun:net::HttpCache::CreateTransaction
...
fun:net::CookieMonster::CookieMonsterTask::InvokeCallback
}
{
bug_96904
Heapcheck:Leak
...
fun:TestURLRequestContextGetter::GetURLRequestContext
fun:*SingleLoginAttempt
fun:notifier::Login::StartConnection
fun:syncer::InvalidationNotifier::UpdateCredentials
fun:syncer::NonBlockingInvalidationNotifier::Core::UpdateCredentials
fun:void DispatchToMethod
}
{
bug_98967
Heapcheck:Leak
...
fun:V8ValueConverterImplTest_WeirdTypes_Test::TestBody
}
{
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_100146
Heapcheck:Leak
fun:base::internal::WeakReferenceOwner::GetRef
fun:base::SupportsWeakPtr::AsWeakPtr
fun:Iterator
fun:DownloadManager::Shutdown
fun:DownloadService::Shutdown
fun:ProfileKeyedServiceFactory::ProfileShutdown
fun:ProfileDependencyManager::DestroyProfileServices
fun:~OffTheRecordProfileImpl
fun:~scoped_ptr
fun:~ProfileImpl
fun:~scoped_ptr
fun:~ProfileInfo
...
fun:~map
fun:~ProfileManager
fun:~ProfileManagerWithoutInit
fun:scoped_ptr::reset
fun:ProfileManagerTest::TearDown
}
{
bug_102831_a
Heapcheck:Leak
...
fun:PluginLoaderPosix::LoadPluginsInternal
}
{
bug_102831_b
Heapcheck:Leak
...
fun:PluginLoaderPosix::LoadPlugins
}
{
bug_102831_c
Heapcheck:Leak
...
fun:PluginLoaderPosix::GetPluginsToLoad
}
{
bug_102831_d
Heapcheck:Leak
...
fun:PluginService::RegisterPepperPlugins
...
fun:PluginService::GetInstance
fun:PluginPrefs::EnablePlugin
}
{
bug_102831_e
Heapcheck:Leak
...
fun:FilePath::Append
fun:chrome::PathProvider
fun:PathService::Get
fun:PluginPrefs::SetPrefs
fun:PluginPrefsFactory::BuildServiceInstanceFor
}
{
bug_103704
Heapcheck:Leak
fun:std::string::_Rep::_S_create
fun:std::string::copy
fun:std::basic_string::basic_string
fun:TestingBrowserProcess
fun:::ChromeTestSuiteInitializer::OnTestStart
fun:testing::internal::TestEventRepeater::OnTestStart
}
{
bug_111588a
Heapcheck:Leak
...
fun:ResourceDispatcherHost::CompleteRead
fun:ResourceDispatcherHost::OnReadCompleted
fun:net::URLRequest::NotifyReadCompleted
fun:net::URLRequestJob::NotifyReadComplete
fun:net::URLRequestTestJob::ProcessNextOperation
fun:net::URLRequestTestJob::ProcessOnePendingMessage
fun:ResourceDispatcherHostTest_*_Test::TestBody
}
{
bug_111588b
Heapcheck:Leak
fun:std::string::_Rep::_S_create
fun:std::string::_Rep::_M_clone
fun:std::string::reserve
fun:bool ::InitCanonical
fun:GURL
fun:IPC::ParamTraits::Read
fun:IPC::ReadParam
fun:IPC::ParamTraits::Read
fun:IPC::ReadParam
fun:IPC::ParamTraits::Read
fun:IPC::ReadParam
fun:IPC::MessageSchema::Read
fun:ResourceHostMsg_RequestResource::Read
fun:ResourceHostMsg_RequestResource::Dispatch
fun:ResourceDispatcherHost::OnMessageReceived
fun:ResourceDispatcherHostTest::MakeTestRequest
fun:ResourceDispatcherHostTest::MakeTestRequest
fun:ResourceDispatcherHostTest_*_Test::TestBody
}
{
bug_112315
Heapcheck:Leak
fun:v8::internal::NativeObjectsExplorer::FindOrAddGroupInfo
fun:v8::internal::NativeObjectsExplorer::SetNativeRootReference
fun:v8::internal::NativeObjectsExplorer::IterateAndExtractReferences
fun:v8::internal::HeapSnapshotGenerator::CountEntriesAndReferences
fun:v8::internal::HeapSnapshotGenerator::GenerateSnapshot
fun:v8::internal::HeapProfiler::TakeSnapshotImpl
fun:v8::internal::HeapProfiler::TakeSnapshotImpl
fun:v8::internal::HeapProfiler::TakeSnapshot
fun:v8::HeapProfiler::TakeSnapshot
fun:GetNumObjects
}
{
bug_114750_a
Heapcheck:Leak
fun:::FindBestMatchFontFamilyName
fun:gfx::PlatformFontPango::PlatformFontPango
fun:PlatformFontPangoTest_FamilyList_Test::TestBody
}
{
bug_114750_b
Heapcheck:Leak
fun:??
fun:FindBestMatchFontFamilyName
fun:PlatformFontPango
fun:gfx::PlatformFont::CreateFromNativeFont
fun:Font
fun:PlatformFontPango
fun:gfx::PlatformFont::CreateDefault
fun:Font
...
fun:*Test*
}
{
bug_114758
Heapcheck:Leak
...
fun:::FontTest_*_Test::TestBody
}
{
bug_114767_a
Heapcheck:Leak
...
fun:::BookmarkletTest_*_Test::TestBody
}
{
bug_114767_b
Heapcheck:Leak
...
fun:TestShell::Initialize
fun:TestShell::CreateNewWindow
fun:TestShellTest::CreateEmptyWindow
fun:TestShellTest::SetUp
}
{
bug_114767_c
Heapcheck:Leak
fun:WebCore::StringCache::v8ExternalStringSlow
fun:WebCore::StringCache::v8ExternalStringSlow
fun:WebCore::ScriptController::bindToWindowObject
fun:WebCore::ScriptController::bindToWindowObject
fun:WebCore::ScriptController::bindToWindowObject
fun:WebCore::ScriptController::bindToWindowObject
fun:WebKit::WebFrameImpl::bindToWindowObject
fun:CppBoundClass::BindToJavascript
fun:TestShell::BindJSObjectsToWindow
fun:TestWebViewDelegate::didClearWindowObject
fun:WebKit::FrameLoaderClientImpl::dispatchDidClearWindowObjectInWorld
fun:WebCore::FrameLoader::dispatchDidClearWindowObjectInWorld
fun:WebCore::V8DOMWindowShell::initContextIfNeeded
fun:WebCore::V8DOMWindowShell::updateDocument
fun:WebCore::ScriptController::updateDocument
fun:WebCore::Frame::setDocument
fun:WebCore::DocumentWriter::begin
fun:WebCore::FrameLoader::receivedFirstData
fun:WebCore::FrameLoader::willSetEncoding
fun:WebCore::DocumentWriter::setEncoding
fun:WebKit::FrameLoaderClientImpl::finishedLoading
fun:WebCore::FrameLoader::finishedLoadingDocument
fun:WebCore::DocumentLoader::finishedLoading
fun:WebCore::FrameLoader::finishedLoading
fun:WebCore::MainResourceLoader::didFinishLoading
fun:WebCore::MainResourceLoader::continueAfterContentPolicy
fun:WebCore::MainResourceLoader::continueAfterContentPolicy
fun:WebCore::MainResourceLoader::callContinueAfterContentPolicy
}
{
bug_114770
Heapcheck:Leak
...
fun:TestShell::InitializeTestShell
fun:TestShellTestSuite::Initialize
fun:base::TestSuite::Run
}
{
bug_114771
Heapcheck:Leak
fun:WebCore::StringCache::v8ExternalStringSlow
fun:WebCore::StringCache::v8ExternalStringSlow
fun:WebCore::ScriptController::bindToWindowObject
fun:WebCore::ScriptController::bindToWindowObject
fun:WebCore::ScriptController::bindToWindowObject
fun:WebCore::ScriptController::bindToWindowObject
fun:WebKit::WebFrameImpl::bindToWindowObject
fun:CppBoundClass::BindToJavascript
fun:TestShell::BindJSObjectsToWindow
fun:TestWebViewDelegate::didClearWindowObject
fun:WebKit::FrameLoaderClientImpl::dispatchDidClearWindowObjectInWorld
fun:WebCore::FrameLoader::dispatchDidClearWindowObjectInWorld
fun:WebCore::V8DOMWindowShell::initContextIfNeeded
fun:WebCore::V8Proxy::mainWorldContext
fun:WebCore::V8Proxy::mainWorldContext
fun:WebCore::ScriptController::bindToWindowObject
fun:WebKit::WebFrameImpl::bindToWindowObject
fun:CppBoundClass::BindToJavascript
fun:TestShell::BindJSObjectsToWindow
fun:TestWebViewDelegate::didClearWindowObject
fun:WebKit::FrameLoaderClientImpl::dispatchDidClearWindowObjectInWorld
fun:WebCore::FrameLoader::dispatchDidClearWindowObjectInWorld
fun:WebCore::FrameLoader::dispatchDidClearWindowObjectsInAllWorlds
fun:WebCore::FrameLoader::receivedFirstData
fun:WebCore::FrameLoader::willSetEncoding
fun:WebCore::DocumentWriter::setEncoding
fun:WebKit::FrameLoaderClientImpl::finishedLoading
fun:WebCore::FrameLoader::finishedLoadingDocumen
}
{
bug_114978
Heapcheck:Leak
...
fun:mozilla_security_manager::GenKeyAndSignChallenge
fun:net::KeygenHandler::GenKeyAndSignChallenge
}
{
bug_114979
Heapcheck:Leak
...
fun:BookmarkBarGtkUnittest::SetUp
}
{
bug_114986
Heapcheck:Leak
...
fun:ThemeServiceFactory::BuildServiceInstanceFor
...
fun:ProfileKeyedServiceFactory::GetServiceForProfile
fun:ThemeServiceFactory::GetForProfile
}
{
bug_114988
Heapcheck:Leak
...
fun:BookmarkEditorGtk::BookmarkEditorGtk
fun:BookmarkEditorGtkTest_*_Test::TestBody
}
{
bug_115611_a
Heapcheck:Leak
fun:base::Bind
fun:content::TraceSubscriberStdioImpl::OnStart
}
{
bug_115611_b
Heapcheck:Leak
fun:*TraceSubscriberStdio*
fun:TraceSubscriberStdioTest_CanWriteDataToFile_Test::TestBody
}
{
bug_115611_c
Heapcheck:Leak
...
fun:FilePath::Append
fun:FilePath::AppendASCII
fun:TraceSubscriberStdioTest_CanWriteDataToFile_Test::TestBody
}
{
bug_117389
Heapcheck:Leak
...
fun:TestURLRequestContextGetter::GetURLRequestContext
...
fun:notifier::Login::StartConnection
fun:syncer::InvalidationNotifier::UpdateCredentials
fun:syncer::NonBlockingInvalidationNotifier::Core::UpdateCredentials
}
{
bug_124758
Heapcheck:Leak
fun:sqlite3MemMalloc
fun:crypto::RSAPrivateKey::FindFromPublicKeyInfo
fun:crypto::RSAPrivateKeyNSSTest_*_Test::TestBody
}
{
bug_125129_a
Heapcheck:Leak
...
fun:content::RenderProcessHostImpl::RenderProcessHostImpl
fun:SiteInstanceImpl::GetProcess
fun:*RenderViewHostImpl
fun:*TestRenderViewHost
fun:::TestInterstitialPage::CreateRenderViewHost
}
{
bug_125129_b
Heapcheck:Leak
...
fun:content::RenderProcessHostImpl::RenderProcessHostImpl
fun:SiteInstanceImpl::GetProcess
...
fun:*_*_Test::TestBody
}
{
# Like 125129_b, but for Chromium OS instead of Linux.
bug_125129_c
Heapcheck:Leak
...
fun:RenderProcessHostImpl
fun:SiteInstanceImpl::GetProcess
...
fun:*_*_Test::TestBody
}
{
bug_128145
Heapcheck:Leak
...
fun:BuildWebDataService
fun:RefcountedProfileKeyedServiceFactory::GetServiceForProfile
fun:RefcountedProfileKeyedServiceFactory::SetTestingFactoryAndUse
fun:TestingProfile::CreateWebDataService
}
{
bug_130640_a
Heapcheck:Leak
...
fun:GtkThemeService::GetFolderIcon
}
{
bug_130640_b
Heapcheck:Leak
...
fun:GtkThemeService::GetDefaultFavicon
}
{
bug_132431
Heapcheck:Leak
...
fun:*LoadDefaults
fun:gfx::GetDefaultWebKitFontRenderParams
...
fun:*TestBody
}
{
bug_134527
Heapcheck:Leak
fun:IA__FcMatrixCopy
fun:gfx::RenderTextLinux::EnsureLayout
fun:gfx::RenderText::IndexOfAdjacentGrapheme
fun:gfx::RenderTextTest_GraphemePositions_Test::TestBody
}
{
bug_134717
Heapcheck:Leak
fun:ui::InputMethodIBus::CreateContext
fun:ui::InputMethodIBus::Init
}
{
bug_136936_a
Heapcheck:Leak
...
fun:std::basic_string::_Rep::_S_create
...
fun:base::PlatformThread::SetName
}
{
bug_136936_b
Heapcheck:Leak
...
fun:std::basic_string::_Rep::_S_create
...
fun:base::PlatformThread::CurrentId
}
{
bug_143565
Heapcheck:Leak
...
fun:appcache::AppCacheStorageImpl::Initialize
fun:appcache::AppCacheService::Initialize
fun:ChromeAppCacheService::InitializeOnIOThread
}
{
bug_144913
Heapcheck:Leak
...
fun:DBusThreadManagerImpl
fun:chromeos::DBusThreadManager::Initialize
fun:chromeos::KioskModeIdleLogoutTest::SetUp
}
{
bug_144913_b
Heapcheck:Leak
fun:chromeos::DBusThreadManager::Initialize
fun:chromeos::KioskModeIdleLogoutTest::SetUp
}
{
bug_144913_c
Heapcheck:Leak
fun:MessageLoop::MessageLoop
fun:MessageLoopForUI::MessageLoopForUI
fun:AshTestBase
fun:KioskModeIdleLogoutTest
fun:KioskModeIdleLogoutTest_CheckObserversAfterUserLogin_Test
fun:testing::internal::TestFactoryImpl::CreateTest
}
{
bug_144913_d
Heapcheck:Leak
fun:MessageLoop::MessageLoop
fun:MessageLoopForUI::MessageLoopForUI
fun:AshTestBase
fun:KioskModeIdleLogoutTest
fun:KioskModeIdleLogoutTest_CheckObserversBeforeUserLogin_Test
fun:testing::internal::TestFactoryImpl::CreateTest
}
{
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_147755_a
Heapcheck:Leak
...
fun:PluginFinder::GetPluginInstaller
fun:PluginPrefs::EnablePluginIfPossibleCallback
}
{
bug_147755_b
Heapcheck:Leak
...
fun:ASCIIToUTF16
fun:PluginPrefsTest_UnifiedPepperFlashState_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
}
{
bug_153791
Heapcheck:Leak
...
fun:PluginFinder::GetPluginMetadata
fun:PluginPrefs::EnablePlugin
fun:PluginPrefsTest::EnablePluginSynchronously
fun:PluginPrefsTest_UnifiedPepperFlashState_Test::TestBody
}
{
bug_151976_a
Heapcheck:Leak
...
fun:TestURLRequestContext::Init
fun:TestURLRequestContext::TestURLRequestContext
fun:TestURLRequestContextGetter::GetURLRequestContext
fun:predictors::TestResourcePrefetcherDelegate::GetURLRequestContext
fun:predictors::ResourcePrefetcher::SendRequest
fun:predictors::ResourcePrefetcher::TryToLaunchPrefetchRequests
fun:predictors::ResourcePrefetcher::Start
}
{
bug_155530_a
Heapcheck:Leak
...
fun:GeolocationInfoBarQueueControllerTests_OneObservationPerInfoBarCancelled_Test::TestBody
}
{
bug_155530_b
Heapcheck:Leak
...
fun:*CreateLocaleDefaultValue
...
fun:GeolocationInfoBarQueueControllerTests::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_163111_a
Heapcheck:Leak
...
fun:dbus::Response::FromMethodCall
fun:chromeos::IBusPanelServiceImpl::*Properties
}
{
bug_163111_b
Heapcheck:Leak
...
fun:MethodCall
fun:chromeos::::ModemMessagingProxy::Delete
fun:chromeos::::ModemMessagingClientImpl::Delete
fun:chromeos::ModemMessagingClientTest_Delete_Test::TestBody
}
{
bug_163111_c
Heapcheck:Leak
...
fun:dbus::MessageWriter::AppendBasic
fun:dbus::MessageWriter::AppendString
fun:chromeos::IBusObjectWriter::AddAttachment
fun:chromeos::AppendIBusLookupTable
fun:chromeos::IBusPanelServiceTest_UpdateLookupTableTest_Test::TestBody
}
{
bug_163111_d
Heapcheck:Leak
...
fun:dbus::Response::FromMethodCall
fun:chromeos::IBusPanelServiceImpl::UpdateProperty
}
{
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
}
# TODO(thestig): bug_169185_a may be obsolete?
{
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_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_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_171983
Heapcheck:Leak
...
fun:chromeos::MagnificationManagerTest_MagnificationObserver_Test::TestBody
}
{
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_175435:
Heapcheck:Leak
...
fun:::StartSync
fun:::StartExplicitSync
fun:OneClickSigninHelper::DidStopLoading
}
{
bug_176888
Heapcheck:Leak
fun:__GI___strdup
fun:Init
fun:GcryptInitializer
}
{
bug_177285
Heapcheck:Leak
fun:MessageLoop
fun:FileSystemURLRequestJobTest
}
{
bug_179758_a
Heapcheck:Leak
...
fun:base::WeakPtrTest_NonOwnerThreadCanCopyAndAssignWeakPtr_Test::TestBody
}
{
bug_179758_b
Heapcheck:Leak
...
fun:base::WeakPtrTest_NonOwnerThreadCanCopyAndAssignWeakPtrBase_Test::TestBody
}
# * 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:ProfileSigninConfirmationDialogTest::SetUp
}
{
bug_189194_b
Heapcheck:Leak
...
fun:ProfileSigninConfirmationDialogTest_*_Test::TestBody
}
{
bug_225596
Heapcheck:Leak
fun:chromeos::input_method::InputMethodManagerImpl::Init
fun:chromeos::input_method::Initialize
fun:chromeos::input_method::InputMethodConfigurationTest_TestInitialize_Test::TestBody
}
{
bug_227271a
Heapcheck:Leak
...
fun:ScreenshotTaker::ShowNotification
}
{
bug_227271b
Heapcheck:Leak
fun:std::basic_string::_Rep::_S_create
fun:base::FilePath::Append
fun:base::FilePath::AppendASCII
fun:ScreenshotTaker::HandleTakePartialScreenshot
fun:ash::test::ScreenshotTakerTest_TakeScreenshot_Test::TestBody
}
|