blob: de9fcbf04240b62e48d020e8a991531d81a4e8df (
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
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
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
|
# There are three kinds of suppressions in this file:
# 1. Third party stuff we have no control over.
#
# 2. Intentional unit test errors, 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.
# 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.
{
FIXME mac kevent libevent probably needs valgrind hooks
Memcheck:Param
kevent(changelist)
fun:kevent
fun:event_base_new
}
{
# CoreAudio leak. See http://crbug.com/9351
bug_9351
Memcheck:Leak
...
fun:_ZN12HALCADClient19AddPropertyListenerEmPK26AudioObjectPropertyAddressPFlmmS2_PvES3_
...
fun:_ZN9HALSystem16CheckOutInstanceEv
...
}
{
bug_18215
Memcheck:Uninitialized
fun:_DPSNextEvent
fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
fun:-[NSApplication run]
}
{
# Also filed with Apple as rdar://7255382
bug_20459b
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFArrayInit
fun:CFArrayCreateMutableCopy
...
fun:_ZN8Security12KeychainCore5Trust8evaluate*
}
{
# See also http://openradar.appspot.com/radar?id=1169404
bug_79533b
Memcheck:Uninitialized
...
fun:_Z*19cssm_DataAbortQuery17cssm_dl_db_handlel
fun:CSSM_DL_DataAbortQuery
fun:_ZN11SSDLSession14DataAbortQueryEll
fun:_Z*19cssm_DataAbortQuery17cssm_dl_db_handlel
fun:CSSM_DL_DataAbortQuery
fun:tpDbFindIssuerCrl
fun:tpVerifyCertGroupWithCrls
}
{
# QTKit leak. See http://crbug.com/100772 and rdar://10319535.
bug_100772
Memcheck:Leak
fun:calloc
fun:QTMLCreateMutex
fun:WarholCreateGlobals
fun:INIT_QuickTimeLibInternal
fun:pthread_once
fun:INIT_QuickTimeLib
fun:EnterMovies_priv
fun:EnterMovies
fun:TundraUnitInputFromTSFileEntry
fun:TundraUnitVDIGInputEntry
fun:TundraUnitCreateFromDescription
fun:+[QTCaptureVDIGDevice _refreshDevices]
fun:+[QTCaptureVDIGDevice devicesWithIOType:]
fun:+[QTCaptureDevice devicesWithIOType:]
fun:+[QTCaptureDevice inputDevices]
fun:+[QTCaptureDevice inputDevicesWithMediaType:]
...
}
{
# See http://crbug.com/141293
bug_141293
Memcheck:Uninitialized
fun:deflateEnd
fun:deflateSetDictionary
fun:deflate
fun:png_write_finish_row
...
fun:png_write_find_filter
fun:_cg_png_write_row
fun:writeOnePng
fun:_CGImagePluginWritePNG
fun:CGImageDestinationFinalize
fun:+[NSBitmapImageRep(NSBitmapImageFileTypeExtensions) representationOfImageRepsInArray:usingType:properties:]
fun:-[NSBitmapImageRep(NSBitmapImageFileTypeExtensions) representationUsingType:properties:]
fun:_ZN3gfx8internal24Get1xPNGBytesFromNSImageEP7NSImage
}
{
# See http://crbug.com/385604
bug_385604_a
Memcheck:Leak
fun:_Znw*
fun:_ZNK11AEEventImpl9duplicateEv
fun:AESendMessage
fun:_ZL35HIToolboxLSNotificationCallbackFunc18LSNotificationCodedPKvPK7__LSASNS1_11LSSessionIDS1_
fun:_ZL48LSScheduleNotificationReceiveMessageCallbackFuncP12__CFMachPortPvlS1_
fun:__CFMachPortPerform
fun:__CFRunLoopRun
...
}
# Intentional leaks in AppKit, for an OS-level cache. Only appear on the first
# run of each reboot. See also issues 105525, 257276, 340847.
{
bug_257276
Memcheck:Leak
...
fun:ripc_DrawPath
fun:CGContextDrawPath
}
{
bug_257276_b
Memcheck:Leak
fun:malloc_zone_malloc
...
fun:setCursorFromBundle
fun:CoreCursorSet
fun:-[NSCursor set]
}
# 2. Intentional unit test errors, stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing.
{
# Mac Sandbox test cases are registered in a global map. This code is only
# used in the unit test binary.
Mac_Sandbox_Intentional_Leak1
Memcheck:Leak
fun:_Znw*
fun:_ZN7content8internal19RegisterSandboxTestINS_*
...
fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
fun:_ZN4dyld24initializeMainExecutableEv
}
{
# __cxa_get_globals leaks a structure when called for the first time
__cxa_get_globals one-time leak
Memcheck:Leak
...
fun:__cxa_get_globals
}
{
# Intentional leak of a time-based self-deleting object.
bug_264886
Memcheck:Leak
fun:_Znw*
...
fun:_ZN4base26MessagePumpInstrumentation6CreateERKNS_9TimeDeltaES3_
fun:_ZN4base24MessagePumpCFRunLoopBase21EnableInstrumentationEv
fun:_ZN4base24MessagePumpNSApplicationC2Ev
fun:_ZN4base24MessagePumpCrApplicationC2Ev
fun:_ZN4base24MessagePumpCrApplicationC1Ev
fun:_ZN4base14MessagePumpMac6CreateEv
}
# 3. Suppressions for real chromium bugs that are not yet fixed.
{
bug_17297
Memcheck:Leak
fun:malloc
...
fun:+[NSColor keyboardFocusIndicatorColor]
fun:+[NSColor colorWithCatalogName:colorName:]
fun:+[NSCatalogColor newWithCoder:zone:]
fun:-[NSColor initWithCoder:]
}
{
bug_18218
Memcheck:Leak
fun:malloc
fun:__addHandler2
fun:__NSFinalizeThreadData
fun:_pthread_tsd_cleanup
fun:_pthread_exit
fun:thread_start
}
{
bug_20582
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
fun:_ZN4base16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
}
{
bug_21479a
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CFPasteboardCreate
fun:CFPasteboardCreateUnique
fun:+[NSPasteboard _pasteboardWithName:]
fun:+[NSPasteboard pasteboardWithUniqueName]
}
{
bug_21479b
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CFPasteboardCreate
fun:+[NSPasteboard _pasteboardWithName:]
fun:-[FindPasteboard findPboard]
}
{
bug_27315
Memcheck:Leak
fun:_Znw*
fun:_ZNSt8_Rb_treeIlSt4pairIKlPN4llvm8PassInfoEESt10_Select1stIS5_ESt4lessIlESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSD_RKS5_
fun:_ZNSt8_Rb_treeIlSt4pairIKlPN4llvm8PassInfoEESt10_Select1stIS5_ESt4lessIlESaIS5_EE13insert_uniqueERKS5_
fun:_ZN4llvm16RegisterPassBase12registerPassEv
fun:_Z41__static_initialization_and_destruction_0ii
fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
}
{
bug_27644
Memcheck:Leak
...
fun:_ZN19WebSharedWorkerStub9OnConnectEii
}
{
bug_28847a
Memcheck:Leak
fun:_Znw*
fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_traitsESaItEEiiPN3IPC7Message6SenderEi
fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16_char_traitsESaItEEiPi
}
{
bug_28847b
Memcheck:Leak
fun:_Znw*
fun:_ZN16ChildProcessHost6LaunchERKSt6vectorISt4pairISsSsESaIS2_EEP11CommandLine
fun:_ZN17WorkerProcessHost4InitEv
fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_traitsESaItEEiiPN3IPC7Message6SenderEi
fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16_char_traitsESaItEEiPi
}
{
bug_28072a
Memcheck:Leak
...
fun:CSBackupSetItemExcluded
fun:_ZN8mac_util22SetFileBackupExclusionE*
fun:_ZN7history15HistoryDatabase4InitE*
fun:_ZN7history14HistoryBackend8InitImplEv
fun:_ZN7history14HistoryBackend4InitEb
}
{
bug_28072b
Memcheck:Leak
fun:_Znw*
fun:_ZN7history14HistoryBackend8InitImplEv
fun:_ZN7history14HistoryBackend4InitEb
}
{
bug_28072c
Memcheck:Unaddressable
...
fun:CSBackupSetItemExcluded
fun:_ZN8mac_util22SetFileBackupExclusionE*
fun:_ZN7history15HistoryDatabase4InitE*
fun:_ZN7history14HistoryBackend8InitImplEv
fun:_ZN7history14HistoryBackend4InitEb
}
{
bug_28072d
Memcheck:Unaddressable
...
fun:CSBackupSetItemExcluded
fun:_ZN4base3mac22SetFileBackupExclusionE*
fun:_ZN7history15HistoryDatabase4InitE*
fun:_ZN7history14HistoryBackend8InitImplERKSs
fun:_ZN7history14HistoryBackend4InitERKSsb
}
# Note: bug 31634 happens very sporatically.
{
bug_31634
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFDictionaryInit
fun:CFDictionaryCreate
fun:classDescription
}
{
bug_35164
Memcheck:Uninitialized
...
fun:gl_context_init_client_state
fun:ogl_begin_rendering
fun:CARenderOGLRender
fun:view_draw
}
{
bug_35625
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CGTypeCreateInstanceWithAllocator
fun:CGTypeCreateInstance
fun:CGFunctionCreate
fun:CGGradientGetFunction
fun:CGContextDrawLinearGradient
...
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
}
{
bug_40429
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:+[NSObject allocWithZone:]
...
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSButtonCell initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSControl initWithCoder:]
fun:-[NSButton initWithCoder:]
fun:_decodeObjectBinary
fun:-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]
fun:-[NSArray(NSArray) initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSView initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
}
{
bug_40429b
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
...
fun:+[NSObject allocWithZone:]
...
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSNibConnector initWithCoder:]
fun:-[NSNibControlConnector initWithCoder:]
fun:_decodeObjectBinary
fun:-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]
fun:-[NSArray(NSArray) initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSIBObjectData initWithCoder:]
fun:_decodeObjectBinary
}
{
bug_40429c
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:+[NSObject allocWithZone:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSButtonCell initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSControl initWithCoder:]
fun:-[NSButton initWithCoder:]
fun:_decodeObjectBinary
fun:-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]
fun:-[NSArray(NSArray) initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSView initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSResponder initWithCoder:]
fun:-[NSView initWithCoder:]
}
{
bug_40659
Memcheck:Leak
fun:_Znw*
...
fun:_ZN19extension_file_util13LoadExtensionE*
fun:_ZN12CrxInstaller15CompleteInstallEv
}
{
bug_47949_a
Memcheck:Uninitialized
...
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
fun:_ZN18FocusIndicationFix40currentOSHasSetFocusRingStyleInBitmapBugEv
}
{
bug_47949_b
Memcheck:Uninitialized
...
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
fun:_ZN18FocusIndicationFix40currentOSHasSetFocusRingStyleInBitmapBugEv
}
{
bug_47949_c
Memcheck:Leak
...
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
fun:_ZN18FocusIndicationFix40currentOSHasSetFocusRingStyleInBitmapBugEv
}
{
bug_50286
Memcheck:Leak
fun:_Znw*
fun:_ZN11ProfileImpl14InitExtensionsEv
fun:_ZN14ProfileManager10AddProfileEP7Profileb
fun:_ZN14ProfileManager10GetProfileE*
fun:_ZN14ProfileManager10GetProfileE*
fun:_ZN14ProfileManager17GetDefaultProfileE*
fun:_ZN12_GLOBAL__N_113CreateProfileE*
fun:_Z11BrowserMainRK18MainFunctionParams
fun:ChromeMain
fun:main
}
{
bug_50297_a
Memcheck:Uninitialized
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
...
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN4base11MessageLoop11RunInternalEv
}
{
bug_50297_b
Memcheck:Uninitialized
fun:_ZN6Pickle8FindNextEmPKcS1_
fun:_ZN3IPC7Message8FindNextEPKcS2_
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
...
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN4base11MessageLoop11RunInternalEv
}
{
bug_50638_a
Memcheck:Uninitialized
fun:gleUpdateViewScissorData
...
fun:cgl_set_surface
fun:ogl_attach_surface
fun:ogl_render_fade_transition
fun:ogl_render_layer_
...
fun:ogl_render_layers
fun:CARenderOGLRender
fun:view_draw
}
{
bug_50638_b
Memcheck:Uninitialized
fun:gleUpdateViewScissorData
fun:cgl_set_surface
fun:ogl_attach_surface
fun:ogl_render_layer_contents_bg
fun:ogl_render_layer_image_
fun:ogl_render_layer_
fun:ogl_render_layer_image_
fun:ogl_render_layer_
fun:ogl_render_layer_image_
fun:ogl_render_layer_
fun:ogl_render_layers
fun:CARenderOGLRender
fun:view_draw
}
{
bug_50968
Memcheck:Unaddressable
fun:sqlite3PcacheClearSyncFlags
fun:syncJournal
fun:pagerStress
fun:sqlite3PcacheFetch
fun:sqlite3PagerAcquire2
fun:sqlite3PagerAcquire
fun:btreeGetPage
fun:allocateBtreePage
fun:btreeCreateTable
fun:sqlite3BtreeCreateTable
fun:sqlite3VdbeExec
fun:sqlite3Step
fun:sqlite3_step
fun:sqlite3_exec
fun:_ZN3sql10Connection7ExecuteEPKc
fun:_ZN17TokenServiceTable4InitEv
fun:_ZN11WebDatabase4InitE*
fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
}
{
bug_52681_a
Memcheck:Leak
fun:_Znw*
fun:_ZN16ChildProcessHost13CreateChannelEv
fun:_ZN18UtilityProcessHost12StartProcessE*
fun:_ZN18UtilityProcessHost22StartExtensionUnpackerE*
}
{
bug_52681_b
Memcheck:Leak
fun:_Znw*
...
fun:_ZN16ChildProcessHost13CreateChannelEv
fun:_ZN18UtilityProcessHost12StartProcessE*
fun:_ZN18UtilityProcessHost22StartExtensionUnpackerE*
fun:_ZN26SandboxedUnpacker22StartProcessOnIOThreadE*
}
{
bug_53742_a
Memcheck:Uninitialized
...
fun:_ZN16AudioQueueObject12ConvertInputEP9AQCommandRmb
fun:_ZN16AudioQueueObject12RunConverterEi
fun:_ZN18AQConverterManager17AQConverterThread3RunEv
fun:_ZN18AQConverterManager17AQConverterThread20ConverterThreadEntryEPv
fun:_ZN9CAPThread5EntryEPS_
fun:_pthread_start
fun:thread_start
}
{
bug_53742_b
Memcheck:Uninitialized
fun:_ZN16AudioQueueObject12ConvertInputEP9AQCommandRmb
fun:_ZN16AudioQueueObject5ResetEv
fun:_ZN16AudioQueueObject4StopEb
}
{
bug_53989_a
Memcheck:Uninitialized
fun:glvm_function_new
fun:glvmCreateModularFunction
fun:gleGetVertexSubmitFuncObjectAndKey
fun:gleSetVertexArrayFunc
fun:gleDrawArraysOrElements_ExecCore
fun:gleDrawArraysOrElements_IMM_Exec
fun:gl_context_draw
fun:ogl_array_flush
fun:ogl_primitives_end_
...
fun:CARenderOGLRender
fun:view_draw
fun:view_display_link
fun:link_callback
}
{
bug_53989_b
Memcheck:Uninitialized
fun:glvm_function_hash_value_6
fun:glvm_hash_set_*
fun:glvm*ModularFunction*Cache
fun:gleGetVertexSubmitFuncObjectAndKey
fun:gleSetVertexArrayFunc
fun:gleDrawArraysOrElements_ExecCore
fun:gleDrawArraysOrElements_IMM_Exec
fun:gl_context_draw
fun:ogl_array_flush
fun:ogl_primitives_end_
...
fun:CARenderOGLRender
fun:view_draw
fun:view_display_link
}
{
bug_53989_c
Memcheck:Uninitialized
...
fun:gleGetVertexSubmitFuncObjectAndKey
fun:gleSetVertexArrayFunc
fun:gleDrawArraysOrElements_ExecCore
fun:gleDrawArraysOrElements_IMM_Exec
fun:gl_context_draw
fun:ogl_array_flush
fun:ogl_primitives_end_
...
fun:CARenderOGLRender
fun:view_draw
fun:view_display_link
fun:link_callback
}
{
bug_55773
Memcheck:Unaddressable
fun:sseCGSFill8by1
fun:argb32_mark_constshape
fun:argb32_mark
fun:ripl_BltShape
fun:ripc_Render
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
fun:-[NSWindow displayIfNeeded]
fun:-[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:]
fun:-[NSWindow orderWindow:relativeTo:]
fun:-[NSWindow addChildWindow:ordered:]
fun:-[GTMWindowSheetController(PrivateMethods) beginSystemSheet:withInfo:modalForView:withParameters:]
fun:-[GTMWindowSheetController beginSystemSheet:modalForView:withParameters:]
fun:-[GTMWindowSheetController beginSheet:modalForView:modalDelegate:didEndSelector:contextInfo:]
}
{
bug_58860_a
Memcheck:Unaddressable
fun:memcpy
...
fun:FSFindFolder
fun:_ZN12_GLOBAL__N_124GetPluginCommonDirectoryE*
fun:_ZN6webkit5npapi10PluginList20GetPluginDirectoriesE*
fun:_ZN6webkit5npapi10PluginList11LoadPluginsEb
fun:_ZN6webkit5npapi10PluginList10GetPluginsEbPSt6vectorI13WebPluginInfoSaIS2_EE
fun:_ZN13PluginUpdater30GetPreferencesDataOnFileThreadEPv
}
{
bug_58860_b
Memcheck:Unaddressable
...
fun:FSFindFolder
fun:_ZN12_GLOBAL__N_124GetPluginCommonDirectoryE*
fun:_ZN6webkit5npapi10PluginList20GetPluginDirectoriesE*
fun:_ZN6webkit5npapi10PluginList11LoadPluginsEb
fun:_ZN6webkit5npapi10PluginList10GetPluginsEbPSt6vectorI13WebPluginInfoSaIS2_EE
fun:_ZN13PluginUpdater30GetPreferencesDataOnFileThreadEPv
}
{
bug_51682a
Memcheck:Leak
fun:malloc
fun:__cxa_get_globals
fun:__cxa_allocate_exception
fun:_ZN8Security9CssmError7throwMeEi
fun:_ZN9RSASigner6verifyEPKvmS1_m
fun:_ZN16SignatureContext5finalERKN8Security8CssmDataE
fun:_ZL20cssm_VerifyDataFinallyPK9cssm_data
fun:CSSM_VerifyDataFinal
fun:_ZN4base17SignatureVerifier11VerifyFinalEv
fun:_ZN36SignatureVerifierTest_BasicTest_Test8TestBodyEv
}
{
bug_51682b
Memcheck:Leak
fun:malloc
fun:__cxa_get_globals
fun:__cxa_allocate_exception
fun:_ZN8Security9CssmError7throwMeEi
...
fun:SecTrustEvaluate
}
{
bug_51682c
Memcheck:Leak
fun:realloc
fun:_ZN16DefaultAllocator7reallocEPvm
fun:_ZN8Security28CssmAllocatorMemoryFunctions12relayReallocEPvmS1_
fun:_ZNK8Security19CssmMemoryFunctions7reallocEPvm
fun:_ZN8Security28CssmMemoryFunctionsAllocator7reallocEPvm
fun:_ZN10Attachment13upcallReallocElPvj
fun:_ZN8Security13PluginSession7reallocEPvm
fun:_ZN17DecodedExtensions12addExtensionERK9cssm_databPvbPK22SecAsn1Template_structPS1_
fun:_ZN17DecodedExtensions13decodeFromNssEPP17NSS_CertExtension
fun:_ZN11DecodedCertC2ER18AppleX509CLSessionRKN8Security8CssmDataE
fun:_ZN18AppleX509CLSession22CertGetFirstFieldValueERKN8Security8CssmDataES3_RjRP9cssm_data
fun:_Z27cssm_CertGetFirstFieldValuelPK9cssm_dataS1_PlPjPPS_
fun:CSSM_CL_CertGetFirstFieldValue
}
{
bug_60873
Memcheck:Uninitialized
fun:UTF8ToCString
fun:_Z16UTF8ToClassicHFSPKcmmmPh
fun:_Z14PathMakeFSSpecPKcP6FSSpecPh
fun:NativePathNameToFSSpec
fun:ConvertProfLocation
fun:GetProfileLocationOfSuite
fun:_CMGetProfileOfSuite
fun:CMGetProfileByAVID
fun:CMSCreateDisplayProfile
fun:create
fun:CMSTransformCreate
fun:createBase
fun:initialize
fun:createColorTransform
fun:CGColorTransformCreateMutable
fun:CGBitmapColorTransformCreate
fun:__CGBitmapContextDelegateCreate
fun:__CGBitmapContextDelegateCreate
fun:createBitmapContext
fun:CGBitmapContextCreate
fun:_ZN4skia12_GLOBAL__N_1L16CGContextForDataEPvii
fun:_ZN4skia20BitmapPlatformDevice*
}
{
bug_61737
Memcheck:Uninitialized
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE36ParseMemberWithNewPrefixesExpressionEPiPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE14ParseNewPrefixEPiPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE18ParseNewExpressionEPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE22ParsePostfixExpressionEPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE20ParseUnaryExpressionEPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE21ParseBinaryExpressionEibPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE26ParseConditionalExpressionEbPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE25ParseAssignmentExpressionEbPb
...
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE19ParseSourceElementsEiPb
fun:_ZN2v88internal9preparser9PreParserINS0_7ScannerENS0_21PartialParserRecorderEE15PreParseProgramEPS3_PS4_b
fun:_ZN2v88internal9ParserApi15PartialPreParseENS0_6HandleINS0_6StringEEEPN7unibrow15CharacterStreamEPNS_9ExtensionE
fun:_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_6StringEEENS2_INS0_6ObjectEEEiiPNS_9ExtensionEPNS0_14ScriptDataImplES6_NS0_11NativesFlagE
}
{
bug_61929
Memcheck:Leak
fun:calloc
fun:IOAlloc
fun:CMOpenOrNewAccess
fun:CMOpenProfile
fun:_CMGetProfileOfSuite
fun:CMGetProfileByAVID
fun:CMSCreateDisplayProfile
fun:create
fun:CMSTransformCreate
fun:createBase
fun:initialize
fun:createColorTransform
fun:CGColorTransformCreateMutable
fun:CGBitmapColorTransformCreate
fun:__CGBitmapContextDelegateCreate
fun:__CGBitmapContextDelegateCreate
fun:createBitmapContext
fun:CGBitmapContextCreate
}
{
bug_63024a
Memcheck:Uninitialized
fun:memcpy
fun:_ZN8Security13NameValuePair9CloneDataERKNS_8CssmDataE
fun:_ZN8Security13NameValuePairC2ERKNS_8CssmDataE
fun:_ZN8Security19NameValueDictionary12MakeFromDataERKNS_8CssmDataE
fun:_ZN8Security19NameValueDictionaryC2ERKNS_8CssmDataE
fun:_ZN8Security12KeychainCore12CCallbackMgr7consumeEjjRKNS_8CssmDataE
fun:_ZN8Security14SecurityServer16NotificationPort7receiveERKNS_12MachPlusPlus7MessageE
fun:_ZN8Security12MachPlusPlus10CFAutoPort10cfCallbackEP12__CFMachPortPvlS4_
}
{
bug_63024b
Memcheck:Uninitialized
fun:_ZN8Security19NameValueDictionary12MakeFromDataERKNS_8CssmDataE
fun:_ZN8Security19NameValueDictionaryC2ERKNS_8CssmDataE
fun:_ZN8Security12KeychainCore12CCallbackMgr7consumeEjjRKNS_8CssmDataE
fun:_ZN8Security14SecurityServer16NotificationPort7receiveERKNS_12MachPlusPlus7MessageE
fun:_ZN8Security12MachPlusPlus10CFAutoPort10cfCallbackEP12__CFMachPortPvlS4_
}
{
bug_63024c
Memcheck:Free
fun:_ZdlPv
fun:_ZN8Security19NameValueDictionaryD2Ev
fun:_ZN8Security12KeychainCore12CCallbackMgr7consumeEjjRKNS_8CssmDataE
fun:_ZN8Security14SecurityServer16NotificationPort7receiveERKNS_12MachPlusPlus7MessageE
fun:_ZN8Security12MachPlusPlus10CFAutoPort10cfCallbackEP12__CFMachPortPvlS4_
}
{
bug_63670
Memcheck:Uninitialized
fun:NSIntersectionRect
fun:-[BrowserWindowController tabContentsViewFrameWillChange:frameRect:]
fun:-[TabStripController tabContentsViewFrameWillChange:frameRect:]
fun:-[TabContentsController tabContentsViewFrameWillChange:]
fun:-[ResizeNotificationView setFrame:]
fun:-[TabStripController swapInTabAtIndex:]
fun:-[TabStripController selectTabWithContents:previousContents:atIndex:userGesture:]
fun:_ZN27TabStripModelObserverBridge13TabSelectedAtEP18TabContentsWrapperS1_ib
fun:_ZN13TabStripModel26ChangeSelectedContentsFromEP18TabContentsWrapperib
fun:_ZN13TabStripModel19InsertTabContentsAtEiP18TabContentsWrapperi
fun:_ZN13TabStripModel14AddTabContentsEP18TabContentsWrapperiji
fun:_ZN7browser8NavigateEPNS_14NavigateParamsE
fun:_ZN11BrowserInit17LaunchWithProfile17OpenTabsInBrowserEP7BrowserbRKSt6vectorINS0_3TabESaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vectorI4GURLSaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile17ProcessLaunchURLsEbRKSt6vectorI4GURLSaIS2_EE
fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7Profileb
fun:_ZN11BrowserInit13LaunchBrowserE*
fun:_ZN11BrowserInit18ProcessCmdLineImplE*
fun:_ZN11BrowserInit5StartE*
}
{
bug_64463
Memcheck:Leak
fun:_Znw*
fun:_ZN4base16MessageLoopProxy22currentEv
fun:_ZN3net12CertVerifier7RequestC2EPS0_PNS_15X509CertificateERKSsiPNS_16CertVerifyResultEP14CallbackRunnerI6Tuple1IiEE
}
{
bug_65940
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC11SyncChannelC2ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEP11MessageLoopbPN4base13WaitableEventE
fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEP11MessageLoopbPN4base13WaitableEventE
fun:_ZN11ChildThread4InitEv
fun:_ZN11ChildThreadC2Ev
fun:_ZN13UtilityThreadC2Ev
fun:_ZN13UtilityThreadC1Ev
}
{
bug_67291
Memcheck:Leak
fun:_Znw*
...
fun:_ZN16ExtensionInfoMap12AddExtensionEPK9Extension
}
{
bug_68090
Memcheck:Uninitialized
fun:_ZL10AddEncHashP12EncHashTablePKhij
fun:_Z16BuildMacEncTablev
fun:_ZN15TParsingContext13GetParseProcsEv
fun:_ZN19TSFNTParsingContext13GetParseProcsEv
fun:_ZN18TCIDParsingContext13GetParseProcsEv
fun:_ZN16TType1OTFCIDFont20ParseCFFCIDFontDictsERK19TType1CFFDescriptorP32Type1ProtectionEvaluationContextRVt
fun:_ZN16TType1OTFCIDFont15ParseCFFCIDFontERK19TType1CFFDescriptorP32Type1ProtectionEvaluationContext
fun:_ZN16TType1OTFCIDFontC2ERK19TType1CFFDescriptor
fun:_ZN10TType1Font7GetFontEPK5TFont
fun:_ZN12TType1StrikeC2EPK5TFontmPK13FontVariationRK15StrikeTransform
fun:_ZN12TType1Strike9GetStrikeERK18TStrikeDescription
fun:_Z19Type1GetStrikeSpecsmPK18TStrikeDescriptionP11StrikeSpecs
fun:_ZNK19TConcreteFontScaler14GetFontMetricsEv
...
fun:_ZNK9TBaseFont20CalculateFontMetricsEb
fun:_ZNK9TBaseFont15InitFontMetricsEv
fun:_ZNK9TBaseFont16GetStrikeMetricsEfPK17CGAffineTransformb
}
{
bug_73036
Memcheck:Leak
fun:malloc_zone_calloc
fun:_internal_class_createInstanceFromZone
fun:NSAllocateObject
fun:+[NSHashTable alloc]
fun:+[NSTrackingArea initialize]
fun:_class_initialize
fun:_class_lookupMethodAndLoadCache
fun:objc_msgSend
}
{
bug_73299_b
Memcheck:Leak
fun:_Znw*
...
fun:_ZN24BrowserRenderProcessHost4InitEb
fun:_ZN14RenderViewHost16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEE
fun:_ZN13ExtensionHost19CreateRenderViewNowEv
fun:_ZN13ExtensionHost20ProcessCreationQueue14ProcessOneHostEv
}
{
bug_75136a
Memcheck:Unaddressable
...
fun:CFBundlePreflightExecutable
}
{
bug_75136b
Memcheck:Unaddressable
...
fun:CFBundlePreflightExecutable
}
{
bug_75142a
Memcheck:Unaddressable
...
fun:CGContextShowGlyphsWithAdvances
}
{
bug_75142b
Memcheck:Leak
...
fun:CGContextShowGlyphsWithAdvances
}
{
bug_75714_a
Memcheck:Unaddressable
...
fun:argb32_mark
fun:ripl_BltShape
...
fun:ripc_Render*
...
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
...
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
}
{
bug_75714_b
Memcheck:Unaddressable
...
fun:argb32_mark
fun:ripl_BltShape
fun:ripc_Render
...
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
...
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
}
{
bug_75714_c
Memcheck:Unaddressable
...
fun:argb32_image
fun:ripd_Mark
fun:ripl_BltImage
...
fun:ripc_Render*
...
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
...
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
}
{
bug_77265_a
Memcheck:Leak
fun:calloc
...
fun:-[BubbleView drawRect:]
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
fun:-[NSWindow _setFrameCommon:display:stashSize:]
fun:-[NSWindow setFrame:display:]
fun:-[NSWindow setValue:forKey:]
fun:-[NSObject(NSKeyValueCoding) setValue:forKeyPath:]
fun:-[NSInFlightAnimation advanceToTime:]
fun:-[NSAnimationManager animationTimerFired:]
fun:__NSFireTimer
}
{
bug_77265_b
Memcheck:Leak
fun:calloc
fun:CGClipStackCreateMutableCopy
fun:maybeCopyClipState
fun:CGGStateClipToRect
fun:CGContextClipToRect
fun:CGContextClipToRects
fun:NSRectClipList
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
fun:-[NSWindow _setFrameCommon:display:stashSize:]
fun:-[NSWindow setFrame:display:]
fun:-[NSWindow setValue:forKey:]
fun:-[NSObject(NSKeyValueCoding) setValue:forKeyPath:]
fun:-[NSInFlightAnimation advanceToTime:]
fun:-[NSAnimationManager animationTimerFired:]
fun:__NSFireTimer
}
{
bug_77265_c
Memcheck:Leak
fun:calloc
fun:CGClipStackCreateMutableCopy
fun:maybeCopyClipState
fun:CGGStateClipToRect
fun:CGContextClipToRect
fun:NSRectClip
fun:-[NSFocusState flush]
fun:-[NSView lockFocusIfCanDraw]
fun:-[NSView lockFocus]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
fun:-[NSWindow _setFrameCommon:display:stashSize:]
fun:-[NSWindow setFrame:display:]
fun:-[NSWindow setValue:forKey:]
fun:-[NSObject(NSKeyValueCoding) setValue:forKeyPath:]
fun:-[NSInFlightAnimation advanceToTime:]
fun:-[NSAnimationManager animationTimerFired:]
fun:__NSFireTimer
}
{
bug_77388_a
Memcheck:Uninitialized
...
fun:PrivateMPEntryPoint
fun:_pthread_start
fun:thread_start
}
{
bug_77388_b
Memcheck:Uninitialized
...
fun:PrivateMPEntryPoint
fun:_pthread_start
fun:thread_start
}
{
bug_77388_c
Memcheck:Param
access_extended(entries)
fun:accessx_np
...
fun:PrivateMPEntryPoint
fun:_pthread_start
fun:thread_start
}
{
bug_77388_d
Memcheck:Uninitialized
fun:TestAndSetClear
fun:TestAndClear
fun:_ZN5TNode28UnregisterChangeNotificationERK11TCountedPtrI21TClientChangeNotifierEmb
fun:NodeUnregisterChangeNotification
fun:NodeUnRegisterChildChangedNotification
fun:-[NSNavFBENode _unregisterForChildChangedNotifications]
fun:_commonTearDown_NSNavFBENode
fun:-[NSNavFBENode dealloc]
fun:CFRelease
fun:__CFSetDeallocate
fun:_CFRelease
fun:-[NSOutlineView dealloc]
fun:-[NSTrackableOutlineView dealloc]
}
{
bug_79994
Memcheck:Uninitialized
...
fun:gleUpdateState
fun:gleInitializeContext
fun:gliCreateContext
fun:CGLRestoreDispatchFunction
fun:CGLCreateContext
}
{
bug_80239_a
Memcheck:Unaddressable
...
fun:CGLCreateContext
fun:-[NSOpenGLContext initWithFormat:shareContext:]
fun:-[AcceleratedPluginView initWithRenderWidgetHostViewMac:pluginHandle:]
fun:_ZN23RenderWidgetHostViewMac30AllocateFakePluginWindowHandleEbb
fun:_ZN23RenderWidgetHostViewMac21GetCompositingSurfaceEv
fun:_ZN16RenderWidgetHost21GetCompositingSurfaceEv
fun:_ZN14RenderViewHost16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEE
fun:_ZN15WebContentsImpl32CreateRenderViewForRenderManagerEP14RenderViewHost
fun:_ZN22RenderFrameHostManager14InitRenderViewEP14RenderViewHostRK15NavigationEntry
}
{
bug_80239_b
Memcheck:Unaddressable
...
fun:CVDisplayLinkSetCurrentCGDisplayFromOpenGLContext
fun:-[AcceleratedPluginView initWithRenderWidgetHostViewMac:pluginHandle:]
fun:_ZN23RenderWidgetHostViewMac30AllocateFakePluginWindowHandleEbb
fun:_ZN23RenderWidgetHostViewMac21GetCompositingSurfaceEv
fun:_ZN16RenderWidgetHost21GetCompositingSurfaceEv
fun:_ZN14RenderViewHost16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEE
fun:_ZN15WebContentsImpl32CreateRenderViewForRenderManagerEP14RenderViewHost
}
{
bug_82328
Memcheck:Unaddressable
fun:CGSFillDRAM64
fun:argb32_mark_pixelshape
...
fun:ripc_DrawImages
fun:CGContextDrawImages
fun:_ZN11CUIRenderer19DrawWindowFrameDarkEPK10CUIContext
fun:_ZN11CUIRenderer4DrawE6CGRectP9CGContextPK14__CFDictionaryPS5_
fun:_NSDrawThemeBackground
}
{
bug_82682
Memcheck:Leak
...
fun:_ZN6webkit5npapi12_GLOBAL__N_119ReadPlistPluginInfoE*
}
{
bug_84329
Memcheck:Unaddressable
fun:_ZN3WTF17ChromiumThreading16callOnMainThreadEPFvPvES1_
fun:_ZN3WTF16callOnMainThreadEPFvPvES0_
fun:_ZN5blink13WebWorkerBase24dispatchTaskToMainThreadEN3WTF10PassOwnPtrIN7WebCore22ScriptExecutionContext4TaskEEE
fun:_ZN5blink13WebWorkerBase21reportPendingActivityEb
}
{
bug_86303a
Memcheck:Unaddressable
...
fun:objc_msgSend*
}
{
bug_86303b
Memcheck:Unaddressable
...
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
fun:-[NSWindow displayIfNeeded]
fun:_handleWindowNeedsDisplay
}
{
bug_87461
Memcheck:Leak
...
fun:_ZN15StatusBubbleMac6CreateEv
fun:_ZN15StatusBubbleMacC2EP8NSWindowP11objc_object
fun:-[BrowserWindowController initWithBrowser:takeOwnership:]
fun:-[BrowserWindowController initWithBrowser:]
fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
fun:_ZN7Browser19CreateBrowserWindowEv
fun:_ZN7Browser17InitBrowserWindowEv
fun:_ZN7Browser6CreateEP7Profile
fun:_ZN11BrowserInit17LaunchWithProfile17OpenTabsInBrowserEP7BrowserbRKSt6vectorINS0_3TabESaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vectorI4GURLSaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile17ProcessLaunchURLsEbRKSt6vectorI4GURLSaIS2_EE
fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7ProfileRKSt6vectorI4GURLSaIS4_EEb
fun:_ZN11BrowserInit13LaunchBrowserE*
fun:_ZN11BrowserInit18ProcessCmdLineImplE*
fun:_ZN11BrowserInit5StartE*
}
{
bug_87629
Memcheck:Leak
...
fun:realloc
fun:new_sem_from_pool
}
{
bug_90976
Memcheck:Unaddressable
...
fun:_CFPropertyListCreateFromXMLData
fun:CFPropertyListCreateFromStream
fun:+[CFXPreferencesPropertyListSource createPlistFromFile:statInfo:]
fun:-[CFXPreferencesPropertyListSource synchronize]
fun:CFPreferencesSynchronize
fun:_CSBackupSettingsIsPathExcluded
fun:CSBackupIsItemExcluded
fun:pager_open_journal
fun:pager_write
fun:sqlite3PagerWrite
fun:newDatabase
fun:sqlite3BtreeBeginTrans
fun:sqlite3VdbeExec
fun:sqlite3Step
fun:sqlite3_step
fun:sqlite3_exec
fun:_ZN3sql10Connection7ExecuteEPKc
}
{
bug_91889_a
Memcheck:Unaddressable
fun:_ZN4base12_GLOBAL__N_122StackDumpSignalHandlerEiP9__siginfoP17__darwin_ucontext
obj:*
fun:IOCFUnserialize
fun:IORegistryEntrySearchCFProperty
fun:_ZN12_GLOBAL__N_121SearchPortForPropertyEjPK10__CFString
fun:_ZN12_GLOBAL__N_123CollectPCIVideoCardInfoEP7GPUInfo
fun:_ZN18gpu_info_collector30CollectPreliminaryGraphicsInfoEP7GPUInfo
fun:_ZN14GpuDataManagerC2Ev
fun:_ZN14GpuDataManagerC1Ev
fun:_ZN22DefaultSingletonTraitsI14GpuDataManagerE3NewEv
fun:_ZN9SingletonI14GpuDataManager22DefaultSingletonTraitsIS0_ES0_E3getEv
fun:_ZN14GpuDataManager11GetInstanceEv
fun:_ZN19GpuBlacklistUpdater17SetupOnFileThreadEv
}
{
bug_91889_b
Memcheck:Unaddressable
fun:IOCFUnserializeparse
fun:IOCFUnserialize
fun:IORegistryEntrySearchCFProperty
fun:_ZN12_GLOBAL__N_121SearchPortForPropertyEjPK10__CFString
fun:_ZN12_GLOBAL__N_123CollectPCIVideoCardInfoEP7GPUInfo
fun:_ZN18gpu_info_collector30CollectPreliminaryGraphicsInfoEP7GPUInfo
fun:_ZN14GpuDataManagerC2Ev
fun:_ZN14GpuDataManagerC1Ev
fun:_ZN22DefaultSingletonTraitsI14GpuDataManagerE3NewEv
fun:_ZN9SingletonI14GpuDataManager22DefaultSingletonTraitsIS0_ES0_E3getEv
fun:_ZN14GpuDataManager11GetInstanceEv
fun:_ZN19GpuBlacklistUpdater17SetupOnFileThreadEv
}
{
bug_91889_c
Memcheck:Unaddressable
fun:_ZN4base12_GLOBAL__N_122StackDumpSignalHandlerEiP9__siginfoP17__darwin_ucontext
obj:*
obj:*
fun:IOCFUnserialize
fun:IORegistryEntrySearchCFProperty
fun:_ZN12_GLOBAL__N_121SearchPortForPropertyEjPK10__CFString
fun:_ZN12_GLOBAL__N_123CollectPCIVideoCardInfoEP7GPUInfo
fun:_ZN18gpu_info_collector30CollectPreliminaryGraphicsInfoEP7GPUInfo
fun:_ZN14GpuDataManagerC2Ev
fun:_ZN14GpuDataManagerC1Ev
fun:_ZN22DefaultSingletonTraitsI14GpuDataManagerE3NewEv
fun:_ZN9SingletonI14GpuDataManager22DefaultSingletonTraitsIS0_ES0_E3getEv
fun:_ZN14GpuDataManager11GetInstanceEv
fun:_ZN19GpuBlacklistUpdater17SetupOnFileThreadEv
}
{
bug_91892
Memcheck:Leak
fun:_Znw*
fun:sendSimpleEventToSelf
fun:aeInitializeFromHIToolbox
fun:INIT_AppleEvents
fun:_FirstEventTime
fun:RunCurrentEventLoopInMode
fun:ReceiveNextEventCommon
fun:BlockUntilNextEventMatchingListInMode
fun:_DPSNextEvent
fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
fun:-[NSApplication run]
fun:_ZN4base24MessagePumpNSApplication5DoRunEPNS_11MessagePump8DelegateE
fun:_ZN4base24MessagePumpCFRunLoopBase3RunEPNS_11MessagePump8DelegateE
fun:_ZN4base11MessageLoop11RunInternalEv
fun:_ZN4base11MessageLoop10RunHandlerEv
fun:_ZN4base11MessageLoop13RunAllPendingEv
fun:_ZN20InProcessBrowserTest23RunTestOnMainThreadLoopEv
}
{
bug_92579a
Memcheck:Unaddressable
fun:_ZN15CVCGDisplayLink17setCurrentDisplayEj
fun:CVDisplayLinkSetCurrentCGDisplayFromOpenGLContext
}
{
bug_92579b
Memcheck:Unaddressable
fun:_ZN15CVCGDisplayLink17setCurrentDisplayEj
fun:_ZN15CVCGDisplayLink18initWithCGDisplaysEPjlPi
fun:CVDisplayLinkCreateWithCGDisplays
fun:CVDisplayLinkCreateWithActiveCGDisplays
}
{
bug_92579c
Memcheck:Unaddressable
fun:IOCFUnserializeparse
fun:IOCFUnserialize
fun:IORegistryEntryCreateCFProperties
fun:_ZN15CVCGDisplayLink17setCurrentDisplayEj
fun:_ZN15CVCGDisplayLink18initWithCGDisplaysEPjlPi
fun:CVDisplayLinkCreateWithCGDisplays
fun:CVDisplayLinkCreateWithActiveCGDisplays
fun:-[AcceleratedPluginView initWithRenderWidgetHostViewMac:pluginHandle:]
}
{
bug_93036
Memcheck:Unaddressable
fun:+[NSPICTImageRep _verifyDataIsPICT:]
fun:+[NSImageRep imageRepClassForData:]
fun:-[NSImage initWithData:]
fun:_ZN2ui14ResourceBundle19GetNativeImageNamedEi
fun:-[BookmarkBarController initWithBrowser:initialWidth:delegate:resizeDelegate:]
}
{
bug_93932_a
Memcheck:Overlap
fun:memcpy
fun:vp8_decode_update_thread_context
fun:update_context_from_thread
...
fun:ff_thread_decode_frame
fun:avcodec_decode_video2
fun:_ZN5media23FFmpegVideoDecodeEngine6DecodeERK13scoped_refptrINS_6BufferEEPS1_INS_10VideoFrameEE
fun:_ZN5media18FFmpegVideoDecoder14DoDecodeBufferERK13scoped_refptrINS_6BufferEE
}
{
bug_93932_b
Memcheck:Overlap
fun:memcpy
fun:vp8_decode_update_thread_context
fun:update_context_from_thread
fun:frame_thread_free
fun:avcodec_close
...
fun:_ZN5media23FFmpegVideoDecodeEngineD0Ev
fun:_ZN10scoped_ptrIN5media23FFmpegVideoDecodeEngineEE5resetEPS1_
fun:_ZN5media27FFmpegVideoDecodeEngineTestD2Ev
fun:_ZN5media51FFmpegVideoDecodeEngineTest_DecodeFrame_Normal_TestD0Ev
}
{
bug_96300
Memcheck:Leak
...
fun:_ZN8Security12KeychainCore5Trust8evaluate*
fun:SecTrustEvaluate
fun:_ZN3net17CertVerifyProcMac14VerifyInternal*
fun:_ZN3net14CertVerifyProc6Verify*CertVerifyResult*
}
{
bug_96559a
Memcheck:Uninitialized
fun:PyObject_Realloc
}
{
bug_96559b
Memcheck:Unaddressable
fun:PyObject_Realloc
}
{
bug_96559c
Memcheck:Uninitialized
fun:PyObject_Realloc
}
{
bug_96559d
Memcheck:Uninitialized
fun:PyObject_Free
}
{
bug_96559e
Memcheck:Unaddressable
fun:PyObject_Free
}
{
bug_96559f
Memcheck:Uninitialized
fun:PyObject_Free
}
{
bug_96671
Memcheck:Uninitialized
...
fun:_ZNK12MockKeychain26SearchCreateFromAttributesEPKvmPK24SecKeychainAttributeListPP26OpaqueSecKeychainSearchRef
fun:_ZN14KeychainSearch17FindMatchingItemsEPSt6vectorIP24OpaqueSecKeychainItemRefSaIS2_EE
}
{
bug_96689
Memcheck:Uninitialized
fun:_ZN3net11SSLHostInfo10ParseInnerERKSs
fun:_ZN3net11SSLHostInfo5ParseERKSs
fun:_ZN3net25DiskCacheBasedSSLHostInfo22DoWaitForDataReadyDoneEv
fun:_ZN3net25DiskCacheBasedSSLHostInfo6DoLoopEi
fun:_ZN3net25DiskCacheBasedSSLHostInfo12OnIOCompleteEPNS0_22CacheOperationDataShimEi
}
{
bug_100022
Memcheck:Unaddressable
...
fun:_ZNK11ImageLoader15containsAddressEPKv
fun:_ZN4dyld14bindLazySymbolEPK11mach_headerPm
fun:stub_binding_helper_interface2
obj:/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
obj:/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
fun:CGContextDrawImage
fun:_Z23PlotISImageRefInContextPvP9CGContext6CGRectssPK8RGBColormPK20_ISImageRefCallbacks
fun:PlotIconRefInContext
}
{
bug_100983
Memcheck:Leak
fun:_Znw*
fun:_ZN4base18StatisticsRecorder31RegisterOrDeleteDuplicateRangesEPNS_9HistogramE
fun:_ZN4base18StatisticsRecorder25RegisterOrDeleteDuplicateEPNS_9HistogramE
fun:_ZN10disk_cache14StatsHistogram10FactoryGetERKSs
fun:_ZN10disk_cache5Stats4InitEPNS_11BackendImplEPj
fun:_ZN10disk_cache11BackendImpl8SyncInitEv
fun:_ZN10disk_cache9BackendIO23ExecuteBackendOperationEv
}
{
bug_101359
Memcheck:Leak
fun:malloc
fun:CGFontNameTableCreate
fun:get_name_table
fun:CGFontCopyPostScriptName
fun:CGFontCreateFontsWithURL
}
{
bug_102327_a
Memcheck:Unaddressable
fun:_ZNK15tracked_objects10ThreadData26OnThreadTerminationCleanupEv
fun:_ZN15tracked_objects10ThreadData19OnThreadTerminationEPv
fun:_pthread_tsd_cleanup
fun:_pthread_exit
fun:thread_start
}
{
bug_102327_b
Memcheck:Leak
fun:_Znw*
fun:_ZN15tracked_objects10ThreadData10InitializeEv
fun:_ZN15tracked_objects10ThreadData23InitializeThreadContextERKSs
}
{
bug_102621
Memcheck:Uninitialized
...
fun:-[NSPasteboard(ChimeraPasteboardURLUtils) getURLs:andTitles:convertingFilenames:]
fun:_ZN2ui33PopulateURLAndTitleFromPasteboardEP4GURLPSbItN4base20string16_char_traitsESaItEEP12NSPasteboarda
fun:_ZN24WebDragDestTest_URL_Test8TestBodyEv
}
{
bug_102920
Memcheck:Unaddressable
fun:MDItemCreate
fun:CSBackupSetItemExcluded
fun:_ZN4base3mac22SetFileBackupExclusionE*
fun:_ZN7history17ThumbnailDatabase4InitE*
fun:_ZN7history14HistoryBackend8InitImplERKSs
fun:_ZN7history14HistoryBackend4InitERKSsb
}
{
bug_104756
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE
fun:_ZN3IPC17SyncMessageSchemaI6Tuple1IbES1_IRSt6vectorIN6webkit13WebPluginInfoESaIS5_EEEE32DispatchDelayReplyWithSendParamsI19RenderMessageFilterMSC_FvbPNS_7MessageEEEEbbRKS2_PKSD_PT_T0_
fun:_ZN22ViewHostMsg_GetPlugins18DispatchDelayReplyI19RenderMessageFilterMS1_FvbPN3IPC7MessageEEEEbPKS3_PT_T0_
fun:_ZN19RenderMessageFilter17OnMessageReceivedERKN3IPC7MessageEPb
fun:_ZN20BrowserMessageFilter15DispatchMessageERKN3IPC7MessageE
}
{
bug_104786
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKjiEEE8allocateEmPKv
fun:_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE14_M_create_nodeERKS2_
fun:_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_
fun:_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE13insert_uniqueERKS2_
fun:_ZNSt8_Rb_treeIjSt4pairIKjiESt10_Select1stIS2_ESt4lessIjESaIS2_EE13insert_uniqueESt17_Rb_tree_iteratorIS2_ERKS2_
fun:_ZNSt3mapIjiSt4lessIjESaISt4pairIKjiEEE6insertESt17_Rb_tree_iteratorIS4_ERKS4_
fun:_ZNSt3mapIjiSt4lessIjESaISt4pairIKjiEEEixERS3_
fun:_ZN18RenderWidgetHelper17AllocTransportDIBEmbPN4base14FileDescriptorE
fun:_ZN19RenderMessageFilter19OnAllocTransportDIBEmbPN4base14FileDescriptorE
}
{
bug_105022
Memcheck:Leak
fun:malloc_zone_malloc
fun:malloc_set_zone_name
fun:init__zone0
fun:setenv$UNIX2003
fun:_ZN12_GLOBAL__N_115EnvironmentImpl10SetVarImplEPKcRKSs
fun:_ZN12_GLOBAL__N_115EnvironmentImpl6SetVarEPKcRKSs
fun:_Z18AppendToPythonPath*FilePath
fun:_ZN*3net15LocalTestServer13SetPythonPathEv
fun:_ZN3net15LocalTestServer5StartEv
fun:_ZN12_GLOBAL__N_132MimeTypeTests_MimeTypeTests_Test8TestBodyEv
}
{
bug_105323
Memcheck:Leak
fun:_Znw*
fun:_ZN15tracked_objects10ThreadData3GetEv
fun:_ZN15tracked_objects10ThreadData32TallyRunOnWorkerThreadIfTrackingEPKNS_6BirthsERKNS_11TrackedTimeES6_S6_
fun:_ZN4base12_GLOBAL__N_112WorkerThread10ThreadMainEv
fun:_ZN4base12_GLOBAL__N_110ThreadFuncEPv
}
{
bug_105339
Memcheck:Leak
fun:malloc_zone_malloc
fun:_malloc_internal
fun:_cache_addForwardEntry
fun:lookUpMethod
fun:class_respondsToSelector
}
{
bug_105341_a
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:allocWorld
fun:create
fun:aquireColorWorldByAttributes
fun:acquireColorWorld
fun:CMSTransformConvert*
fun:CGCMSInterfaceTransformConvert*
}
{
bug_105341_b
Memcheck:Leak
fun:calloc
fun:_ZN9CMMMemMgr3NewEm
...
fun:create
fun:aquireColorWorldByAttributes
fun:acquireColorWorld
fun:CMSTransformConvert*
fun:CGCMSInterfaceTransformConvert*
}
{
bug_105342
Memcheck:Leak
fun:_Znw*
fun:_ZN15TSessionManager20CreateSessionManagerEv
fun:pthread_once
fun:_ZN15TSessionManagerC1Ev
fun:_ZN13TFontMetadata24CreateMetadataForFontURLEPK7__CFURLb
...
fun:XTRegisterFont
fun:SendActivateFontsMessage
}
{
bug_105523
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:allocGeneric
fun:create
fun:CMSCreateDataProvider
fun:create_generic_color_space
fun:CGColorSpaceCreateWithIndex
}
{
bug_105524_a
Memcheck:Uninitialized
fun:_ZNK7WebCore13InlineTextBox17expansionBehaviorEv
fun:_ZNK7WebCore13InlineTextBox16constructTextRunEPNS_11RenderStyleERKNS_4FontEPKtiiPNS_24BufferForAppendingHyphenE
fun:_ZNK7WebCore13InlineTextBox16constructTextRunEPNS_11RenderStyleERKNS_4FontEPNS_24BufferForAppendingHyphenE
fun:_ZNK7WebCore13InlineTextBox17positionForOffsetEi
fun:_ZN7WebCore10RenderText14localCaretRectEPNS_9InlineBoxEiPi
fun:_ZNK7WebCore15VisiblePosition14localCaretRectERPNS_12RenderObjectE
fun:_ZN7WebCore9CaretBase15updateCaretRectEPNS_8DocumentERKNS_15VisiblePositionE
fun:_ZN7WebCore14FrameSelection14localCaretRectEv
fun:_ZN7WebCore14FrameSelection18recomputeCaretRectEv
fun:_ZN7WebCore14FrameSelection16updateAppearanceEv
fun:_ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionEjNS0_19CursorAlignOnScrollENS_15TextGranularityE
fun:_ZN7WebCore14FrameSelection12setSelectionERKNS_16VisibleSelectionENS_15TextGranularityE
fun:_ZN7WebCore14FrameSelection34setNonDirectionalSelectionIfNeededERKNS_16VisibleSelectionENS_15TextGranularityENS0_23EndPointsAdjustmentModeE
fun:_ZN7WebCore12EventHandler49updateSelectionForMouseDownDispatchingSelectStartEPNS_4NodeERKNS_16VisibleSelectionENS_15TextGranularityE
fun:_ZN7WebCore12EventHandler32handleMousePressEventSingleClickERKNS_28MouseEventWithHitTestResultsE
fun:_ZN7WebCore12EventHandler21handleMousePressEventERKNS_28MouseEventWithHitTestResultsE
fun:_ZN7WebCore12EventHandler21handleMousePressEventERKNS_18PlatformMouseEventE
fun:_ZN7WebCore12EventHandler29passMousePressEventToSubframeERNS_28MouseEventWithHitTestResultsEPNS_5FrameE
fun:_ZN7WebCore12EventHandler21handleMousePressEventERKNS_18PlatformMouseEventE
fun:_ZN5blink11WebViewImpl9mouseDownERKNS_13WebMouseEventE
fun:_ZN5blink11WebViewImpl16handleInputEventERKNS_13WebInputEventE
fun:_ZN46ContextMenuCapturing_ContextMenuCapturing_Test8TestBodyEv
}
{
bug_105524_b
Memcheck:Uninitialized
fun:_ZNK7WebCore13InlineTextBox17expansionBehaviorEv
fun:_ZNK7WebCore13InlineTextBox16constructTextRunEPNS_11RenderStyleERKNS_4FontEPKtiiPNS_24BufferForAppendingHyphenE
fun:_ZN7WebCore13InlineTextBox5paintERNS_9PaintInfoERKNS_8IntPointEii
fun:_ZN7WebCore13InlineFlowBox5paintERNS_9PaintInfoERKNS_8IntPointEii
fun:_ZN7WebCore13RootInlineBox5paintERNS_9PaintInfoERKNS_8IntPointEii
fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock13paintChildrenERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderLayer10paintLayerEPS0_PNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectEPNS_12RenderRegionEPN3WTF7HashMapIPNS_24OverlapTestRequestClientES4_NSB_7PtrHashISE_EENSB_10HashTraitsISE_EENSH_IS4_EEEEj
fun:_ZN7WebCore11RenderLayer9paintListEPN3WTF6VectorIPS0_Lm0EEES3_PNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectEPNS_12RenderRegionEPNS1_7HashMapIPNS_24OverlapTestRequestClientES8_NS1_7PtrHashISH_EENS1_10HashTraitsISH_EENSK_IS8_EEEEj
fun:_ZN7WebCore11RenderLayer10paintLayerEPS0_PNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectEPNS_12RenderRegionEPN3WTF7HashMapIPNS_24OverlapTestRequestClientES4_NSB_7PtrHashISE_EENSB_10HashTraitsISE_EENSH_IS4_EEEEj
fun:_ZN7WebCore11RenderLayer5paintEPNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectEPNS_12RenderRegionEj
fun:_ZN7WebCore9FrameView13paintContentsEPNS_15GraphicsContextERKNS_7IntRectE
fun:_ZN7WebCore10ScrollView5paintEPNS_15GraphicsContextERKNS_7IntRectE
fun:_ZN5blink12WebFrameImpl16paintWithContextERN7WebCore15GraphicsContextERKNS_7WebRectE
fun:_ZN5blink12WebFrameImpl5paintEP9CGContextRKNS_7WebRectE
fun:_ZN5blink11WebViewImpl5paintEP9CGContextRKNS_7WebRectE
}
{
bug_105526_read_a
Memcheck:Unaddressable
fun:CGSSetWindowColorSpace
fun:_ZN10WindowData16UpdateColorSpaceEh
fun:_ZN10WindowData18FinishConstructionEmymPK4RectPhjP15OpaqueWindowPtrP16OpaqueControlRef
fun:_ZN10WindowData10InitializeEP14OpaqueEventRef
fun:_ZN14AppleWindowDef10InitializeEP14OpaqueEventRef
fun:_ZN8HIObject24HandleClassHIObjectEventEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
fun:_ZN8HIObject9EventHookEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
fun:_ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec
fun:_ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec
fun:SendEventToEventTargetWithOptions
fun:_ZN8HIObject6CreateEPK10__CFStringP14OpaqueEventRefPPS_
fun:HIObjectCreate
}
{
bug_105526_read_b
Memcheck:Unaddressable
obj:*
fun:_ZN10WindowData16UpdateColorSpaceEh
fun:_ZN10WindowData18FinishConstructionEmymPK4RectPhjP15OpaqueWindowPtrP16OpaqueControlRef
fun:_ZN10WindowData10InitializeEP14OpaqueEventRef
fun:_ZN14AppleWindowDef10InitializeEP14OpaqueEventRef
fun:_ZN8HIObject24HandleClassHIObjectEventEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
fun:_ZN8HIObject9EventHookEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
fun:_ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec
fun:_ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec
fun:SendEventToEventTargetWithOptions
fun:_ZN8HIObject6CreateEPK10__CFStringP14OpaqueEventRefPPS_
fun:HIObjectCreate
}
{
bug_105526_write
Memcheck:Unaddressable
fun:CGSColorProfileRelease
fun:CGSSetWindowColorSpace
fun:_ZN10WindowData16UpdateColorSpaceEh
fun:_ZN10WindowData18FinishConstructionEmymPK4RectPhjP15OpaqueWindowPtrP16OpaqueControlRef
fun:_ZN10WindowData10InitializeEP14OpaqueEventRef
fun:_ZN14AppleWindowDef10InitializeEP14OpaqueEventRef
fun:_ZN8HIObject24HandleClassHIObjectEventEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
fun:_ZN8HIObject9EventHookEP25OpaqueEventHandlerCallRefP14OpaqueEventRefPv
fun:_ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec
fun:_ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14HandlerCallRec
fun:SendEventToEventTargetWithOptions
fun:_ZN8HIObject6CreateEPK10__CFStringP14OpaqueEventRefPPS_
fun:HIObjectCreate
}
{
bug_105527_a
Memcheck:Leak
fun:_Znw*
fun:_ZN16TCFStringUniquer19CreateStringUniquerEv
fun:pthread_once
fun:_ZN16TCFStringUniquerC1Ev
fun:_ZNK6TCFStr15GetUniqueStringEv
fun:_ZNK17TClientFontEntity14CopyFamilyNameEb
fun:_ZNK11TFontEntity14CopyPropertiesEPK7__CFSetb
fun:_ZNK21TLocalFontRegistryImp37CopyPropertiesForFontsMatchingRequestEPK14__CFDictionaryPK7__CFSetj
fun:XTCopyFontsWithProperties
fun:_ZL20CopyFaceURLsForFontsPK9__CFArrayj
fun:XTRegisterFonts
fun:XTRegisterFont
fun:SendActivateFontsMessage
}
{
bug_105527_b
Memcheck:Leak
fun:_Znw*
fun:_ZN18TLocalFontRegistry14CreateRegistryEv
fun:pthread_once
fun:_ZN18TLocalFontRegistryC2Ev
fun:XTRegisterFonts
fun:XTRegisterFont
fun:SendActivateFontsMessage
}
{
bug_105527_c
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CFBasicHashCreate
fun:__CFSetCreateGeneric
fun:CFSetCreate
fun:_ZN16TBasicFontEntity21CreateBasicPropertiesEv
fun:pthread_once
fun:_ZN16TBasicFontEntity18GetBasicPropertiesEv
fun:XTCopyFontsWithProperties
}
{
bug_105527_d
Memcheck:Leak
fun:_Znw*
fun:_ZN19TGlobalFontRegistry14CreateRegistryEv
fun:pthread_once
fun:_ZN19TGlobalFontRegistryC2Ev
fun:XTCopyFontWithName
fun:_ZNK17TDescriptorSource35CopyFontDescriptorPerPostscriptNameEPK10__CFStringm
}
{
bug_105527_e
Memcheck:Leak
fun:calloc
fun:CGFontFinderCreate
fun:cg_font_library_link_symbol
fun:load_vtable
fun:pthread_once
fun:CGFontGetVTable
fun:CGFontCreateFontsWithPath
fun:CGFontCreateFontsWithURL
}
{
bug_105580
Memcheck:Leak
fun:malloc_zone_malloc
fun:malloc_set_zone_name
fun:malloc_default_purgeable_zone
...
fun:_ZN4base30EnableTerminationOnOutOfMemoryEv
fun:_ZN7leveldb12_GLOBAL__N_111ChromiumEnvC2Ev
...
fun:_ZN4base25DefaultLazyInstanceTraitsIN7leveldb12_GLOBAL__N_111ChromiumEnvEE3NewEPv
...
fun:_ZN4base12LazyInstanceIN7leveldb12_GLOBAL__N_111ChromiumEnvENS_*
...
fun:_ZN7leveldb7OptionsC2Ev
...
fun:_ZN7fileapi27FileSystemDirectoryDatabase4InitEv
fun:_ZN7fileapi27FileSystemDirectoryDatabase11GetFileInfoExPNS0_8FileInfoE
fun:_ZN7fileapi59FileSystemDirectoryDatabaseTest_TestMissingFileGetInfo_Test8TestBodyEv
}
{
bug_105938_a
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
...
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
fun:_ZN2v86Script3RunEv
fun:_ZN7WebCore7V8Proxy9runScriptEN2v86HandleINS1_6ScriptE*
fun:_ZN7WebCore7V8Proxy8evaluateERKNS_16ScriptSourceCodeEPNS_4NodeE
fun:_ZN7WebCore16ScriptController8evaluateERKNS_16ScriptSourceCodeE
}
{
bug_105938_b
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
...
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
fun:_ZN2v86Script3RunEv
fun:_ZN7WebCore7V8Proxy9runScriptEN2v86HandleINS1_6ScriptE*
fun:_ZN7WebCore7V8Proxy8evaluateERKNS_16ScriptSourceCodeEPNS_4NodeE
fun:_ZN7WebCore16ScriptController8evaluateERKNS_16ScriptSourceCodeE
}
{
bug_105938_c
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
...
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
fun:_ZN2v88Function4CallENS_6HandleINS_6ObjectEEEiPNS1_INS_5ValueEEE
fun:_ZN7WebCore7V8Proxy24instrumentedCallFunctionEPNS_4PageEN2v86HandleINS3_8FunctionEEENS4_INS3_6ObjectEEEiPNS4_INS3_5ValueEEE
fun:_ZN7WebCore7V8Proxy12callFunctionEN2v86HandleINS1_8FunctionEEENS2_INS1_6ObjectEEEiPNS2_INS1_5ValueEEE
fun:_ZN7WebCore19V8LazyEventListener20callListenerFunctionEPNS_22ScriptExecutionContextEN2v86HandleINS3_5ValueEEEPNS_5EventE
fun:_ZN7WebCore23V8AbstractEventListener18invokeEventHandlerEPNS_22ScriptExecutionContextEPNS_5EventEN2v86HandleINS5_5ValueEEE
fun:_ZN7WebCore23V8AbstractEventListener11handleEventEPNS_22ScriptExecutionContextEPNS_5EventE
fun:_ZN7WebCore11EventTarget18fireEventListenersEPNS_5EventEPNS_15EventTargetDataERN3WTF6VectorINS_23RegisteredEventListenerELm1EEE
}
{
bug_107179
Memcheck:Uninitialized
fun:_ZNK7WebCore13InlineTextBox17expansionBehaviorEv
fun:_ZNK7WebCore13InlineTextBox16constructTextRunEPNS_11RenderStyleERKNS_4FontEPKtiiPNS_24BufferForAppendingHyphenE
fun:_ZN7WebCore13InlineTextBox5paintERNS_9PaintInfoERKNS_8IntPointEii
fun:_ZN7WebCore13InlineFlowBox5paintERNS_9PaintInfoERKNS_8IntPointEii
fun:_ZN7WebCore13RootInlineBox5paintERNS_9PaintInfoERKNS_8IntPointEii
fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock13paintChildrenERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_8IntPointE
fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
...
fun:_ZN7WebCore11RenderLayer5paintEPNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectEPNS_12RenderRegionEj
fun:_ZN7WebCore9FrameView13paintContentsEPNS_15GraphicsContextERKNS_7IntRectE
fun:_ZN7WebCore10ScrollView5paintEPNS_15GraphicsContextERKNS_7IntRectE
fun:_ZN5blink12WebFrameImpl16paintWithContextERN7WebCore15GraphicsContextERKNS_7WebRectE
}
{
bug_107541_a
Memcheck:Leak
fun:_Znw*
fun:_ZL14NewFromFontRefPK8__CTFontPKc
fun:_Z26SkCreateTypefaceFromCTFontPK8__CTFont
fun:_ZN7WebCoreL10setupPaintEP7SkPaintPKNS_14SimpleFontDataEPKNS_4FontE*
fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPoint*
fun:_ZN7WebCore15GraphicsContext8drawTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPoint*
fun:_ZN7WebCoreL20paintTextWithShadowsEPNS_15GraphicsContextERKNS_4FontERKNS_7TextRunERKN3WTF12AtomicStringEiiiiRKNS_10FloatPointERKNS_9FloatRectEPKNS_10ShadowDataEbb
fun:_ZN7WebCore13InlineTextBox5paintERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore13InlineFlowBox5paintERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore13RootInlineBox5paintERNS_9PaintInfoERKNS_*
fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_*
...
fun:_ZN7WebCore11RenderBlock13paintChildrenERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_*
fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_*
}
{
bug_107541_b
Memcheck:Leak
fun:calloc
fun:CGGlyphBitmapCreate
...
fun:CGFontCreateGlyphBitmap*
fun:create_missing_bitmaps
fun:CGGlyphLockLockGlyphBitmaps
...
fun:draw_glyphs
fun:CGContextShowGlyphs
fun:_ZN9Offscreen5getCGERK19SkScalerContext_MacRK7SkGlyph*
fun:_ZN19SkScalerContext_Mac13generateImageERK7SkGlyph
fun:_ZN15SkScalerContext8getImageERK7SkGlyph
fun:_ZN12SkGlyphCache9findImageERK7SkGlyph
fun:_ZL22D1G_NoBounder_RectClipRK12SkDraw1GlyphiiRK7SkGlyph
fun:_ZNK6SkDraw*draw*TextE*
fun:_ZN8SkDevice*draw*TextE*
fun:_ZN8SkCanvas*draw*TextE*
}
{
bug_107541_c
Memcheck:Leak
fun:_Znw*
fun:_ZL14NewFromFontRefPK8__CTFontPKc
fun:_ZL11NewFromNamePKcN10SkTypeface5StyleE
fun:_ZL15create_typefacePK10SkTypefacePKcNS_5StyleE
fun:_ZN10SkFontHost14CreateTypefaceEPK10SkTypefacePKcNS0_5StyleE
fun:_ZN10SkTypeface14CreateFromNameEPKcNS_5StyleE
fun:_ZN3gfx8internal16SkiaTextRenderer22SetFontFamilyWithStyleERKSsi
fun:_ZN3gfx13RenderTextMac14DrawVisualTextEPNS_6CanvasE
fun:_ZN3gfx10RenderText4DrawEPNS_6CanvasE
fun:_ZN3gfx43RenderTextTest_SelectionKeepsLigatures_Test8TestBodyEv
}
{
bug_109994
Memcheck:Leak
...
fun:_class_lookupMethodAndLoadCache
fun:objc_msgSend
...
fun:_class_initialize
fun:_class_initialize
fun:_class_lookupMethodAndLoadCache
fun:objc_msgSend
fun:_ZN15ChromeTestSuite10InitializeEv
fun:_ZN4base9TestSuite3RunEv
fun:_ZN17UnitTestTestSuite3RunEv
}
{
bug_112078
Memcheck:Uninitialized
fun:glViewport_Exec
fun:glViewport
fun:-[AcceleratedPluginView globalFrameDidChange:]
fun:-[AcceleratedPluginView renewGState]
fun:-[NSView _invalidateGStatesForTree]
fun:-[NSView(NSInternal) _setHidden:setNeedsDisplay:]
fun:-[NSView _setHidden:]
fun:_ZN*23RenderWidgetHostViewMac17MovePluginWindows*
fun:_ZN*27RenderWidgetHostViewMacTest24AddAcceleratedPluginViewEii
fun:_ZN*53RenderWidgetHostViewMacTest_FocusAcceleratedView_Test8TestBodyEv
}
{
bug_112086
Memcheck:Uninitialized
fun:x_zone_size
fun:find_registered_purgeable_zone
fun:malloc_make_purgeable
}
{
bug_117310
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
fun:_ZN7WebCore29v8StringToAtomicWebCoreStringEN2v86HandleINS0_6StringEEE
fun:_ZN7WebCore11V8DOMWindow19namedPropertyGetterEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
fun:_ZN2v88internal8JSObject26GetPropertyWithInterceptorEPNS0_10JSReceiverEPNS0_6StringEP18PropertyAttributes
fun:_ZN2v88internal6Object11GetPropertyEPS1_PNS0_12LookupResultEPNS0_6StringEP18PropertyAttributes
fun:_ZN2v88internal6Object11GetPropertyENS0_6HandleIS1_EES3_PNS0_12LookupResultENS2_INS0_6StringEEEP18PropertyAttributes
fun:_ZN2v88internal6LoadIC4LoadENS0_16InlineCacheStateENS0_6HandleINS0_6ObjectEEENS3_INS0_6StringEEE
fun:_ZN2v88internal11LoadIC_MissENS0_9ArgumentsEPNS0_7IsolateE
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
fun:_ZN2v88Function4CallENS_6HandleINS_6ObjectEEEiPNS1_INS_5ValueEEE
fun:_ZN7WebCore7V8Proxy24instrumentedCallFunctionEPNS_5FrameEN2v86HandleINS3_8FunctionEEENS4_INS3_6ObjectEEEiPNS4_INS3_5ValueEEE
fun:_ZN7WebCore7V8Proxy12callFunctionEN2v86HandleINS1_8FunctionEEENS2_INS1_6ObjectEEEiPNS2_INS1_5ValueEEE
fun:_ZN7WebCore19V8LazyEventListener20callListenerFunctionEPNS_22ScriptExecutionContextEN2v86HandleINS3_5ValueEEEPNS_5EventE
fun:_ZN7WebCore23V8AbstractEventListener18invokeEventHandlerEPNS_22ScriptExecutionContextEPNS_5EventEN2v86HandleINS5_5ValueEEE
fun:_ZN7WebCore23V8AbstractEventListener11handleEventEPNS_22ScriptExecutionContextEPNS_5EventE
fun:_ZN7WebCore11EventTarget18fireEventListenersEPNS_5EventEPNS_15EventTargetDataERN3WTF6VectorINS_23RegisteredEventListenerELm1EEE
}
{
bug_127499_a
Memcheck:Uninitialized
...
fun:VDADecoderCreate
fun:_ZN3gfx30VideoDecodeAccelerationSupport6CreateEiiiPKvm
fun:_ZN3gfx46VideoDecodeAccelerationSupportTest_Create_Test8TestBodyEv
}
{
bug_127499_b
Memcheck:Leak
...
fun:VDADecoderCreate
fun:_ZN3gfx30VideoDecodeAccelerationSupport6CreateEiiiPKvm
fun:_ZN3gfx46VideoDecodeAccelerationSupportTest_Create_Test8TestBodyEv
}
{
bug_127499_c
Memcheck:Free
...
fun:VTDecompressionSessionInvalidate
fun:VDADecoderDestroy
fun:_ZN3gfx30VideoDecodeAccelerationSupport7DestroyEv
fun:_ZN3gfx46VideoDecodeAccelerationSupportTest_Create_Test8TestBodyEv
}
{
bug_127499_d
Memcheck:Uninitialized
...
fun:VTDecompressionSessionInvalidate
fun:VDADecoderDestroy
fun:_ZN3gfx30VideoDecodeAccelerationSupport7DestroyEv
fun:_ZN3gfx46VideoDecodeAccelerationSupportTest_Create_Test8TestBodyEv
}
{
bug_127499_e
Memcheck:Leak
fun:_Znw*
fun:_ZN4base17LoadNativeLibraryE*
fun:_ZN12_GLOBAL__N_117InitializeVdaApisEv
fun:_ZN3gfx30VideoDecodeAccelerationSupport6CreateEiiiPKvm
fun:_ZN3gfx46VideoDecodeAccelerationSupportTest_Create_Test8TestBodyEv
}
{
bug_127499_f
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CFBasicHashCreate
fun:__CFDictionaryCreateGeneric
fun:CFDictionaryCreate
fun:-[__NSPlaceholderDictionary initWithObjects:forKeys:count:]
fun:+[NSDictionary dictionaryWithObjectsAndKeys:]
fun:_ZN3gfx30VideoDecodeAccelerationSupport6CreateEiiiPKvm
fun:_ZN3gfx46VideoDecodeAccelerationSupportTest_Create_Test8TestBodyEv
}
{
bug_131361
Memcheck:Overlap
fun:memcpy
...
fun:_ZN2v88internal18GvnBasicBlockState32*
}
{
bug_159190
Memcheck:Uninitialized
...
fun:_ZNK19TConcreteFontScaler15CopyGlyphBitmapEtjP6CGRectPm
...
fun:_ZN9Offscreen5getCGERK19SkScalerContext_MacRK7SkGlyphtPmb
fun:_ZN19SkScalerContext_Mac13generateImageERK7SkGlyph
}
{
bug_171722_mac
Memcheck:Leak
fun:_Znw*
fun:_ZN3net12_GLOBAL__N_120URLRequestFtpJobTest9AddSocketEPNS_13MockReadWriteILNS_17MockReadWriteTypeE0EEEmPNS2_ILS3_1EEEm
...
}
{
bug_173779
Memcheck:Uninitialized
...
fun:img_data_lock
fun:CGSImageDataLock
fun:ripc_AcquireImage
fun:ripc_DrawImage*
fun:CGContextDrawImage*
...
fun:_ZN11CUIRenderer4DrawE6CGRectP9CGContextPK14__CFDictionaryPS5_
}
{
bug_177540
Memcheck:Uninitialized
fun:_ZN3WTF20TCMalloc_ThreadCache10DeallocateENS_11HardenedSLLEm
}
{
bug_231969
Memcheck:Uninitialized
fun:rangematch
fun:fnmatch1
fun:fnmatch1
fun:fnmatch$UNIX2003
fun:_ZN4base14FileEnumerator4NextEv
fun:_ZN10disk_cache15SimpleIndexFile15RestoreFromDiskERKN4base8FilePathE
}
{
bug_244420
Memcheck:Uninitialized
...
fun:_ZN9talk_baseL8ToStringIyEESsRKT_
fun:_ZN7content23VideoDestinationHandler4OpenEPNS_28MediaStreamDependencyFactoryEPNS_28MediaStreamRegistryInterfaceERKSsPPNS_20FrameWriterInterfaceE
fun:_ZN7content37VideoDestinationHandlerTest_Open_Test8TestBodyEv
}
{
bug_244437
Memcheck:Uninitialized
fun:_ZN5mediaL23FromInterleavedInternalIssLs0EEEvPKviiPNS_8AudioBusEff
fun:_ZN5media8AudioBus22FromInterleavedPartialEPKviii
fun:_ZN5media8AudioBus15FromInterleavedEPKvii
fun:_ZN7content19WebRtcAudioRenderer14SourceCallbackEiPN5media8AudioBusE
}
{
bug_246567
Memcheck:Leak
fun:_Znw*
fun:_ZN2v88internal24PerThreadAssertScopeBase10AssertDataEv
fun:_ZN2v88internal20PerThreadAssertScopeILNS0_19PerThreadAssertTypeE1ELb1EE9IsAllowedEv
...
fun:_ZN3net15ProxyResolverV87Context6InitV8ERK13scoped_refptrINS_23ProxyResolverScriptDataEE
fun:_ZN3net15ProxyResolverV812SetPacScriptERK13scoped_refptrINS_23ProxyResolverScriptDataEERKN4base8CallbackIFviEEE
fun:_ZN3net22ProxyResolverV8Tracing3Job20ExecuteProxyResolverEv
fun:_ZN3net22ProxyResolverV8Tracing3Job15ExecuteBlockingEv
}
{
bug_246567b
Memcheck:Leak
fun:_Znw*
fun:_ZN2v88internal24PerThreadAssertScopeBase10AssertDataEv
fun:_ZN2v88internal20PerThreadAssertScopeILNS0_19PerThreadAssertTypeE1ELb1EE9IsAllowedEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0*
fun:_ZN2v88internal6Handle*
}
# Maybe related to bug_105527_a?
{
bug_247506a
Memcheck:Leak
fun:_Znw*
fun:_ZN16TCFStringUniquer19CreateStringUniquerEv
fun:pthread_once
fun:_ZN16TCFStringUniquerC1Ev
fun:_ZN19TCFResurrectContext17ResurrectCFStringEv
fun:_ZN19TCFResurrectContext9ResurrectEv
fun:_ZN19TCFResurrectContext21ResurrectCFDictionaryEv
fun:_ZN19TCFResurrectContext9ResurrectEv
fun:_ZNK22TGlobalFontRegistryImp20RendezvousWithServerEv
fun:_ZN22TGlobalFontRegistryImpC2Ev
fun:_ZN19TGlobalFontRegistry14CreateRegistryEv
}
# Maybe related to bug_105527_b ?
{
bug_247506b
Memcheck:Leak
fun:_Znw*
fun:_ZN18TLocalFontRegistry14CreateRegistryEv
fun:pthread_once
fun:_ZN18TLocalFontRegistryC2Ev
fun:XTCopyFontWithName
fun:_ZNK17TDescriptorSource35CopyFontDescriptorPerPostscriptNameEPK10__CFStringm
fun:_ZNK11TDescriptor32CreateMatchingDescriptorInternalEPK7__CFSet
fun:_ZN11TDescriptor12InitBaseFontEv
}
# Maybe related to bug_105342 ?
{
bug_247506c
Memcheck:Leak
fun:_Znw*
fun:_ZN15TSessionManager20CreateSessionManagerEv
fun:pthread_once
fun:_ZN15TSessionManagerC1Ev
fun:_ZNK22TGlobalFontRegistryImp13GetServerPortEv
fun:_ZNK22TGlobalFontRegistryImp20RendezvousWithServerEv
fun:_ZN22TGlobalFontRegistryImpC2Ev
fun:_ZN19TGlobalFontRegistry14CreateRegistryEv
fun:pthread_once
fun:_ZN19TGlobalFontRegistryC2Ev
fun:XTCopyFontWithName
}
{
bug_247506d
Memcheck:Leak
fun:malloc_zone_calloc
fun:_calloc_internal
fun:_cache_malloc
fun:_cache_fill
fun:lookUpMethod
fun:_class_lookupMethodAndLoadCache
fun:objc_msgSend
...
fun:_ZL17SetupMenuTrackingR14MenuSelectDatah5PointdP8MenuDatamtPK4RectS6_jS6_PK10__CFString
fun:_ZL19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttmS4_S4_PK10__CFStringPP13OpaqueMenuRefPt
fun:_HandlePopUpMenuSelection7
}
{
bug_247506e
Memcheck:Leak
fun:calloc
fun:_ZN11TMemoryHeap6CallocEmm
fun:_Z14AllocateMemorymP11TMemoryHeapb
fun:_Z13CacheAllocatemb
fun:_Z16BuildMacEncTablev
fun:_ZN15TParsingContext13GetParseProcsEv
fun:_ZN19TSFNTParsingContext13GetParseProcsEv
fun:_ZN18TCIDParsingContext13GetParseProcsEv
fun:_ZN16TType1OTFCIDFont20ParseCFFCIDFontDictsERK19TType1CFFDescriptorP32Type1ProtectionEvaluationContextRVt
}
{
bug_247506f
Memcheck:Leak
fun:malloc_zone_calloc
fun:_calloc_internal
fun:_objc_insertMethods
fun:_objc_read_categories_from_image
fun:_read_images
fun:map_images_nolock
fun:map_images
fun:_ZN4dyldL18notifyBatchPartialE17dyld_image_statesbPFPKcS0_jPK15dyld_image_infoE
fun:_ZN11ImageLoader4linkERKNS_11LinkContextEbbRKNS_10RPathChainE
fun:_ZN4dyld4linkEP11ImageLoaderbRKNS0_10RPathChainE
}
{
bug_247506g
Memcheck:Leak
fun:malloc_zone_malloc
fun:malloc_set_zone_name
fun:malloc_default_purgeable_zone
fun:ImageIO_Malloc
fun:copyImageBlockSetPNG
fun:ImageProviderCopyImageBlockSetCallback
fun:CGImageProviderCopyImageBlockSet
fun:img_blocks_create
fun:img_blocks_extent
fun:img_data_lock
fun:CGSImageDataLock
fun:ripc_AcquireImage
fun:ripc_DrawImage
fun:CGContextDrawImage
fun:__-[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:]_block_invoke_1
fun:-[NSImageRep drawInRect:fromRect:operation:fraction:respectFlipped:hints:]
fun:_ZN12_GLOBAL__N_*NSImageOrNSImageRepToSkBitmap*
fun:_ZN3gfx*NSImageRepToSkBitmap*
fun:_ZN3gfx27ImageSkiaFromResizedNSImageEP7NSImage7_NSSize
fun:_ZN3gfx20ImageSkiaFromNSImageEP7NSImage
fun:_ZNK3gfx5Image11ToImageSkiaEv
fun:_ZNK3gfx5Image10ToSkBitmapEv
}
{
bug_247506h
Memcheck:Leak
fun:malloc
fun:_ZN11TMemoryHeap6MallocEm
fun:_Z14AllocateMemorymP11TMemoryHeapb
fun:_Z13GetGrowBufferm
fun:_ZN31TFractionalMetricsRenderContextC2EPK10TType1FontPKht
fun:_ZNK10TType1Font13GetRawMetricsERK18TType1FontInstancePKhtR10_t_CharSBW
fun:_ZNK10TType1Font23RenderFractionalMetricsERK15TType1TransformtPKhtR22GlyphFractionalMetrics
fun:_ZNK13TType1CIDFont20GetFractionalMetricsERK15TType1TransformtP22GlyphFractionalMetrics
fun:_ZNK12TType1Strike10GetMetricsERK21TRenderingDescriptionmPKtRK19TDestinationMapping
fun:_Z20Type1GetGlyphMetricsmPK18TStrikeDescriptionPK21TRenderingDescriptionmPKtPvm
fun:_ZNK19TConcreteFontScaler25GetGlyphIdealAdvanceWidthEt
}
{
bug_247506i
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CFBasicHashCreate
fun:__CFDictionaryCreateGeneric
fun:CFDictionaryCreateMutable
fun:utDeactivateAllSelectedIMInDoc
fun:MyDeactivateTSMDocument
fun:_ReactivateTSMDocumentAfterMenuTracking
}
{
bug_247506j
Memcheck:Leak
fun:malloc_zone_calloc
fun:ripr_Rectangles
fun:ripc_DrawRects
fun:CGContextFillRects
fun:NSRectFillListWithColorsUsingOperation
fun:NSDrawColorTiledRects
}
{
bug_247506k
Memcheck:Leak
fun:malloc
fun:_ZN11TMemoryHeap6MallocEm
fun:_Z24Type1InterpretCharStringP11_t_FontInstP10_t_BCProcsP17_t_T1CharDataDescP9_t_CharIOP9_t_RunRecP12_t_PathProcsP6T1Args
fun:_ZL14ATMCharOutlineP11_t_FontInstP10_t_BCProcsPvP9_t_CharIOP12_t_PathProcsmS3_
fun:_ZN21MPathRenderingContext13RenderOutlineERK11_t_FontInstb
fun:_ZN28TPathMetricsRenderingContext11MakeOutlineERK11_t_FontInstbR10FixedPointS4_S4_
fun:_ZNK10TType1Font20RenderOutlineMetricsERK15TType1TransformtPKhtR21GlyphRenderingMetrics
fun:_ZNK13TType1CIDFont17GetOutlineMetricsERK15TType1TransformtP21GlyphRenderingMetrics
fun:_ZNK12TType1Strike10GetMetricsERK21TRenderingDescriptionmPKtRK19TDestinationMapping
fun:_Z20Type1GetGlyphMetricsmPK18TStrikeDescriptionPK21TRenderingDescriptionmPKtPvm
fun:_ZNK19TConcreteFontScaler19GetGlyphIdealBoundsEt
fun:FPFontGetGlyphIdealBounds
}
{
bug_257501
Memcheck:Uninitialized
fun:rangematch
fun:fnmatch1
fun:fnmatch1
fun:fnmatch$UNIX2003
fun:_ZN4base14FileEnumerator4NextEv
fun:_ZN10disk_cache15SimpleIndexFile19SyncRestoreFromDiskERKN4base8FilePathE
fun:_ZN10disk_cache15SimpleIndexFile20SyncLoadIndexEntriesERKN4base8FilePathE13scoped_refptrINS1_22SingleThreadTaskRunnerEERKNS1_8CallbackIFv10scoped_ptrIN9__gnu_cxx8hash_mapIyNS_13EntryMetadataENSA_4hashIyEESt8equal_toIyESaISC_EEENS1_14DefaultDeleterISI_EEEbEEE
}
{
bug_280583
Memcheck:Unaddressable
...
fun:_ZN6libyuv21ScaleARGBBilinearDownEiiiiiPKhPhiiii
fun:_ZN6libyuv16ScaleARGBAnySizeEiiiiiiiiPKhPhiiiiNS_10FilterModeE
fun:_ZN6libyuv9ScaleARGBEPKhiiiPhiiiiiiiNS_10FilterModeE
fun:ARGBScale
fun:_ZN7content20DesktopCaptureDevice4Core18OnCaptureCompletedEPN6webrtc12DesktopFrameE
fun:_ZN6webrtc12_GLOBAL__N_117ScreenCapturerMac7CaptureERKNS_13DesktopRegionE
fun:_ZN7content20DesktopCaptureDevice4Core9DoCaptureEv
}
{
bug_292913_a
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:_ZN7TCFBaseI11TDescriptorEnwEm
fun:_ZNK17TDescriptorSource14CopyDescriptorEPK7__CFURL
fun:_ZNK17TDescriptorSource32CopySystemWideFallbackDescriptorEP6CGFontPKtl
fun:_ZNK17TDescriptorSource32CopySystemWideFallbackDescriptorEP6CGFontPK10__CFString7CFRange
fun:_ZNK12TFontCascade24CreateSystemWideFallbackEPK8__CTFontPK10__CFString7CFRange
fun:_ZNK12TFontCascade14CreateFallbackEPK8__CTFontPK10__CFString7CFRange
...
fun:_ZN3gfx13RenderTextMac12EnsureLayoutEv
}
{
bug_292913_b
Memcheck:Uninitialized
fun:_ZL10AddEncHashP12EncHashTablePKhij
fun:_Z16BuildMacEncTablev
fun:_ZN15TParsingContext13GetParseProcsEv
fun:_ZN19TSFNTParsingContext13GetParseProcsEv
fun:_ZN18TCIDParsingContext13GetParseProcsEv
fun:_ZN16TType1OTFCIDFont20ParseCFFCIDFontDictsERK19TType1CFFDescriptorP32Type1ProtectionEvaluationContextRVt
fun:_ZN16TType1OTFCIDFont15ParseCFFCIDFontERK19TType1CFFDescriptorP32Type1ProtectionEvaluationContext
fun:_ZN16TType1OTFCIDFontC2ERK19TType1CFFDescriptor
fun:_ZN10TType1Font7GetFontEPK5TFont
}
{
bug_310761_a
Memcheck:Leak
fun:malloc
fun:_NPN_Get*Identifier
fun:_ZN5blink11WebBindings*get*Identifier*
}
{
bug_310761_b
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEm
fun:_ZN7WebCore*TerminatedArrayBuilder*
fun:_ZN7WebCore7RuleSet19compactPendingRules*
}
{
bug_320918
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEm
fun:_ZN3WTF11LinkedStackIN7WebCore8RuleDataEEnwEm
fun:_ZN7WebCore7RuleSet12addToRuleSet*
fun:_ZN7WebCore7RuleSet21findBestRuleSetAndAdd*
fun:_ZN7WebCore7RuleSet7addRule*
fun:_ZN7WebCore7RuleSet13addChildRules*
fun:_ZN7WebCore7RuleSet17addRulesFromSheet*
fun:_ZN7WebCore21CSSDefaultStyleSheets16loadDefaultStyle*
}
{
bug_340718
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore15DatabaseManagerC2Ev
fun:_ZN7WebCore15DatabaseManagerC1Ev
fun:_ZN7WebCore15DatabaseManager7managerEv
fun:_ZN7WebCore11FrameLoader11stopLoadingEv
}
{
bug_340726
Memcheck:Leak
fun:_Znw*
fun:_ZN4base17LoadNativeLibrary*
fun:_ZN3gfx26InitializeStaticGLBindings*
fun:_ZN3gfx9GLSurface30InitializeOneOffImplementation*
fun:_ZN3gfx9GLSurface24InitializeOneOffForTestsEv
}
{
bug_340909
Memcheck:Leak
fun:_Znw*
fun:_ZN3WTF17AtomicStringTable6createERNS_13WTFThreadDataE
fun:_ZN3WTFL17atomicStringTableEv
fun:_ZN3WTFL13atomicStringsEv
fun:_ZN3WTFL16addToStringTable*
fun:_ZN3WTF12AtomicString18addFromLiteralData*
fun:_ZN3WTF12AtomicString*ConstructFromLiteralTagE
fun:_ZN3WTF12AtomicString*ConstructFromLiteralTagE
fun:_ZN7WebCore9HTMLNames4initEv
}
{
bug_340957
Memcheck:Leak
fun:_Znw*
...
fun:_ZN7WebCore7RuleSet18ensurePendingRulesEv
fun:_ZN7WebCore7RuleSet21findBestRuleSetAndAdd*
fun:_ZN7WebCore7RuleSet7addRule*
fun:_ZN7WebCore7RuleSet13addChildRules*
fun:_ZN7WebCore7RuleSet17addRulesFromSheet*
fun:_ZN7WebCore21CSSDefaultStyleSheets*
fun:_ZN7WebCore21CSSDefaultStyleSheets*
...
fun:_ZN7WebCore13StyleResolver*
}
{
bug_346072
Memcheck:Leak
fun:_Znw*
fun:_ZN4base17LoadNativeLibraryERKNS_8FilePathEPSs
fun:_ZN3gfx26InitializeStaticGLBindingsENS_16GLImplementationE
fun:_ZN3gfx9GLSurface30InitializeOneOffImplementationENS_16GLImplementationEbbb
fun:_ZN3gfx9GLSurface24InitializeOneOffForTestsEb
fun:_ZN7content16ContentTestSuite10InitializeEv
fun:_ZN4base9TestSuite3RunEv
fun:_ZN7content17UnitTestTestSuite3RunEv
}
{
bug_369597
Memcheck:Leak
fun:malloc_zone_malloc
...
fun:ImageProviderCopyImageBlockSetCallback
fun:CGImageProviderCopyImageBlockSet
fun:img_blocks_create
fun:img_data_lock
fun:CGSImageDataLock
fun:ripc_AcquireImage
fun:ripc_DrawImage
fun:CGContextDrawImage
...
fun:_ZN12_GLOBAL__N_143NSImageOrNSImageRepToSkBitmapWithColorSpaceEP7NSImageP10NSImageRep7_NSSizebP12CGColorSpace
fun:_ZN3gfx31NSImageToSkBitmapWithColorSpaceEP7NSImagebP12CGColorSpace
fun:_ZNK2ui9Clipboard9ReadImageENS_13ClipboardTypeE
}
{
bug_375391_a
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:NSAllocateObject
fun:+[NSData(NSData) dataWithBytesNoCopy:length:]
fun:-[NSFileManager fileSystemRepresentationWithPath:]
fun:-[NSString(NSPathUtilities) fileSystemRepresentation]
fun:_ZN4base3mac18NSStringToFilePathEP8NSString
fun:_ZN4base10GetTempDirEPNS_8FilePathE
fun:_ZN4base22CreateNewTempDirectoryERKSsPNS_8FilePathE
fun:_ZN4base13ScopedTempDir19CreateUniqueTempDirEv
fun:_ZN7content25TestWebKitPlatformSupportC2Ev
fun:_ZN7content25TestWebKitPlatformSupportC1Ev
fun:_ZN7content17UnitTestTestSuiteC2EPN4base9TestSuiteE
fun:_ZN7content17UnitTestTestSuiteC1EPN4base9TestSuiteE
}
{
bug_375391_b
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFStringCreateImmutableFunnel3
fun:CFStringCreateWithBytes
fun:-[NSPlaceholderString initWithBytes:length:encoding:]
fun:-[NSString initWithUTF8String:]
fun:NSTemporaryDirectory
fun:_ZN4base10GetTempDirEPNS_8FilePathE
fun:_ZN4base22CreateNewTempDirectoryERKSsPNS_8FilePathE
fun:_ZN4base13ScopedTempDir19CreateUniqueTempDirEv
fun:_ZN7content25TestWebKitPlatformSupportC2Ev
fun:_ZN7content25TestWebKitPlatformSupportC1Ev
fun:_ZN7content17UnitTestTestSuiteC2EPN4base9TestSuiteE
fun:_ZN7content17UnitTestTestSuiteC1EPN4base9TestSuiteE
}
{
bug_375391_c
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:NSAllocateObject
fun:+[NSPathStore2 pathStoreWithCharacters:length:]
fun:-[NSString(NSPathUtilities) _stringByStandardizingPathUsingCache:]
fun:-[NSBundle _initInfoDictionary]
fun:+[NSBundle mainBundle]
fun:_ZN4base3mac11OuterBundleEv
fun:_ZN4base3mac12_GLOBAL__N_118UncachedAmIBundledEv
fun:_ZN4base3mac10AmIBundledEv
fun:_ZN7content25TestWebKitPlatformSupportC2Ev
fun:_ZN7content25TestWebKitPlatformSupportC1Ev
fun:_ZN7content17UnitTestTestSuiteC2EPN4base9TestSuiteE
fun:_ZN7content17UnitTestTestSuiteC1EPN4base9TestSuiteE
}
{
bug_380568
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:NSAllocateObject
fun:+[NSObject(NSObject) alloc]
fun:-[VideoCaptureDeviceQTKit initWithFrameReceiver:]
fun:_ZN5media21VideoCaptureDeviceMac4InitENS_18VideoCaptureDevice4Name14CaptureApiTypeE
fun:_ZN5media28VideoCaptureDeviceFactoryMac6CreateERKNS_18VideoCaptureDevice4NameE
fun:_ZN5media45VideoCaptureDeviceTest_OpenInvalidDevice_Test8TestBodyEv
}
{
bug_385604_b
Memcheck:Leak
fun:calloc
fun:_ZN18hb_object_header_t6createEj
fun:_ZL16hb_object_createI9hb_face_tEPT_v
fun:hb_face_create_for_tables
fun:_ZN3gfx12_GLOBAL__N_118CreateHarfBuzzFaceEP10SkTypeface
fun:_ZN3gfx12_GLOBAL__N_118CreateHarfBuzzFontEP10SkTypefacei
fun:_ZN3gfx18RenderTextHarfBuzz8ShapeRunEPNS_8internal15TextRunHarfBuzzE
fun:_ZN3gfx18RenderTextHarfBuzz12EnsureLayoutEv
fun:_ZN3gfx41RenderTextTest_HarfBuzz_RunDirection_Test8TestBodyEv
}
|