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
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
|
# 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
{
Uninitialized value in deflate
Memcheck:Cond
...
fun:MOZ_Z_deflate
}
{
gtk developers don't like cleaning up one-time leaks. See http://mail.gnome.org/archives/gtk-devel-list/2004-April/msg00230.html
Memcheck:Leak
...
fun:gtk_init_check
}
{
Fontconfig leak?
Memcheck:Leak
...
fun:XML_ParseBuffer
fun:FcConfigParseAndLoad
}
{
bug_9245_FcConfigAppFontAddFile_leak
Memcheck:Leak
...
fun:FcConfigAppFontAddFile
}
{
# See also http://www.gnome.org/~johan/gtk.suppression
# (which has a smattering of similar pango suppressions)
pango_font_leak_todo
Memcheck:Leak
...
fun:FcFontRenderPrepare
obj:*
fun:pango_font_map_load_fontset
}
{
pango_font_leak_todo_2
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_strdup
fun:pango_script_get_sample_language
...
fun:pango_font_get_metrics
}
{
# Fontconfig leak, seen in shard 16 of 20 of ui_tests
# See https://bugs.freedesktop.org/show_bug.cgi?id=8428
# and http://www.gnome.org/~johan/gtk.suppression
fontconfig_bug_8428
Memcheck:Leak
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcPatternObjectAddWithBinding
}
{
# Another permutation of previous leak.
fontconfig_bug_8428_2
Memcheck:Leak
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcPatternObjectAdd
}
{
bug_18590
Memcheck:Leak
fun:malloc
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigSubstituteWithPat
fun:FcConfigSubstitute
}
{
dlopen invalid read, probably a bug in glibc. TODO(dkegel): file glibc bug
Memcheck:Value4
...
fun:dlopen@@GLIBC_2.1
fun:PR_LoadLibraryWithFlags
}
{
# glibc has a bug when it has to retry dns lookup?
# http://sourceware.org/bugzilla/show_bug.cgi?id=10391
glibc_bug_10391
Memcheck:Cond
...
fun:getaddrinfo
}
{
glibc leak. See also http://sources.redhat.com/bugzilla/show_bug.cgi?id=2451
Memcheck:Leak
fun:malloc
fun:_dl_map_object_from_fd
}
{
Pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug.
Memcheck:Leak
...
fun:NSS_NoDB_Init
}
{
Another pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug. Shows up under --show-reachable=yes.
Memcheck:Leak
...
fun:SECMOD_LoadUserModule
}
{
bug_12614
Memcheck:Leak
fun:malloc
...
fun:PR_LoadLibraryWithFlags
...
fun:SECMOD_LoadModule
}
{
Error in ICU
Memcheck:Overlap
fun:memcpy
fun:init_resb_result
}
{
libc_dynamiclinker_foo
Memcheck:Cond
obj:/lib*/ld-2.*.so
obj:/lib*/ld-2.*.so
}
{
libc_dynamiclinker_bar
Memcheck:Addr4
obj:/lib*/ld-2.*.so
obj:/lib*/ld-2.*.so
}
{
FIXME epoll uninitialized data 1
Memcheck:Param
epoll_ctl(epfd)
fun:syscall
fun:event_add
}
{
FIXME epoll uninitialized data 2
Memcheck:Param
epoll_ctl(epfd)
fun:syscall
fun:event_del
}
{
FIXME epoll uninitialized data 3
Memcheck:Param
epoll_wait(epfd)
fun:syscall
fun:event_base_loop
}
{
FIXME IPCing uninitialized data
Memcheck:Param
socketcall.sendmsg(msg.msg_iov[i])
fun:sendmsg
fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
}
{
# "The section of the SQLite library identified works exactly as it should."
# http://www.sqlite.org/cvstrac/tktview?tn=536,39
# http://www.sqlite.org/cvstrac/tktview?tn=694,39
# http://www.sqlite.org/cvstrac/tktview?tn=964,39
# This looks like a case where an entire page was allocated, the header and
# perhaps some data was written, but the entire buffer was not written to.
# The SQLite authors aren't very interested in adding code to clear buffers
# for no reason other than pleasing valgrind, but a patch might be accepted
# under a macro like SQLITE_SECURE_DELETE which could be construed to apply
# to cases like this. (Note that we compile with SQLITE_SECURE_DELETE.)
bug_20653a
Memcheck:Param
write(buf)
...
fun:sqlite3OsWrite
fun:pager_write_pagelist
}
{
bug_20653b
Memcheck:Param
write(buf)
...
fun:unixWrite
fun:sqlite3OsWrite
...
fun:pager_write
}
{
# There is a fix in mainline, http://www.sqlite.org/cvstrac/chngview?cn=5968
# See also http://article.gmane.org/gmane.comp.db.sqlite.general/43177
SQLite write
Memcheck:Param
write(buf)
...
fun:writeJournalHdr
}
# Fixed in newer SQLite
# http://www.sqlite.org/cvstrac/tktview?tn=3326
# http://www.sqlite.org/cvstrac/tktview?tn=3575
# (Caller of sqlite3VdbeExec is either sqlite3Step or its wrapper sqlite3_step)
{
SQLite_bug_3326
Memcheck:Cond
fun:sqlite3VdbeMemShallowCopy
fun:sqlite3VdbeExec
fun:sqlite3*tep
}
# SQLite intentionally leaks a little memory in findLockInfo() in sqlite3_open
# Newer versions don't do this.
# See http://www.mail-archive.com/sqlite-users@sqlite.org/msg02334.html
# and http://www.mail-archive.com/sqlite-users@sqlite.org/msg30449.html
{
sqlite_open_leak
Memcheck:Leak
...
fun:findLockInfo
...
fun:sqlite3OsOpen
}
{
bug_17576
Memcheck:Leak
...
fun:findLockInfo
...
fun:unixOpen
...
fun:openDatabase
}
{
# array of weak references freed but not processed?
bug_16576
Memcheck:Leak
...
fun:g_object_weak_ref
fun:g_object_add_weak_pointer
}
{
bug_16161
Memcheck:Leak
fun:malloc
fun:g_malloc
...
fun:gtk_clipboard_set_text
fun:_ZN23AutocompleteEditViewGtk20SavePrimarySelectionERKSs
}
{
# Maybe this is a widget caught in the middle of being destroyed?
bug_19369
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_datalist_id_set_data_full
fun:g_object_freeze_notify
fun:gtk_widget_unparent
fun:gtk_bin_remove
fun:g_cclosure_marshal_VOID__OBJECT
fun:g_type_class_meta_marshal
fun:g_closure_invoke
fun:signal_emit_unlocked_R
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gtk_container_remove
fun:gtk_widget_dispose
fun:g_object_run_dispose
fun:gtk_object_destroy
}
{
# Totem plugin leaks when we load it.
bug_21326
Memcheck:Leak
...
fun:_ZN5NPAPI9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo
}
{
# NSS bug https://bugzilla.mozilla.org/show_bug.cgi?id=518443
https://bugzilla.mozilla.org/show_bug.cgi?id=518443
Memcheck:Leak
fun:calloc
...
fun:PORT_ZAlloc_Util
fun:PORT_NewArena_Util
fun:PK11_ImportAndReturnPrivateKey
}
{
bug_23314
Memcheck:Addr2
fun:sqlite3PcacheClearSyncFlags
fun:syncJournal
fun:sqlite3PagerCommitPhaseOne
fun:sqlite3BtreeCommitPhaseOne
}
{
bug_23314b
Memcheck:Addr4
fun:sqlite3PcacheClearSyncFlags
fun:syncJournal
fun:sqlite3PagerCommitPhaseOne
fun:sqlite3BtreeCommitPhaseOne
}
{
# Valgrind doesn't grok clone quite yet on x64,
# see https://bugs.kde.org/show_bug.cgi?id=117564
valgrind_bug_117564
Memcheck:Param
clone(child_tidptr)
fun:clone
fun:_ZN7testing8internal13ExecDeathTest10AssumeRoleEv
}
{
http://sources.redhat.com/bugzilla/show_bug.cgi?id=5171
Memcheck:Leak
fun:calloc
fun:allocate_dtv
fun:_dl_allocate_tls
fun:pthread_create@@GLIBC_2.1
}
{
leak_in_ps
Memcheck:Leak
fun:malloc
fun:nss_parse_service_list
...
obj:/bin/ps
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149a
Memcheck:Addr1
...
fun:_ZN4base11VDSOSupport4InitEv
...
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN4base11VDSOSupport12kInvalidBaseE
...
fun:__libc_csu_init
fun:(below main)
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149b
Memcheck:Addr2
...
fun:_ZN4base11VDSOSupport4InitEv
...
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN4base11VDSOSupport12kInvalidBaseE
...
fun:__libc_csu_init
fun:(below main)
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149c
Memcheck:Addr4
...
fun:_ZN4base11VDSOSupport4InitEv
...
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN4base11VDSOSupport12kInvalidBaseE
...
fun:__libc_csu_init
fun:(below main)
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149d
Memcheck:Addr1
...
fun:_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE
...
fun:_Z41__static_initialization_and_destruction_0ii
...
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149e
Memcheck:Addr2
...
fun:_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE
...
fun:_Z41__static_initialization_and_destruction_0ii
...
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149f
Memcheck:Addr4
...
fun:_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE
...
fun:_Z41__static_initialization_and_destruction_0ii
...
}
{
bug_30110
Memcheck:Leak
fun:_Znw*
fun:_ZN13TCMallocGuardC1Ev
}
{
# zlib is smarter than we are:
# http://www.zlib.net/zlib_faq.html#faq36
zlib_conditional_jump_performance
Memcheck:Value4
...
fun:inflate
fun:_ZN4flip10FlipFramer15DecompressFrameEPKNS_9FlipFrameE
...
}
#-----------------------------------------------------------------------
# 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
{
Memcheck sanity test (ToolsSanityTest.MemoryLeak).
Memcheck:Leak
fun:_Zna*
fun:_ZN31ToolsSanityTest_MemoryLeak_Test8TestBodyEv
}
{
logging::InitLogging never frees filename. It would be hard to free properly.
Memcheck:Leak
...
fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateENS_20OldFileDeletionStateE
}
{
# See comment on struct CheckOpString
logging::MakeCheckOpString result not freed because app is aborting
Memcheck:Leak
fun:_Znw*
fun:_ZN7logging17MakeCheckOpStringIiiEEPSsRKT_RKT0_PKc
}
{
Linux tests don't bother to undo net::TestServerLauncher::LoadTestRootCert().
Memcheck:Leak
...
fun:_ZN3net18TestServerLauncher16LoadTestRootCertEv
}
{
# uitest's ResourceDispatcherTest.CrossSiteAfterCrash crashes on purpose
Intentional_crash
Memcheck:Addr4
fun:_ZN12AboutHandler10AboutCrashEv
}
{
# Minor commandline options leak in v8
# See http://code.google.com/p/v8/issues/detail?id=275
v8_bug_275
Memcheck:Leak
fun:_Znaj
...
fun:_ZN2v88internal8FlagList18SetFlagsFromStringEPKci
}
{
# Non-joinable thread doesn't clean up all state on program exit
# very common in ui tests
bug_16096
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendEPKcj
fun:_Z14StringAppendVTISsEvPT_PKNS0_10value_typeEPc
fun:_Z13StringAppendVPSsPKcPc
fun:_Z12StringPrintfPKcz
}
{
# According to dglazkov, these are one-time leaks and intentional.
# They may go away if the change to move these off the heap lands.
bug_17996
Memcheck:Leak
...
fun:_ZN7WebCore8SVGNames4initEv
}
{
intentional_ChromeThreadTest_NotReleasedIfTargetThreadNonExistent_Test_leak
Memcheck:Leak
fun:_Znw*
fun:_ZN58ChromeThreadTest_NotReleasedIfTargetThreadNonExistent_Test8TestBodyEv
fun:_ZN7testing4Test3RunEv
fun:_ZN7testing8internal12TestInfoImpl3RunEv
fun:_ZN7testing8TestCase3RunEv
fun:_ZN7testing8internal12UnitTestImpl11RunAllTestsEv
fun:_ZN7testing8UnitTest3RunEv
fun:_ZN9TestSuite3RunEv
fun:main
}
{
# A callback object that may or may not be called on exit.
# See comments in ProxyConfigServiceLinux::Delegate::PostDestroyTask (proxy_config_service_linux.cc)
intentional_NewRunnableMethod_ProxyConfigServiceLinux_Delegate_CancelableTask_Leak
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodIN3net23ProxyConfigServiceLinux8DelegateEMS2_FvvEEP14CancelableTaskPT_T0_
fun:_ZN3net23ProxyConfigServiceLinux8Delegate15PostDestroyTaskEv
fun:_ZN3net23ProxyConfigServiceLinuxD0Ev
}
{
# Since this object is deleted on the file thread, and the file thread may be
# gone by the time we want to delete the object, it can leak on shutdown. It
# should be harmless though.
bug_28862
Memcheck:Leak
fun:_Znw*
fun:_ZN11ProfileImpl26ReinitializeSpellCheckHostEb
fun:_ZN24BrowserRenderProcessHost31OnSpellCheckerRequestDictionaryEv
fun:_ZN3IPC7Message8DispatchI24BrowserRenderProcessHostEEbPKS0_PT_MS5_FvvE
}
{
# AudioRendererHost is deleted in IO thread, which may or may not be called on exit.
intentional_BrowserRenderProcessHost_Init_Leak
Memcheck:Leak
fun:_Znw*
fun:_ZN24BrowserRenderProcessHost4InitEbP23URLRequestContextGetter
fun:_ZN14RenderViewHost16CreateRenderViewEP23URLRequestContextGetter
}
{
# Async callback leak on exit in metrics_service.cc
intentional_MetricsService_GetPluginListTask_Run_Leak
Memcheck:Leak
fun:_Znw*
fun:_ZN14MetricsService17GetPluginListTask3RunEv
}
{
# Async deletion leak on exit in ChromeThread.
# This fails once in a while in LocaleTest.
intentional_ChromeThread_DeleteSoon_ExtensionMessageService_Leak
Memcheck:Leak
fun:_Znw*
fun:_ZN12ChromeThread10DeleteSoonI23ExtensionMessageServiceEEbNS_2IDERKN15tracked_objects8LocationEPT_
fun:_ZN12ChromeThread14DeleteOnThreadILNS_2IDE0EE8DestructI23ExtensionMessageServiceEEvPT_
}
{
# This is an on demand initialization which is done and then intentionally
# kept around (not freed) while the process is running.
intentional_WebCore_XMLNames_init_leak
Memcheck:Leak
...
fun:_ZN7WebCore8XMLNames4initEv
...
}
#-----------------------------------------------------------------------
# 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).
{
# Chromium flakily leaks tasks at shutdown, see
# http://crbug.com/6532
# http://codereview.chromium.org/20067
# http://codereview.chromium.org/42083
# To reproduce, run ipc tests
# This is the -O0 case
# In Purify, they don't even try to free them anymore.
# For now, in Valgrind, we'll add suppressions to ignore these leaks.
bug_6532
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvvEEP14CancelableTaskPT_T0_
}
{
# See http://crbug.com/6532
# This is the -O1 case
bug_6532b
Memcheck:Leak
...
fun:_ZN3IPC12ChannelProxy7Context14OnChannelErrorEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
}
{
# V8 (or test shell) leak? See http://crbug.com/9458
bug_9458
Memcheck:Leak
...
fun:_NPN_RegisterObject
fun:_Z25createV8ObjectForNPObjectP8NPObjectS0_
}
{
# webkit leak? See http://crbug.com/9503
bug_9503
Memcheck:Leak
...
fun:_ZN19TestWebViewDelegate24UpdateSelectionClipboardEb
}
{
# See http://crbug.com/11139
bug_11139
Memcheck:Leak
fun:_Znw*
fun:_ZN14ProcessWatcher23EnsureProcessTerminatedEi
}
{
bug_11838
Memcheck:Cond
fun:strlen
...
fun:__xmlRaiseError
...
fun:_ZN16Toolbar5Importer17LocateNextOpenTagEP9XmlReader
fun:_ZN16Toolbar5Importer27LocateNextTagWithStopByNameEP9XmlReaderRKSsS3_
fun:_ZN16Toolbar5Importer24ParseBookmarksFromReaderEP9XmlReaderPSt6vectorIN13ProfileWriter13BookmarkEntryESaIS4_EE
fun:_ZN39Toolbar5ImporterTest_BookmarkParse_Test8TestBodyEv
}
{
# See http://crbug.com/11213
bug_11213
Memcheck:Leak
...
fun:_ZN7WebCore14ResourceHandle6createERKNS_15ResourceRequestEPNS_20ResourceHandleClientEPNS_5FrameEbbb
fun:_ZN7WebCore14ResourceLoader4loadERKNS_15ResourceRequestE
fun:_ZN7WebCore17SubresourceLoader6createEPNS_5FrameEPNS_23SubresourceLoaderClientERKNS_15ResourceRequestEbbb
fun:_ZN7WebCore6Loader4Host20servePendingRequestsERN3WTF5DequeIPNS_7RequestEEERb
}
{
# very common in ui tests
bug_16089
Memcheck:Leak
fun:*
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN3net12HostResolver3Job5StartEv
}
{
# ditto, but tweaked to fire on bots, more robust against optimizer changes?
bug_16089b
Memcheck:Leak
fun:_Znw*
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN18chrome_browser_net9DnsMaster24PreLockedScheduleLookupsEv
}
{
# ditto, but tweaked for cat hit by URLFetcherTest.SameThreadsTest on bot
bug_16089c
Memcheck:Leak
fun:_Znw*
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN3net13TCPConnectJob13DoResolveHostEv
}
{
# very common in ui tests
bug_16091
Memcheck:Leak
...
fun:_ZN11MessageLoop22AddDestructionObserverEPNS_19DestructionObserverE
...
fun:_ZN3IPC11SyncChannel11SyncContext15OnChannelOpenedEv
}
{
# very common in ui tests
bug_16092
Memcheck:Leak
fun:*
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16092b
Memcheck:Leak
...
fun:_ZNSt11_Deque_baseIN11MessageLoop11PendingTaskESaIS1_EE17_M_initialize_mapEj
...
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16092c
Memcheck:Leak
...
fun:_ZNSt14priority_queueIN11MessageLoop11PendingTaskESt6vectorIS1_SaIS1_EESt4lessIS1_EEC1ERKS6_RKS4_
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16093
Memcheck:Leak
...
fun:getaddrinfo
}
{
# very common in ui tests
bug_16095
Memcheck:Leak
...
fun:_ZN11MessageLoop21AddToDelayedWorkQueueERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
}
{
# Somewhat common in ui tests. See also bug 9245.
bug_16102
Memcheck:Leak
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcConfigPatternAdd
fun:FcConfigSubstituteWithPat
fun:FcFontRenderPrepare
}
{
bug_16128
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
fun:_ZN11ChildThread4InitEv
}
{
bug_16128_2
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC11SyncChannelC2ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
fun:_ZN11ChildThread4InitEv
}
{
bug_16156
Memcheck:Leak
...
fun:gtk_im_context_set_cursor_location
...
fun:gtk_widget_size_allocate
}
{
bug_16326
Memcheck:Leak
fun:_Znw*
...
fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
fun:_ZN7WebCore22ResourceHandleInternal5startEv
}
{
bug_16577
Memcheck:Leak
fun:_Znw*
fun:_ZN12RenderThread22InformHostOfCacheStatsEv
}
{
# Webkit leak in WebCore::HTMLNames::init() ?
bug_16579
Memcheck:Leak
...
fun:_ZN7WebCore9HTMLNames4initEv
}
{
bug_16583
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_slice_alloc0
fun:g_type_create_instance
fun:*
fun:g_object_newv
fun:g_object_new_valist
}
{
bug_16584
Memcheck:Leak
fun:_Znw*
...
fun:_ZN7WebCore10CSSRuleSet12addToRuleSetEPNS_16AtomicStringImplERN3WTF7HashMapIS2_PNS_15CSSRuleDataListENS3_7PtrHashIS2_EENS3_10HashTraitsIS2_EENS9_IS6_EEEEPNS_12CSSStyleRuleEPNS_11CSSSelectorE
fun:_ZN7WebCore10CSSRuleSet7addRuleEPNS_12CSSStyleRuleEPNS_11CSSSelectorE
fun:_ZN7WebCore10CSSRuleSet17addRulesFromSheetEPNS_13CSSStyleSheetERKNS_19MediaQueryEvaluatorEPNS_16CSSStyleSelectorE
...
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentERKNS_6StringEPNS_14StyleSheetListEPNS_13CSSStyleSheetEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
}
{
bug_17113
Memcheck:Leak
fun:_Znw*
fun:_ZN18ResourceDispatcher12CreateBridgeERKSsRK4GURLS4_S4_S1_S1_S1_iiN12ResourceType4TypeEjii
fun:_ZN11webkit_glue20ResourceLoaderBridge6CreateERKSsRK4GURLS5_S5_S2_S2_S2_iiN12ResourceType4TypeEii
fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN6WebKit13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseE
fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN6WebKit13WebURLRequestEPNS1_18WebURLLoaderClientE
}
{
bug_17291
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocE*
...
fun:_ZN2v88internal8JSObject23SetPropertyWithCallbackEPNS0_6ObjectEPNS0_6StringES3_PS1_
}
{
# also bug 17979. It's a nest of leaks.
bug_17385
Memcheck:Leak
fun:_Znw*
...
fun:_ZN3IPC12ChannelProxy7Context13CreateChannelERKSsRKNS_7Channel4ModeE
fun:_ZN3IPC12ChannelProxy4InitERKSsNS_7Channel4ModeEP11MessageLoopb
fun:_ZN3IPC12ChannelProxyC2ERKSsNS_7Channel4ModeEP11MessageLoopPNS0_7ContextEb
...
fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
}
{
bug_17451
Memcheck:Leak
fun:_Znw*
...
fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
...
fun:_ZN11WebViewImpl13DownloadImageEiRK4GURLi
fun:_ZN10RenderView17OnDownloadFavIconEiRK4GURLi
}
{
bug_17451b
Memcheck:Leak
fun:_Znw*
...
fun:_ZN11webkit_glue15ResourceFetcher5StartEPN6WebKit8WebFrameE
...
fun:_ZN11WebViewImpl13DownloadImageEiRK4GURLi
fun:_ZN10RenderView17OnDownloadFavIconEiRK4GURLi
}
{
bug_17540
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
fun:_ZN16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
fun:_ZN3IPC7Channel11ChannelImpl7ConnectEv
fun:_ZN3IPC7Channel7ConnectEv
fun:_ZN3IPC12ChannelProxy7Context15OnChannelOpenedEv
}
{
# Originally filed as http://crbug.com/6547, but that was closed
# Found by running ui tests over and over
bug_18664
Memcheck:Leak
fun:_Znw*
fun:_ZN18ResourceDispatcher12CreateBridgeERKSsRK4GURLS4_S4_S1_S1_S1_iiN12ResourceType4TypeEjii
fun:_ZN11webkit_glue20ResourceLoaderBridge6CreateERKSsRK4GURLS5_S5_S2_S2_S2_iiN12ResourceType4TypeEii
...
fun:_ZN7WebCore14ResourceHandle5startEPNS_5FrameE
fun:_ZN7WebCore14ResourceHandle6createERKNS_15ResourceRequestEPNS_20ResourceHandleClientEPNS_5FrameEbbb
}
{
bug_19191
Memcheck:Leak
...
fun:_ZN7WebCore10XLinkNames4initEv
}
{
bug_19196
Memcheck:Leak
fun:_Znw*
fun:_ZN2v817RegisterExtensionEPNS_9ExtensionE
fun:_ZN7WebCore7V8Proxy23registerExtensionWithV8EPN2v89ExtensionE
fun:_ZN7WebCore7V8Proxy17registerExtensionEPN2v89ExtensionEi
fun:_ZN6WebKit17registerExtensionEPN2v89ExtensionEi
fun:_ZN12RenderThread23EnsureWebKitInitializedEv
}
{
bug_19371
Memcheck:Leak
fun:_Znw*
...
fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
fun:_ZN4base13WaitableEvent4WaitEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
}
{
bug_19377
Memcheck:Leak
fun:calloc
...
fun:event_base_new
fun:_ZN4base19MessagePumpLibeventC1Ev
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
bug_19463
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent4InitEv
fun:_ZN4base19MessagePumpLibeventC1Ev
fun:_ZN11MessageLoopC1ENS_4TypeE
}
{
bug_19546a
Memcheck:Leak
fun:_Znw*
fun:_ZN19SafeBrowsingService5StartEv
fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop
fun:_ZN22ResourceDispatcherHost10InitializeEv
fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
fun:_ZN24BrowserRenderProcessHost4InitEv
}
{
bug_19546b
Memcheck:Leak
fun:_Znw*
fun:_ZN19SafeBrowsingService14OnIOInitializeEP11MessageLoopRKSsS3_
fun:_ZN14RunnableMethodI19SafeBrowsingServiceMS0_FvP11MessageLoopRKSsS4_E6Tuple3IS2_SsSsEE3RunEv
}
{
bug_19546c
Memcheck:Leak
...
fun:_ZN19SafeBrowsingService5StartEv
fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop
fun:_ZN22ResourceDispatcherHost10InitializeEv
fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
fun:_ZN17ExtensionsService4InitEv
fun:_ZN11ProfileImpl14InitExtensionsEv
fun:_Z11BrowserMainRK18MainFunctionParams
fun:ChromeMain
fun:main
}
{
bug_20113
Memcheck:Leak
...
fun:malloc
fun:_ZN3WTF10fastMallocE*
...
fun:_ZN7WebCore16StorageNamespace23sessionStorageNamespaceEv
fun:_ZN7WebCore4Page14sessionStorageEb
fun:_ZNK7WebCore9DOMWindow14sessionStorageEv
fun:_ZN7WebCore17DOMWindowInternal*24sessionStorageAttrGetterEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
fun:_ZN2v88internal6Object23GetPropertyWithCallbackEPS1_S2_PNS0_6StringES2_
}
{
bug_20320
Memcheck:Leak
fun:malloc
fun:g_malloc
...
fun:gtk_accel_group_disconnect
fun:gtk_accel_group_disconnect_key
}
{
bug_20320b
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:handlers_find
fun:signal_handlers_foreach_matched_R
fun:g_signal_handlers_disconnect_matched
fun:gtk_accel_label_set_accel_widget
fun:gtk_accel_label_destroy
}
{
bug_20581
Memcheck:Leak
...
fun:btreeCreateTable
fun:sqlite3BtreeCreateTable
fun:sqlite3VdbeExec
fun:sqlite3Step
fun:sqlite3_step
fun:sqlite3_exec
}
{
bug_20616
Memcheck:Leak
...
fun:_ZN19SafeBrowsingService11GetDatabaseEv
fun:_ZN19SafeBrowsingService14OnDBInitializeEv
}
{
bug_20617
Memcheck:Leak
...
fun:_ZN18AutomationProvider30WaitForAppModalDialogToBeShownEPN3IPC7MessageE
}
{
bug_20641a
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodI19SafeBrowsingServiceMS0_FvP11MessageLoopRKSsS4_ES2_SsSsEP14CancelableTaskPT_T0_RKT1_RKT2_RKT3_
fun:_ZN19SafeBrowsingService5StartEv
fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop
}
{
bug_20641b
Memcheck:Leak
fun:_Znw*
fun:_ZN19SafeBrowsingService14OnIOInitializeEP11MessageLoopRKSsS3_
}
{
bug_20659
Memcheck:Leak
fun:_Znw*
fun:_ZN15tracked_objects10ThreadData12FindLifetimeERKNS_8LocationE
fun:_ZN15tracked_objects7Tracked13SetBirthPlaceERKNS_8LocationE
fun:_ZN11MessageLoop15PostTask_HelperERKN15tracked_objects8LocationEP4Taskxb
fun:_ZN11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx
fun:_ZN4base16BaseTimer_Helper19InitiateDelayedTaskEPNS0_9TimerTaskE
fun:_ZN4base9BaseTimerI27SafeBrowsingProtocolManagerLb0EE5StartENS_9TimeDeltaEPS1_MS1_FvvE
fun:_ZN27SafeBrowsingProtocolManager18ScheduleNextUpdateEb
fun:_ZN27SafeBrowsingProtocolManager10InitializeEv
}
{
bug_21010a
Memcheck:Value4
fun:_ZN2v88internal10PagedSpace10FindObjectEPh
}
{
bug_21010b
Memcheck:Value4
fun:_ZN2v88internal18HeapObjectIterator17HasNextInNextPageEv
}
{
bug_22021
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocE*
...
fun:_ZN7WebCore19V8EventListenerList3addEPNS_15V8EventListenerE
}
{
bug_22098
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
fun:_ZN16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
fun:_ZN3IPC7Channel4SendEPNS_7MessageE
fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE
fun:_ZN3IPC8SendTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
fun:_ZN11MessageLoop3RunEv
fun:_ZN4base6Thread3RunEP11MessageLoop
fun:_ZN4base6Thread10ThreadMainEv
fun:_Z10ThreadFuncPv
fun:start_thread
}
{
bug_22109
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendEPKcj
fun:_Z14StringAppendVTISsEvPT_PKNS0_10value_typeEPc
fun:_Z12StringPrintfPKcz
}
{
bug_22450
Memcheck:Leak
fun:_Znw*
fun:_ZN3net26DefaultClientSocketFactory21CreateTCPClientSocketERKNS_11AddressListE
fun:_ZN3net13TCPConnectJob12DoTCPConnectEv
fun:_ZN3net13TCPConnectJob6DoLoopEi
fun:_ZN3net13TCPConnectJob12OnIOCompleteEi
...
fun:_ZN3net16HostResolverImpl3Job16OnLookupCompleteEv
}
{
bug_22923
Memcheck:Leak
fun:_Znw*
...
fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_traitsESaItEEiiPN3IPC7Message6SenderEi
fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16_char_traitsESaItEEiPi
fun:_Z16DispatchToMethodI21ResourceMessageFilterMS0_FvRK4GURLbRKSbItN4base20string16_char_traitsESaItEEiPiES1_bS7_iiEvPT_T0_RK6Tuple4IT1_T2_T3_T4_EP6Tuple1IT5_E
}
{
bug_22932
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore26PlatformMessagePortChannel19postMessageToRemoteEN3WTF10PassOwnPtrINS_18MessagePortChannel9EventDataEEE
fun:_ZN7WebCore18MessagePortChannel19postMessageToRemoteEN3WTF10PassOwnPtrINS0_9EventDataEEE
fun:*
fun:_ZN7WebCore8V8Custom32v8MessagePortPostMessageCallbackERKN2v89ArgumentsE
}
{
bug_23104
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore9CSSParser23createFloatingValueListEv
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCore12parseUASheetERKNS_6StringE
fun:_ZN7WebCore12parseUASheetEPKcj
fun:_ZN7WebCore22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentEPNS_14StyleSheetListEPNS_13CSSStyleSheetES6_PKN3WTF6VectorINS7_6RefPtrIS5_EELj0EEEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
}
{
bug_23151
Memcheck:Addr4
...
fun:_ZN7WebCore23V8AbstractEventListener11handleEventEPNS_5EventE
fun:_ZN7WebCore11EventTarget18fireEventListenersEPNS_5EventE
fun:_ZN7WebCore11EventTarget13dispatchEventEN3WTF10PassRefPtrINS_5EventEEE
fun:_ZN7WebCore14XMLHttpRequest28callReadyStateChangeListenerEv
}
{
bug_23197
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN7WebCore10StringImpl19createUninitializedEjRPt
fun:_ZN7WebCore10StringImpl6createEPKtj
fun:_ZN6WebKit9WebString6assignEPKtj
fun:_ZN6WebKit9WebStringC1ERKSbItN4base20string16_char_traitsESaItEE
fun:_ZNK14WebPreferences5ApplyEP7WebView
fun:_ZN10RenderView4InitEiPN4base13WaitableEventEiRK19RendererPreferencesPNS0_14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseiPN4base13WaitableEventEiRK19RendererPreferencesRK14WebPreferencesPNS2_14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewEi16ModalDialogEventRK19RendererPreferencesRK14WebPreferencesi
...
fun:_Z12RendererMainRK18MainFunctionParams
fun:ChromeMain
fun:main
}
{
bug_23310
Memcheck:Leak
fun:_Znw*
fun:_ZN7history14HistoryBackend12SetPageTitleERK4GURLRKSbIwSt11char_traitsIwESaIwEE
fun:_Z16DispatchToMethodIN7history14HistoryBackendEMS1_FvRK4GURLRKSbIwSt11char_traitsIwESaIwEEES2_S8_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN14RunnableMethodIN7history14HistoryBackendEMS1_FvRK4GURLRKSbIwSt11char_traitsIwESaIwEEE6Tuple2IS2_S8_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
{
bug_23313
Memcheck:Leak
fun:_Znw*
...
fun:_ZNSt6vectorIN4skia19ConvolutionFilter1D14FilterInstanceESaIS2_EE9push_backERKS2_
fun:_ZN4skia19ConvolutionFilter1D9AddFilterEiPKsi
...
fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
}
{
bug_23918
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendERKSs
fun:_ZN12StatsCounterC1ERKSs
fun:_ZN12WebFrameImplC1EPN6WebKit14WebFrameClientE
fun:_ZN11WebViewImpl19initializeMainFrameEPN6WebKit14WebFrameClientE
fun:_ZN10RenderView4InitEiiRK19RendererPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewEiRK19RendererPreferencesRK14WebPreferencesi
fun:_Z16DispatchToMethodI12RenderThreadMS0_FviRK19RendererPreferencesRK14WebPreferencesiEiS1_S4_iEvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
fun:_ZN3IPC16MessageWithTupleI6Tuple4Ii19RendererPreferences14WebPreferencesiEE8DispatchI12RenderThreadMS7_FviRKS2_RKS3_iEEEbPKNS_7MessageEPT_T0_
fun:_ZN12RenderThread24OnControlMessageReceivedERKN3IPC7MessageE
fun:_ZN11ChildThread17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
}
{
bug_27313
Memcheck:Leak
...
fun:FT_Open_Face
fun:_Z11ref_ft_facej
fun:_ZN24SkScalerContext_FreeTypeC1EPK12SkDescriptor
fun:_ZN10SkFontHost19CreateScalerContextEPK12SkDescriptor
fun:_ZN15SkScalerContext6CreateEPK12SkDescriptor
fun:_ZN12SkGlyphCacheC1EPK12SkDescriptor
fun:_ZN12SkGlyphCache10VisitCacheEPK12SkDescriptorPFbPKS_PvES5_
fun:_Z19FontMetricsDescProcPK12SkDescriptorPv
fun:_ZNK7SkPaint14descriptorProcEPK8SkMatrixPFvPK12SkDescriptorPvES6_
fun:_ZNK7SkPaint14getFontMetricsEPNS_11FontMetricsEf
fun:_ZN7WebCore14SimpleFontData12platformInitEv
fun:_ZN7WebCore14SimpleFontDataC1ERKNS_16FontPlatformDataEbbPNS_11SVGFontDataE
}
{
bug_27317
Memcheck:Leak
...
fun:_ZN6WebKit17WebDataSourceImpl6createERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
fun:_ZN6WebKit21FrameLoaderClientImpl20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPNS_11WebViewImplE
fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
fun:_ZN10RenderView4InitEiiRK19RendererPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewEiRK19RendererPreferencesRK14WebPreferencesi
}
{
# See comment in main_menu.cc
main_menu_leak
Memcheck:Leak
...
fun:_ZN8chromeos8MainMenuC1Ev
}
# The following three suppressions are related to the workers code.
{
bug_27837
Memcheck:Leak
fun:_Znw*
fun:_ZN19WebSharedWorkerStub9OnConnectEii
fun:_Z16DispatchToMethodI19WebSharedWorkerStubMS0_FviiEiiEvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN3IPC16MessageWithTupleI6Tuple2IiiEE8DispatchI19WebSharedWorkerStubMS5_FviiEEEbPKNS_7MessageEPT_T0_
fun:_ZN19WebSharedWorkerStub17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN13MessageRouter12RouteMessageERKN3IPC7MessageE
fun:_ZN13MessageRouter17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN11ChildThread17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27838
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMessagePortChannelEEE
fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_15WebSharedWorker15ConnectListenerE
fun:_ZN19WebSharedWorkerStub9OnConnectEii
fun:_Z16DispatchToMethodI19WebSharedWorkerStubMS0_FviiEiiEvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN3IPC16MessageWithTupleI6Tuple2IiiEE8DispatchI19WebSharedWorkerStubMS5_FviiEEEbPKNS_7MessageEPT_T0_
fun:_ZN19WebSharedWorkerStub17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN13MessageRouter12RouteMessageERKN3IPC7MessageE
fun:_ZN13MessageRouter17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN11ChildThread17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27936
Memcheck:Leak
fun:_Znw*
fun:_ZN7history20ExpireHistoryBackend28BroadcastDeleteNotificationsEPNS0_18DeleteDependenciesE
fun:_ZN7history20ExpireHistoryBackend21ArchiveSomeOldHistoryEN4base4TimeEPKNS_20ExpiringVisitsReaderEi
fun:_ZN7history20ExpireHistoryBackend18DoArchiveIterationEv
fun:_Z16DispatchToMethodIN7history20ExpireHistoryBackendEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN27ScopedRunnableMethodFactoryIN7history20ExpireHistoryBackendEE14RunnableMethodIMS1_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal7Factory12LookupSymbolENS0_6VectorIKcEE
fun:_ZN2v88internal24AstBuildingParserFactory12LookupSymbolEPKci
fun:_ZN2v88internal6Parser15ParseIdentifierEPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
fun:_ZN2v88internal6Parser21ParseMemberExpressionEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
fun:_ZN2v88internal6Parser20ParseUnaryExpressionEPb
fun:_ZN2v88internal6Parser21ParseBinaryExpressionEibPb
fun:_ZN2v88internal6Parser26ParseConditionalExpressionEbPb
fun:_ZN2v88internal6Parser25ParseAssignmentExpressionEbPb
fun:_ZN2v88internal6Parser15ParseExpressionEbPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal7Factory12LookupSymbolENS0_6VectorIKcEE
fun:_ZN2v88internal24AstBuildingParserFactory12LookupSymbolEPKci
fun:_ZN2v88internal6Parser15ParseIdentifierEPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
fun:_ZN2v88internal6Parser21ParseMemberExpressionEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
fun:_ZN2v88internal6Parser20ParseUnaryExpressionEPb
fun:_ZN2v88internal6Parser21ParseBinaryExpressionEibPb
fun:_ZN2v88internal6Parser26ParseConditionalExpressionEbPb
fun:_ZN2v88internal6Parser25ParseAssignmentExpressionEbPb
fun:_ZN2v88internal6Parser15ParseExpressionEbPb
fun:_ZN2v88internal6Parser34ParseExpressionOrLabelledStatementEPNS0_8ZoneListINS0_6HandleINS0_6StringEEEEEPb
fun:_ZN2v88internal6Parser14ParseStatementEPNS0_8ZoneListINS0_6HandleINS0_6StringEEEEEPb
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal7Factory12LookupSymbolENS0_6VectorIKcEE
fun:_ZN2v88internal24AstBuildingParserFactory12LookupSymbolEPKci
fun:_ZN2v88internal6Parser15ParseIdentifierEPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
fun:_ZN2v88internal6Parser21ParseMemberExpressionEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
fun:_ZN2v88internal6Parser20ParseUnaryExpressionEPb
fun:_ZN2v88internal6Parser21ParseBinaryExpressionEibPb
fun:_ZN2v88internal6Parser26ParseConditionalExpressionEbPb
fun:_ZN2v88internal6Parser25ParseAssignmentExpressionEbPb
fun:_ZN2v88internal6Parser14ParseArgumentsEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal15FunctionLiteralC2ENS0_6HandleINS0_6StringEEEPNS0_5ScopeEPNS0_8ZoneListIPNS0_9StatementEEEiibNS2_INS0_10FixedArrayEEEiiib
fun:_ZN2v88internal15FunctionLiteralC1ENS0_6HandleINS0_6StringEEEPNS0_5ScopeEPNS0_8ZoneListIPNS0_9StatementEEEiibNS2_INS0_10FixedArrayEEEiiib
fun:_ZN2v88internal6Parser20ParseFunctionLiteralENS0_6HandleINS0_6StringEEEiNS1_19FunctionLiteralTypeEPb
fun:_ZN2v88internal6Parser24ParseFunctionDeclarationEPb
fun:_ZN2v88internal6Parser14ParseStatementEPNS0_8ZoneListINS0_6HandleINS0_6StringEEEEEPb
fun:_ZN2v88internal6Parser19ParseSourceElementsEPNS0_15ZoneListWrapperINS0_9StatementEEEiPb
fun:_ZN2v88internal6Parser12ParseProgramENS0_6HandleINS0_6StringEEEPN7unibrow15CharacterStreamEb
fun:_ZN2v88internal7MakeASTEbNS0_6HandleINS0_6ScriptEEEPNS_9ExtensionEPNS0_14ScriptDataImplE
fun:_ZN2v88internalL12MakeFunctionEbbNS0_8Compiler15ValidationStateENS0_6HandleINS0_6ScriptEEENS3_INS0_7ContextEEEPNS_9ExtensionEPNS0_14ScriptDataImplE
fun:_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_6StringEEENS2_INS0_6ObjectEEEiiPNS_9ExtensionEPNS0_14ScriptDataImplE
fun:_ZN2v88internal5Debug21CompileDebuggerScriptEi
fun:_ZN2v88internal5Debug4LoadEv
fun:_ZN2v88internal13EnterDebuggerC2Ev
fun:_ZN2v88internal13EnterDebuggerC1Ev
fun:_ZN2v88internal8Debugger4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEPb
}
{
bug_27991
Memcheck:Addr4
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base24MessagePumpCFRunLoopBase7RunWorkEv
fun:_ZN4base24MessagePumpCFRunLoopBase13RunWorkSourceEPv
fun:CFRunLoopRunSpecific
fun:CFRunLoopRunInMode
fun:RunCurrentEventLoopInMode
fun:ReceiveNextEventCommon
fun:BlockUntilNextEventMatchingListInMode
fun:_DPSNextEvent
fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
fun:-[NSApplication run]
fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE
fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27993
Memcheck:Leak
fun:_Znw*
fun:_Z11NewCallbackI22AppCacheDispatcherHostbPvEPN9Callback2IT0_T1_E4TypeEPT_MS8_FvS3_S4_E
fun:_ZN22AppCacheDispatcherHost10InitializeEPN3IPC7Message6SenderEii
fun:_ZN21ResourceMessageFilter18OnChannelConnectedEi
fun:_ZN3IPC12ChannelProxy7Context18OnChannelConnectedEi
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27993
Memcheck:Leak
fun:_Znw*
fun:_Z11NewCallbackI22AppCacheDispatcherHostN8appcache6StatusEPvEPN9Callback2IT0_T1_E4TypeEPT_MSA_FvS5_S6_E
fun:_ZN22AppCacheDispatcherHost10InitializeEPN3IPC7Message6SenderEii
fun:_ZN21ResourceMessageFilter18OnChannelConnectedEi
fun:_ZN3IPC12ChannelProxy7Context18OnChannelConnectedEi
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27993
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIP24DOMStorageDispatcherHostEE8allocateEmPKv
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE14_M_create_nodeERKS1_
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE9_M_insertEPSt18_Rb_tree_node_baseS9_RKS1_
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE13insert_uniqueERKS1_
fun:_ZNSt3setIP24DOMStorageDispatcherHostSt4lessIS1_ESaIS1_EE6insertERKS1_
fun:_ZN17DOMStorageContext22RegisterDispatcherHostEP24DOMStorageDispatcherHost
fun:_ZN24DOMStorageDispatcherHost4InitEi
fun:_ZN21ResourceMessageFilter18OnChannelConnectedEi
fun:_ZN3IPC12ChannelProxy7Context18OnChannelConnectedEi
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27993
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorIP4TaskE8allocateEmPKv
fun:_ZNSt11_Deque_baseIP4TaskSaIS1_EE16_M_allocate_nodeEv
fun:_ZNSt11_Deque_baseIP4TaskSaIS1_EE15_M_create_nodesEPPS1_S5_
fun:_ZNSt11_Deque_baseIP4TaskSaIS1_EE17_M_initialize_mapEm
fun:_ZNSt11_Deque_baseIP4TaskSaIS1_EEC2ERKS2_m
fun:_ZNSt5dequeIP4TaskSaIS1_EEC2ERKS2_
fun:_ZNSt5dequeIP4TaskSaIS1_EEC1ERKS2_
fun:_ZN8appcache19MockAppCacheStorageC2EPNS_15AppCacheServiceE
fun:_ZN8appcache19AppCacheStorageImplC2EPNS_15AppCacheServiceE
fun:_ZN8appcache19AppCacheStorageImplC1EPNS_15AppCacheServiceE
fun:_ZN8appcache15AppCacheService10InitializeERK8FilePath
fun:_ZN21ChromeAppCacheServiceC2ERK8FilePathb
fun:_ZN21ChromeAppCacheServiceC1ERK8FilePathb
fun:_ZN12_GLOBAL__N_118FactoryForOriginal6CreateEv
fun:_ZN29ChromeURLRequestContextGetter20GetURLRequestContextEv
fun:_ZN22AppCacheDispatcherHost10InitializeEPN3IPC7Message6SenderEii
fun:_ZN21ResourceMessageFilter18OnChannelConnectedEi
fun:_ZN3IPC12ChannelProxy7Context18OnChannelConnectedEi
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
}
{
bug_27993
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorIPNS_15_Hashtable_nodeISt4pairIKx13scoped_refptrIN8appcache8AppCacheEEEEEE8allocateEmPKv
fun:_ZNSt12_Vector_baseIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKx13scoped_refptrIN8appcache8AppCacheEEEEESaISA_EE11_M_allocateEm
fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKx13scoped_refptrIN8appcache8AppCacheEEEEESaISA_EE20_M_allocate_and_copyIPSA_EESE_mT_SF_
fun:_ZNSt6vectorIPN9__gnu_cxx15_Hashtable_nodeISt4pairIKx13scoped_refptrIN8appcache8AppCacheEEEEESaISA_EE7reserveEm
fun:_ZN9__gnu_cxx9hashtableISt4pairIKx13scoped_refptrIN8appcache8AppCacheEEExNS_4hashIxEESt10_Select1stIS7_ESt8equal_toIxESaIS6_EE21_M_initialize_bucketsEm
fun:_ZN9__gnu_cxx9hashtableISt4pairIKx13scoped_refptrIN8appcache8AppCacheEEExNS_4hashIxEESt10_Select1stIS7_ESt8equal_toIxESaIS6_EEC2EmRKS9_RKSD_RKSaIS7_E
fun:_ZN9__gnu_cxx9hashtableISt4pairIKx13scoped_refptrIN8appcache8AppCacheEEExNS_4hashIxEESt10_Select1stIS7_ESt8equal_toIxESaIS6_EEC1EmRKS9_RKSD_RKSaIS7_E
fun:_ZN9__gnu_cxx8hash_mapIx13scoped_refptrIN8appcache8AppCacheEENS_4hashIxEESt8equal_toIxESaIS4_EEC2Ev
fun:_ZN9__gnu_cxx8hash_mapIx13scoped_refptrIN8appcache8AppCacheEENS_4hashIxEESt8equal_toIxESaIS4_EEC1Ev
fun:_ZN8appcache19MockAppCacheStorageC2EPNS_15AppCacheServiceE
fun:_ZN8appcache19AppCacheStorageImplC2EPNS_15AppCacheServiceE
fun:_ZN8appcache19AppCacheStorageImplC1EPNS_15AppCacheServiceE
fun:_ZN8appcache15AppCacheService10InitializeERK8FilePath
fun:_ZN21ChromeAppCacheServiceC2ERK8FilePathb
fun:_ZN21ChromeAppCacheServiceC1ERK8FilePathb
fun:_ZN12_GLOBAL__N_118FactoryForOriginal6CreateEv
fun:_ZN29ChromeURLRequestContextGetter20GetURLRequestContextEv
fun:_ZN22AppCacheDispatcherHost10InitializeEPN3IPC7Message6SenderEii
fun:_ZN21ResourceMessageFilter18OnChannelConnectedEi
fun:_ZN3IPC12ChannelProxy7Context18OnChannelConnectedEi
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
}
{
bug_28026
Memcheck:Leak
fun:_Znw*
fun:_ZNK7WebCore11CSSSelector17extractPseudoTypeEv
fun:_ZNK7WebCore11CSSSelector10pseudoTypeEv
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCoreL12parseUASheetERKNS_6StringE
fun:_ZN7WebCoreL12parseUASheetEPKcj
fun:_ZN7WebCoreL22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC2EPNS_8DocumentEPNS_14StyleSheetListEPNS_13CSSStyleSheetES6_PKN3WTF6VectorINS7_6RefPtrIS5_EELm0EEEbb
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentEPNS_14StyleSheetListEPNS_13CSSStyleSheetES6_PKN3WTF6VectorINS7_6RefPtrIS5_EELm0EEEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPNS_11WebViewImplE
fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
fun:_ZN10RenderView4InitEliRK19RendererPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseliRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewElRK19RendererPreferencesRK14WebPreferencesi
fun:_Z16DispatchToMethodI12RenderThreadMS0_FvlRK19RendererPreferencesRK14WebPreferencesiElS1_S4_iEvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
}
{
bug_28027
Memcheck:Addr4
fun:_ZN3WTF17ChromiumThreading37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF16callOnMainThreadEPFvPvES0_
fun:_ZN7WebCore22ScriptExecutionContext20postTaskToMainThreadEN3WTF10PassOwnPtrINS0_4TaskEEE
fun:_ZN7WebCore8Document8postTaskEN3WTF10PassOwnPtrINS_22ScriptExecutionContext4TaskEEE
fun:_ZN6WebKit13WebWorkerBase16postTaskToLoaderEN3WTF10PassOwnPtrIN7WebCore22ScriptExecutionContext4TaskEEE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC2EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC1EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC2EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC1EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader6createEPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader25loadResourceSynchronouslyEPNS_13WorkerContextERKNS_15ResourceRequestERNS_22ThreadableLoaderClientERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore18WorkerScriptLoader17loadSynchronouslyEPNS_22ScriptExecutionContextERKNS_4KURLENS_24CrossOriginRequestPolicyE
fun:_ZN7WebCore13WorkerContext13importScriptsERKN3WTF6VectorINS_6StringELm0EEERKS3_iRi
fun:_ZN7WebCore8V8Custom36v8WorkerContextImportScriptsCallbackERKN2v89ArgumentsE
fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEiPPPS5_Pb
}
{
bug_28027
Memcheck:Addr4
fun:_ZN3WTF17ChromiumThreading37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF16callOnMainThreadEPFvPvES0_
fun:_ZN7WebCore8Document8postTaskEN3WTF10PassOwnPtrINS_22ScriptExecutionContext4TaskEEE
fun:_ZN6WebKit13WebWorkerBase16postTaskToLoaderEN3WTF10PassOwnPtrIN7WebCore22ScriptExecutionContext4TaskEEE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC2EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC1EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC2EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC1EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader6createEPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader25loadResourceSynchronouslyEPNS_13WorkerContextERKNS_15ResourceRequestERNS_22ThreadableLoaderClientERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore18WorkerScriptLoader17loadSynchronouslyEPNS_22ScriptExecutionContextERKNS_4KURLENS_24CrossOriginRequestPolicyE
fun:_ZN7WebCore13WorkerContext13importScriptsERKN3WTF6VectorINS_6StringELm0EEERKS3_iRi
fun:_ZN7WebCore8V8Custom36v8WorkerContextImportScriptsCallbackERKN2v89ArgumentsE
fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEiPPPS5_Pb
fun:_ZN2v86Script3RunEv
}
{
bug_28073
Memcheck:Addr4
fun:_ZN10CLVContextC2EPKvm
fun:_Z26getAllCarbonLazyValues2000v
fun:CLVVisitValuesForKey
fun:aeInstallLazyEventHandlers
fun:AEGetEventHandler
fun:AEGetSpecialHandler
fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl
fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh
fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_
fun:aeProcessAppleEvent
fun:AEProcessAppleEvent
fun:_DPSNextEvent
fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
fun:-[NSApplication run]
fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE
fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_28071
Memcheck:Addr4
fun:_ZN10CLVContextC2EPKvm
fun:_Z26getAllCarbonLazyValues2000v
fun:CLVVisitValuesForKey
fun:aeInstallLazyEventHandlers
fun:AEGetEventHandler
fun:AEGetSpecialHandler
fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl
fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh
fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_
fun:aeProcessAppleEvent
fun:AEProcessAppleEvent
fun:_DPSNextEvent
fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
fun:-[NSApplication run]
fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE
fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_28200
Memcheck:Leak
fun:malloc
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMessagePortChannelEEE
fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_15WebSharedWorker15ConnectListenerE
fun:_ZN19WebSharedWorkerStub9OnConnectEii
}
{
bug_28386
Memcheck:Addr4
fun:*OCSPRequestSession15OnReadCompletedEP10URLRequesti
fun:*OCSPRequestSession17OnResponseStartedEP10URLRequest
fun:_ZN10URLRequest15ResponseStartedEv
fun:_ZN13URLRequestJob21NotifyHeadersCompleteEv
fun:_ZN17URLRequestHttpJob21NotifyHeadersCompleteEv
fun:_ZN17URLRequestHttpJob16OnStartCompletedEi
fun:_Z16DispatchToMethodI17URLRequestHttpJobMS0_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplI17URLRequestHttpJobMS0_FviE6Tuple1IiEE13RunWithParamsERKS4_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net9HttpCache11Transaction10DoCallbackEi
fun:_ZN3net9HttpCache11Transaction12HandleResultEi
fun:_ZN3net9HttpCache11Transaction22OnNetworkInfoAvailableEi
fun:_Z16DispatchToMethodIN3net9HttpCache11TransactionEMS2_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplIN3net9HttpCache11TransactionEMS2_FviE6Tuple1IiEE13RunWithParamsERKS6_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net22HttpNetworkTransaction10DoCallbackEi
fun:_ZN3net22HttpNetworkTransaction12OnIOCompleteEi
fun:_Z16DispatchToMethodIN3net22HttpNetworkTransactionEMS1_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplIN3net22HttpNetworkTransactionEMS1_FviE6Tuple1IiEE13RunWithParamsERKS5_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net16HttpStreamParser12OnIOCompleteEi
fun:_Z16DispatchToMethodIN3net16HttpStreamParserEMS1_FviEiEvPT_T0_RK6Tuple1IT1_E
}
{
bug_28386
Memcheck:Addr4
fun:*OCSPRequestSession15OnReadCompletedEP10URLRequesti
fun:*OCSPRequestSession17OnResponseStartedEP10URLRequest
fun:_ZN10URLRequest15ResponseStartedEv
fun:_ZN13URLRequestJob21NotifyHeadersCompleteEv
fun:_ZN17URLRequestHttpJob21NotifyHeadersCompleteEv
fun:_ZN17URLRequestHttpJob16OnStartCompletedEi
fun:_Z16DispatchToMethodI17URLRequestHttpJobMS0_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplI17URLRequestHttpJobMS0_FviE6Tuple1IiEE13RunWithParamsERKS4_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net9HttpCache11Transaction10DoCallbackEi
fun:_ZN3net9HttpCache11Transaction12HandleResultEi
fun:_ZN3net9HttpCache11Transaction22OnNetworkInfoAvailableEi
fun:_Z16DispatchToMethodIN3net9HttpCache11TransactionEMS2_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplIN3net9HttpCache11TransactionEMS2_FviE6Tuple1IiEE13RunWithParamsERKS6_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net22HttpNetworkTransaction10DoCallbackEi
fun:_ZN3net22HttpNetworkTransaction12OnIOCompleteEi
fun:_Z16DispatchToMethodIN3net22HttpNetworkTransactionEMS1_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplIN3net22HttpNetworkTransactionEMS1_FviE6Tuple1IiEE13RunWithParamsERKS5_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net16HttpStreamParser12OnIOCompleteEi
fun:_Z16DispatchToMethodIN3net16HttpStreamParserEMS1_FviEiEvPT_T0_RK6Tuple1IT1_E
}
{
# GTK tooltip doesn't always initialize variables.
# https://bugzilla.gnome.org/show_bug.cgi?id=554686
tooltip_554686
Memcheck:Cond
fun:child_location_foreach
fun:gtk_fixed_forall
fun:gtk_container_forall
fun:find_widget_under_pointer
fun:gtk_tooltip_show_tooltip
fun:tooltip_popup_timeout
fun:gdk_threads_dispatch
fun:g_timeout_dispatch
}
{
# This looks like a bug in how the arguments passed to signals are bundled
# in closure, or a bug in how valgrind detects the error. I modified gtk to
# always set the variables passed to the signal and still saw the error.
# https://bugzilla.gnome.org/show_bug.cgi?id=554686
tooltip_554686_2
Memcheck:Cond
fun:_ZNK5views4View7HitTestERKN3gfx5PointE
fun:_ZN5views4View15GetViewForPointERKN3gfx5PointE
fun:_ZN5views17TooltipManagerGtk11ShowTooltipEiibP11_GtkTooltip
fun:_ZN5views9WidgetGtk14OnQueryTooltipEiiiP11_GtkTooltip
fun:_ZN5views9WidgetGtk16CallQueryTooltipEP10_GtkWidgetiiiP11_GtkTooltipPS0_
fun:_gtk_marshal_BOOLEAN__INT_INT_BOOLEAN_OBJECT
fun:g_closure_invoke
fun:signal_emit_unlocked_R
fun:g_signal_emit_valist
fun:g_signal_emit_by_name
fun:gtk_tooltip_run_requery
fun:gtk_tooltip_show_tooltip
fun:tooltip_popup_timeout
fun:gdk_threads_dispatch
fun:g_timeout_dispatch
}
# This task is created quite frequently and may leak on shutdown depending on
# ordering.
{
chromeos_network_task
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodIN8chromeos14NetworkLibraryEMS1_FviEiEP14CancelableTaskPT_T0_RKT1_
fun:_ZN8chromeos14NetworkLibrary24NetworkTrafficTimerFiredEv
fun:_Z16DispatchToMethodIN8chromeos14NetworkLibraryEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN4base9BaseTimerIN8chromeos14NetworkLibraryELb0EE9TimerTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_28633
Memcheck:Leak
fun:calloc
fun:__new_exitfn
fun:__cxa_atexit
}
{
bug_29069
Memcheck:Leak
fun:_Znw*
fun:_ZN16UserScriptMaster9StartScanEv
fun:_ZN16UserScriptMaster7ObserveE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN19NotificationService6NotifyE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN17ExtensionsService27OnLoadedInstalledExtensionsEv
...
fun:_ZN17ExtensionsService17LoadAllExtensionsEv
fun:_ZN17ExtensionsService4InitEv
}
{
bug_29069
Memcheck:Leak
fun:_Znw*
fun:_Z9SerializeRKSt6vectorI10UserScriptSaIS0_EE
fun:_ZN16UserScriptMaster14ScriptReloader7RunScanE8FilePathSt6vectorI10UserScriptSaIS3_EE
}
{
bug_29115
Memcheck:Leak
...
fun:_Z15sk_malloc_flagsjj
fun:_Z15sk_malloc_throwj
fun:_ZN7SkDeque9push_backEv
fun:_ZN8SkCanvas12internalSaveENS_9SaveFlagsE
fun:_ZN8SkCanvas4saveENS_9SaveFlagsE
fun:_ZN19PlatformContextSkia4saveEv
fun:_ZN7WebCore15GraphicsContext17savePlatformStateEv
}
{
bug_29392a
Memcheck:Leak
fun:_Znw*
fun:_ZN3net15FlipSessionPool3GetERKNS_12HostResolver11RequestInfoEPNS_18HttpNetworkSessionE
fun:_ZN3net22FlipNetworkTransaction16DoInitConnectionEv
fun:_ZN3net22FlipNetworkTransaction6DoLoopEi
fun:_ZN3net22FlipNetworkTransaction5StartEPKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPNS_7LoadLogE
}
{
bug_29392b
Memcheck:Leak
fun:_Znw*
fun:_ZN3net11FlipSession17GetOrCreateStreamERKNS_15HttpRequestInfoEPKNS_16UploadDataStreamE
fun:_ZN3net22FlipNetworkTransaction13DoSendRequestEv
fun:_ZN3net22FlipNetworkTransaction6DoLoopEi
fun:_ZN3net22FlipNetworkTransaction5StartEPKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEEPNS_7LoadLogE
}
{
bug_29675
Memcheck:Leak
fun:_Znw*
fun:_Z11BrowserMainRK18MainFunctionParams
fun:ChromeMain
fun:main
}
{
bug_30346
Memcheck:Leak
fun:_Znw*
...
fun:_ZN13TCMallocGuardC1Ev
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE
}
{
bug_30346b
Memcheck:Addr2
...
fun:_ZSt22__get_temporary_bufferIPN7WebCore11RenderLayerEESt4pairIPT_iEiS5_
fun:_ZNSt17_Temporary_bufferIPPN7WebCore11RenderLayerES2_EC1ES3_S3_
fun:_ZN7WebCore11RenderLayer17updateZOrderListsEv
fun:_ZN7WebCore11RenderLayer24updateLayerListsIfNeededEv
fun:_ZN7WebCore11RenderLayer38updateCompositingAndLayerListsIfNeededEv
}
{
bug_30667a
Memcheck:Value4
fun:inflate
fun:_ZN4flip10FlipFramer15DecompressFrameEPKNS_9FlipFrameE
...
fun:_ZN7testing4Test3RunEv
fun:_ZN7testing8internal12TestInfoImpl3RunEv
fun:_ZN7testing8TestCase3RunEv
fun:_ZN7testing8internal12UnitTestImpl11RunAllTestsEv
fun:_ZN7testing8UnitTest3RunEv
fun:_ZN9TestSuite3RunEv
fun:main
}
{
bug_30667b
Memcheck:Cond
fun:inflate_fast
fun:inflate
fun:_ZN4flip10FlipFramer15DecompressFrameEPKNS_9FlipFrameE
...
fun:_ZN7testing4Test3RunEv
fun:_ZN7testing8internal12TestInfoImpl3RunEv
fun:_ZN7testing8TestCase3RunEv
fun:_ZN7testing8internal12UnitTestImpl11RunAllTestsEv
fun:_ZN7testing8UnitTest3RunEv
fun:_ZN9TestSuite3RunEv
fun:main
}
{
bug_30703
Memcheck:Param
write(buf)
...
fun:zipCloseFileInZipRaw
fun:zipCloseFileInZip
fun:_Z13AddEntryToZipPvRK8FilePathS2_
}
{
bug_30704a
Memcheck:Value4
fun:crc32
...
fun:png_write_row
fun:_ZN3gfx8PNGCodec6EncodeEPKhNS0_11ColorFormatEiiibPSt6vectorIhSaIhEE
fun:_ZN3gfx8PNGCodec18EncodeBGRASkBitmapERK8SkBitmapbPSt6vectorIhSaIhEE
}
{
bug_30704b
Memcheck:Param
write(buf)
...
fun:_ZN26SandboxedExtensionUnpacker17RewriteImageFilesEv
}
|