summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/memcheck/suppressions.txt
blob: 3f84860978b4ae90ebccf9b40373a1a09114a93b (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
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
# There are four 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.
#
# 4. issues that happen only on Google workstations.
#-----------------------------------------------------------------------

# 1. third party stuff we have no control over
{
   Uninitialized value in deflate (Third Party)
   Memcheck:Uninitialized
   ...
   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
   gtk_init_check leak (Third Party)
   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
}
{
   pango_font_leak_todo_3
   Memcheck:Leak
   ...
   fun:FcFontRenderPrepare
   ...
   fun:pango_itemize_with_base_dir
}
{
   pango_font_leak_todo_4
   Memcheck:Leak
   ...
   fun:FcFontRenderPrepare
   ...
   fun:pango_ot_buffer_output
}
{
   pango_font_leak_todo_5
   Memcheck:Leak
   ...
   fun:FcFontRenderPrepare
   ...
   fun:pango_context_get_metrics
}
{
   pango_font_leak_todo_6
   Memcheck:Leak
   ...
   fun:FcDefaultSubstitute
   ...
   fun:pango_itemize_with_base_dir
}
{
   # Similar to fontconfig_bug_8428 below. Reported in
   # https://bugs.freedesktop.org/show_bug.cgi?id=8215
   fontconfig_bug_8215
   Memcheck:Leak
   fun:malloc
   fun:FcPatternObjectInsertElt
   fun:FcPatternObjectAddWithBinding
}
{
   # 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 (Third Party)
   Memcheck:Leak
   ...
   fun:malloc
   fun:FcConfigValues
   fun:FcConfigValues
   ...
   fun:FcConfigValues
   fun:FcConfigValues
}
{
   bug_18590a (Third Party)
   Memcheck:Leak
   fun:malloc
   fun:FcConfigValues
   fun:FcConfigSubstituteWithPat
   fun:_ZN16FontConfigDirect5MatchEPSsPjbjRKSsPKvmPbS6_
}
{
   bug_46177_a (Third Party)
   Memcheck:Leak
   ...
   fun:FcCharSetOperate
   fun:FcFontSetSort
   fun:FcFontSort
   ...
   fun:pango_layout_get_pixel_size
}
{
   bug_46177_b (Third Party)
   Memcheck:Leak
   ...
   fun:FcCharSetFindLeafCreate
   fun:FcCharSetAddLeaf
   fun:FcCharSetOperate
   fun:FcFontSetSort
   fun:FcFontSort
   ...
   fun:pango_layout_get_iter
}
{
   bug_46177_c (Third Party)
   Memcheck:Leak
   ...
   fun:FcCharSetFindLeafCreate
   fun:FcCharSetAddLeaf
   fun:FcCharSetOperate
   fun:FcFontSetSort
   fun:FcFontSort
   ...
   fun:pango_layout_line_get_extents
}
{
   bug_46177_d (Third Party)
   Memcheck:Leak
   fun:malloc
   fun:FcFontSetCreate
   fun:FcFontSetSort
   fun:FcFontSort
}
{
   bug_46177_e (Third Party)
   Memcheck:Leak
   ...
   fun:FcCharSetFindLeafCreate
   fun:FcCharSetAddChar
}
{
   dlopen invalid read, probably a bug in glibc.  TODO(dkegel): file glibc bug
   Memcheck:Uninitialized
   ...
   fun:dlopen@@GLIBC_2.1
   fun:PR_LoadLibraryWithFlags
}
{
   dlopen leak on error. See http://sourceware.org/bugzilla/show_bug.cgi?id=12878.
   Memcheck:Leak
   fun:calloc
   fun:_dlerror_run
   fun:dlopen@@GLIBC_2.1
}
{
   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
}
{
   Pure NSS leak, does not involve glibc.
   Memcheck:Leak
   ...
   fun:SECMOD_AddNewModule
}
{
   bug_12614 (Third Party)
   Memcheck:Leak
   fun:?alloc
   ...
   fun:PR_LoadLibraryWithFlags
   ...
   fun:SECMOD_LoadModule
}
{
   NSS leak - https://bugzilla.mozilla.org/show_bug.cgi?id=762351 - fixed in NSS 3.13.6/3.14
   Memcheck:Leak
   ...
   fun:PKIX_PL_Malloc
   ...
   fun:PKIX_PL_OID_Create
   ...
   fun:cert_PKIXMakeOIDList
   fun:cert_pkixSetParam
   fun:CERT_PKIXVerifyCert
}
{
   libc_dynamiclinker_foo
   Memcheck:Uninitialized
   obj:/lib*/ld-2.*.so
   obj:/lib*/ld-2.*.so
}
{
   libc_dynamiclinker_bar
   Memcheck:Unaddressable
   obj:/lib*/ld-2.*.so
   obj:/lib*/ld-2.*.so
}
{
   libc_dynamiclinker_bar_2
   Memcheck:Jump
   obj:*
   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
}
{
   # "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 (Third Party)
   Memcheck:Param
   write(buf)
   ...
   fun:sqlite3OsWrite
   fun:pager_write_pagelist
}
{
   bug_20653b (Third Party)
   Memcheck:Param
   write(buf)
   ...
   fun:*Write
   fun:sqlite3OsWrite
   ...
   fun:pager_write
}
{
   # array of weak references freed but not processed?
   bug_16576
   Memcheck:Leak
   ...
   fun:g_object_weak_ref
   fun:g_object_add_weak_pointer
}
{
   # Totem plugin leaks when we load it.
   bug_21326 (Third Party)
   Memcheck:Leak
   ...
   fun:_ZN56webkit5npapi9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo
}
{
   # 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 (Third Party)
   Memcheck:Unaddressable
   fun:sqlite3PcacheClearSyncFlags
   fun:syncJournal
   fun:sqlite3PagerCommitPhaseOne
   fun:sqlite3BtreeCommitPhaseOne
}
{
   bug_23314b (Third Party)
   Memcheck:Unaddressable
   fun:sqlite3PcacheClearSyncFlags
   fun:syncJournal
   fun:sqlite3PagerCommitPhaseOne
   fun:sqlite3BtreeCommitPhaseOne
}
{
   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
}
{
   bug_33394 (Third Party)
   Memcheck:Leak
   fun:calloc
   fun:PR_Calloc
   fun:PR_NewLock
   fun:_PR_UnixInit
   fun:_PR_ImplicitInitialization
   ...
   fun:_ZN4base14EnsureNSPRInitEv
}
{
   bug_33394_b (Third Party)
   Memcheck:Leak
   fun:calloc
   fun:PR_Calloc
   fun:PR_NewMonitor
   fun:_PR_UnixInit
   fun:_PR_ImplicitInitialization
   ...
   fun:_ZN4base14EnsureNSPRInitEv
}
{
   # Looks like a leak in gtk's code when loading the im context module.
   bug_41231 (Third Party)
   Memcheck:Leak
   ...
   fun:malloc
   fun:g_malloc
   fun:g_strdup
   fun:gtk_im_multicontext_get_slave
   fun:gtk_im_multicontext_set_client_window
   fun:gtk_im_context_set_client_window
}
{
   bug_51332a (Third Party)
   Memcheck:Leak
   ...
   fun:PORT_NewArena_Util
   fun:sec_pkcs7_create_content_info
   fun:SEC_PKCS7CreateData
   fun:sec_pkcs12_encoder_start_context
   fun:SEC_PKCS12Encode
}
{
   bug_51332b (Third Party)
   Memcheck:Leak
   ...
   fun:PORT_ArenaZAlloc_Util
   fun:sec_pkcs7_create_content_info
   fun:SEC_PKCS7CreateData
   fun:sec_pkcs12_encoder_start_context
   fun:SEC_PKCS12Encode
}
{
   bug_51332c (Third Party)
   Memcheck:Leak
   fun:calloc
   fun:PORT_ZAlloc_Util
   fun:PORT_NewArena_Util
   fun:sec_pkcs7_create_content_info
   fun:sec_pkcs12_encoder_start_context
   fun:SEC_PKCS12Encode
}
{
   bug_51330 (Third Party)
   Memcheck:Leak
   ...
   fun:p12u_DigestOpen
   ...
   fun:SEC_PKCS12DecoderUpdate
}
{
   bug_51328a (Third Party)
   Memcheck:Leak
   ...
   fun:SEC_ASN1DecoderUpdate_Util
   ...
   fun:SEC_ASN1DecoderUpdate_Util
   fun:SEC_PKCS7DecoderUpdate
   ...
   fun:SEC_ASN1DecoderUpdate_Util
   fun:SEC_PKCS12DecoderUpdate
}
{
   bug_51328b (Third Party)
   Memcheck:Leak
   ...
   fun:SEC_PKCS7DecoderStart
   ...
   fun:SEC_ASN1DecoderUpdate_Util
   fun:SEC_PKCS12DecoderUpdate
}
{
   # See http://sourceware.org/bugzilla/show_bug.cgi?id=14015.
   bug_51770 (Third Party)
   Memcheck:Leak
   fun:calloc
   fun:_dlerror_run
   fun:dlsym
}
{
   bug_58730_strlen_addr8 (Third Party)
   Memcheck:Unaddressable
   fun:__strlen_sse2
}
{
   bug_58730_strlen_cond (Third Party)
   Memcheck:Uninitialized
   fun:__strlen_sse2
}
{
   bug_58730_strcmp_addr8 (Third Party)
   Memcheck:Unaddressable
   fun:__strcmp_ssse3
}
{
   bug_58730_strcmp_cond (Third Party)
   Memcheck:Uninitialized
   fun:__strcmp_ssse3
}
{
   bug_58730_strcmp_value8 (Third Party)
   Memcheck:Uninitialized
   fun:__strcmp_ssse3
}
{
   bug_58730_strncmp_value8 (Third Party)
   Memcheck:Uninitialized
   fun:__strncmp_ssse3
}
{
   bug_58730_memmove_value4 (Third Party)
   Memcheck:Uninitialized
   fun:__memmove_ssse3
}
{
   bug_58730_memmove_cond (Third Party)
   Memcheck:Uninitialized
   fun:__memmove_ssse3
}
{
   bug_58730_memcpy_value4 (Third Party)
   Memcheck:Uninitialized
   fun:__memcpy_ssse3
}
{
   bug_58730_memcpy_addr8 (Third Party)
   Memcheck:Unaddressable
   fun:__memcpy_ssse3
}
{
   bug_58730_memcpy_cond (Third Party)
   Memcheck:Uninitialized
   fun:__memcpy_ssse3
}
{
   bug_58730_memmove_chk_cond (Third Party)
   Memcheck:Uninitialized
   fun:__memmove_chk_ssse3
}
{
   bug_58730_libc.so_addr8 (Third Party)
   Memcheck:Unaddressable
   obj:/lib/libc-2.*.so
}
{
   bug_58730_libc.so_cond (Third Party)
   Memcheck:Uninitialized
   obj:/lib/libc-2.*.so
}
{
   bug_58730_libc.so_value8 (Third Party)
   Memcheck:Uninitialized
   obj:/lib/libc-2.11.1.so
}
{
   # I believe it's a bug in gtk+-2.12.x and should already be fixed in recent gtk.
   bug_61685 (Third Party)
   Memcheck:Leak
   fun:malloc
   ...
   fun:gtk_text_buffer_select_range
   fun:*OmniboxViewGtk16SetSelectedRange*
}
{
   bug_66941 (Third Party)
   Memcheck:Leak
   ...
   fun:STAN_ChangeCertTrust
   fun:CERT_ChangeCertTrust
}
{
   leaks in bash
   Memcheck:Leak
   ...
   obj:/bin/bash
}
{
   bug_73000_fixed_upstream_in_gtk
   Memcheck:Uninitialized
   fun:clipboard_clipboard_buffer_received
   ...
   fun:gtk_text_view_key_press_event
   fun:_ZN14OmniboxViewGtk14HandleKeyPressEP10_GtkWidgetP12_GdkEventKey
}
{
   bug_76386a (Third Party)
   Memcheck:Leak
   fun:_Znw*
   fun:_ZNSs4_Rep9_S_createE*RKSaIcE
   ...
   fun:_ZNSsC1*KS*
}
{
   bug_76386b (Third Party)
   Memcheck:Leak
   fun:_Znw*
   fun:_ZNSs4_Rep9_S_createE*RKSaIcE
   fun:_ZNSs4_Rep8_M_cloneERKSaIcE*
}
{
   bug_76386c (Third Party)
   Memcheck:Leak
   fun:_Znw*
   fun:_ZNSs4_Rep9_S_createE*RKSaIcE
   fun:_ZNSs9_M_mutateEjjj
}
{
   bug_80378_fixed_upstream_for_next_gtk
   Memcheck:Leak
   fun:malloc
   fun:g_malloc
   fun:g_slice_alloc
   ...
   fun:gtk_window_group_list_windows
   fun:_ZN8gtk_util*AppModal*
}
{
   getpwuid_and_getgrouplist
   Memcheck:Leak
   fun:malloc
   fun:nss_parse_service_list
   fun:__nss_database_lookup
   obj:*
   ...
   fun:get*
}
{
   dbus_x64_leaks
   Memcheck:Leak
   ...
   obj:/usr/bin/dbus-launch
}
{
   pulseaudio: pa_set_env_and_record
   Memcheck:Leak
   fun:malloc
   fun:realloc
   fun:pa_xrealloc
   fun:pa_sprintf_malloc
   fun:pa_set_env
   fun:pa_set_env_and_record
   fun:main
}

# The following stack suppresses Memcheck false positives on NaCl browser_tests
# See https://bugs.kde.org/show_bug.cgi?id=270709#c4 for possible reason
{
   bug_101755 valgrind_bitfields_false_positive
   Memcheck:Uninitialized
   ...
   fun:_ZN7WebCore13WidthIterator*
   ...
   fun:_ZNK7WebCore4Font*
}

# Invalid frees from exit() and accept().
{
   bug_108618 (Third party)
   Memcheck:Free
   fun:free
   fun:__libc_freeres
   fun:_vgnU_freeres
}

# XRandRInfo object seems to be leaking inside XRRFindDisplay.  This happens the
# first time it is called, no matter who the caller is.  We have observed this
# problem with both XRRSelectInput and XRRQueryExtension.
{
   bug_119677
   Memcheck:Leak
   fun:malloc
   fun:XRRFindDisplay
}
{
   Flash Player Leak
   Memcheck:Leak
   ...
   obj:/usr/lib/flashplugin-installer/libflashplayer.so
}
{
   Flash Player Unaddressable
   Memcheck:Unaddressable
   ...
   obj:/usr/lib/flashplugin-installer/libflashplayer.so
}
{
   Flash Player Uninitialized
   Memcheck:Uninitialized
   ...
   obj:/usr/lib/flashplugin-installer/libflashplayer.so
}
{
   Occasional leak inside setlocale()
   Memcheck:Leak
   fun:malloc
   ...
   fun:_nl_make_l10nflist
   fun:_nl_find_locale
   fun:setlocale
   fun:_ZN12_GLOBAL__N_121ContentMainRunnerImpl10InitializeEiPPKcPN7content19ContentMainDelegateE
   fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
   fun:ChromeMain
}
{
   Occasional leak inside gdk_init()
   Memcheck:Leak
   fun:malloc
   ...
   fun:_nl_find_domain
   fun:__dcigettext
   fun:gdk_screen_class_intern_init
   fun:g_type_class_ref
   fun:g_type_class_ref
   fun:g_object_newv
   fun:g_object_new
   fun:_gdk_x11_screen_new
   fun:gdk_display_open
   fun:gdk_display_open_default_libgtk_only
   fun:gdk_init_check
   fun:gdk_init
}
{
   bug_130770_a
   Memcheck:Unaddressable
   ...
   fun:_mesa_glsl_compile_shader
}
{
   bug_130770_b
   Memcheck:Unaddressable
   ...
   fun:_mesa_glsl_link_shader
}

#-----------------------------------------------------------------------
# 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

# See tools/valgrind/memcheck_analyze.py before modifying sanity tests.
{
   Memcheck sanity test 01 (memory leak).
   Memcheck:Leak
   fun:_Zna*
   fun:_ZN4base31ToolsSanityTest_MemoryLeak_Test8TestBodyEv
}
{
   Memcheck sanity test 02 (malloc/read left).
   Memcheck:Unaddressable
   fun:*ReadValueOutOfArrayBoundsLeft*
   ...
   fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 03 (malloc/read right).
   Memcheck:Unaddressable
   fun:*ReadValueOutOfArrayBoundsRight*
   ...
   fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 04 (malloc/write left).
   Memcheck:Unaddressable
   fun:*WriteValueOutOfArrayBoundsLeft*
   ...
   fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 05 (malloc/write right).
   Memcheck:Unaddressable
   fun:*WriteValueOutOfArrayBoundsRight*
   ...
   fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 06 (new/read left).
   Memcheck:Unaddressable
   fun:*ReadValueOutOfArrayBoundsLeft*
   ...
   fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 07 (new/read right).
   Memcheck:Unaddressable
   fun:*ReadValueOutOfArrayBoundsRight*
   ...
   fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 08 (new/write left).
   Memcheck:Unaddressable
   fun:*WriteValueOutOfArrayBoundsLeft*
   ...
   fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 09 (new/write right).
   Memcheck:Unaddressable
   fun:*WriteValueOutOfArrayBoundsRight*
   ...
   fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 10 (write after free).
   Memcheck:Unaddressable
   fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 11 (write after delete).
   Memcheck:Unaddressable
   fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 12 (array deleted without []).
   Memcheck:Free
   ...
   fun:_ZN4base46ToolsSanityTest_ArrayDeletedWithoutBraces_Test8TestBodyEv
}
{
   Memcheck sanity test 13 (single element deleted with []).
   Memcheck:Free
   ...
   fun:_ZN4base51ToolsSanityTest_SingleElementDeletedWithBraces_Test8TestBodyEv
}
{
   Memcheck sanity test 14 (malloc/read uninit).
   Memcheck:Uninitialized
   fun:*ReadUninitializedValue*
   ...
   fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
   Memcheck sanity test 15 (new/read uninit).
   Memcheck:Uninitialized
   fun:*ReadUninitializedValue*
   ...
   fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
   bug_86301 This test explicitly verifies PostTaskAndReply leaks the task if the originating MessageLoop has been deleted.
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
   fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
   fun:_ZN4base12_GLOBAL__N_169MessageLoopProxyTest_PostTaskAndReply_DeadReplyLoopDoesNotDelete_Test8TestBodyEv
}
{
   logging::InitLogging never frees filename. It would be hard to free properly.
   Memcheck:Leak
   ...
   fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateENS_20OldFileDeletionStateE
}
{
   Linux tests don't bother to undo net::TestServer::LoadTestRootCert().
   Memcheck:Leak
   ...
   fun:_ZN3net10TestServer16LoadTestRootCertEv
}
{
   # uitest's ResourceDispatcherTest.CrossSiteAfterCrash crashes on purpose
   Intentional_crash
   Memcheck:Unaddressable
   fun:_ZN12AboutHandler10AboutCrashEv
}
{
   # Non-joinable thread doesn't clean up all state on program exit
   # very common in ui tests
   bug_16096 (WontFix)
   Memcheck:Leak
   fun:_Znw*
   fun:_ZNSs4_Rep9_S_createE*RKSaIcE
   fun:_ZNSs4_Rep8_M_cloneERKSaIcE*
   fun:_ZNSs7reserveE*
   fun:_ZNSs6appendEPKc*
   fun:*StringAppendV*
   ...
   fun:_ZN4base12StringPrintfEPKcz
}
{
   # 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 (Intentional)
   Memcheck:Leak
   ...
   fun:_ZN7WebCore8SVGNames4initEv
}
{
   intentional_BrowserThreadTest_NotReleasedIfTargetThreadNonExistent_Test_leak
   Memcheck:Leak
   fun:_Znw*
   fun:*BrowserThreadTest_NotReleasedIfTargetThreadNonExistent_Test8TestBodyEv
}
{
   # 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
}
{
   # This is WebKit wide theading initialization which is intentionally kept
   # around (not freed) while the process is running.
   intentional_WTF_ThreadIdentifierData_initialize_leak
   Memcheck:Leak
   ...
   fun:_ZN3WTF20ThreadIdentifierData10initializeEj
}
{
   # This is WebKit wide theading initialization which is intentionally kept
   # around (not freed) while the process is running.
   intentional_WTF_wtfThreadData_leak
   Memcheck:Leak
   ...
   fun:_ZN3WTF13wtfThreadDataEv
}
{
   # Intentional crash test
   intentional_RendererCrashTest
   Memcheck:Unaddressable
   fun:_Z*33HandleRendererErrorTestParametersRK11CommandLine
   fun:_Z12RendererMainRKN7content18MainFunctionParams*
}
{
   # PR_GetCurrentThread allocates a PRThread structure and stores it in
   # thread-specific data.  The PRThread structure is freed by the
   # PR_DetachThread call in CertVerifierWorker::Run or when the thread
   # terminates.  Since we do not shut down worker threads, the PRThread
   # structure created for a worker thread may be leaked at Chrome shutdown
   # if the worker thread did not make it to the PR_DetachThread call.
   bug_32624 (Intentional)
   Memcheck:Leak
   fun:calloc
   fun:PR_Calloc
   fun:PR_GetCurrentThread
   ...
   fun:_ZNK3net15X509Certificate14VerifyInternalERKSsiPNS_16CertVerifyResultE
   fun:_ZNK3net15X509Certificate6VerifyERKSsiPNS_16CertVerifyResultE
   fun:_ZN3net18CertVerifierWorker3RunEv
}
{
   # The InvalidRead error in rc4_wordconv is intentional.
   # https://bugzilla.mozilla.org/show_bug.cgi?id=341127
   bug_43113 (Intentional)
   Memcheck:Unaddressable
   fun:rc4_wordconv
   fun:RC4_Encrypt
}
{
   # Intentionally leaking NSS to prevent shutdown crashes
   bug_61585a (Intentional)
   Memcheck:Leak
   fun:calloc
   ...
   fun:error_get_my_stack
   fun:nss_ClearErrorStack
   fun:NSSArena_Create
   ...
   fun:nss_Init
   fun:NSS_InitReadWrite
   ...
   fun:*13EnsureNSSInitEv
}
{
   bug_61585b (Intentional)
   Memcheck:Leak
   fun:malloc
   fun:PL_ArenaAllocate
   fun:PORT_ArenaAlloc*
}
{
   # Histograms are used on un-joined threads, and can't be deleted atexit.
   Histograms via FactoryGet including Linear Custom Boolean and Basic
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN4base*Histogram10FactoryGet*
}
{
   # Histograms are used on un-joined threads, and can't be deleted atexit.
   Histograms via FactoryGet including Stats for disk_cache
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN10disk_cache14StatsHistogram10FactoryGet*
}
{
   Intentional leak for Histogram (in StatisticsRecorderTest, NotInitialized).
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base42StatisticsRecorderTest_NotInitialized_Test8TestBodyEv
}
{
   Intentional leak for list<const BucketRanges*>(in StatisticsRecorderTest, RegisterBucketRanges).
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base18StatisticsRecorder31RegisterOrDeleteDuplicateRangesEPKNS_12BucketRangesE
   fun:_ZN4base48StatisticsRecorderTest_RegisterBucketRanges_Test8TestBodyEv
}
{
   # See http://code.google.com/p/chromium/issues/detail?id=70062#c8
   bug_70062 (Intentional)
   Memcheck:Leak
   ...
   fun:InitSessionCacheLocks
   fun:initSessionCacheLocksLazily
   ...
   fun:ssl_InitSessionCacheLocks
}
{
   # Intentionally leaking NSS to prevent shutdown crashes
   bug_77990 (Intentional)
   Memcheck:Leak
   fun:calloc
   ...
   fun:error_get_my_stack
   fun:nss_ClearErrorStack
   fun:NSSArena_Destroy
}
{
   bug_83345 (Needs_Annotation)
   Memcheck:Leak
   ...
   fun:_ZN4base*23LeakyLazyInstanceTraits*NewEPv
   fun:_ZN4base12LazyInstance*LeakyLazyInstanceTraits*PointerEv
}
{
   bug_87500_a (Intentional)
   Memcheck:Leak
   ...
   fun:_ZN10disk_cache9BackendIO23ExecuteBackendOperationEv
   fun:_ZN10disk_cache9BackendIO16ExecuteOperationEv
}
{
   bug_87500_b (Intentional)
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
   fun:_ZN11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx
   fun:_ZN4base20MessageLoopProxyImpl14PostTaskHelperERKN15tracked_objects8LocationEP4Taskxb
   fun:_ZN4base20MessageLoopProxyImpl8PostTaskERKN15tracked_objects8LocationEP4Task
   fun:_ZN10disk_cache10InFlightIO12OnIOCompleteEPNS_12BackgroundIOE
}
{
   bug_87500_c (Intentional)
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net9HttpCache*EntryERKSsPPNS0_11ActiveEntryEPNS0_11TransactionE
   fun:_ZN3net9HttpCache11Transaction13Do*EntryEv
   fun:_ZN3net9HttpCache11Transaction6DoLoopEi
   fun:_ZN3net9HttpCache11Transaction12OnIOCompleteEi
}
{
   Intentional, see http://codereview.chromium.org/7670025
   Memcheck:Param
   msync(start)
   fun:msync$UNIX2003
   fun:mach_override_ptr
   fun:_ZN4base33EnableTerminationOnHeapCorruptionEv
}
{
   # Intentional - data is stored in thread-local storage for an unjoined
   # worker thread, and so can occasionally leak. See crbug.com/89553 for
   # additional info
   bug_89553
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN12_GLOBAL__N_111DnsReloader11MaybeReloadEv
}
{
   # Intentional - atomic strings and hash map in WebCore::nameToPseudoTypeMap() (CSSSelector.cpp) are to be leaked
   bug_108516
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCoreL19nameToPseudoTypeMapEv
}
{
   bug_79322 (Intentional)
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN4base*StatisticsRecorderTest_*_Test8TestBodyEv
}

#-----------------------------------------------------------------------
# 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
}
{
   # 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:_ZN4base23EnsureProcessTerminatedEi
}
{
   # very common in ui tests
   bug_16089a
   Memcheck:Leak
   ...
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN3net12HostResolver3Job5StartEv
}
{
   # ditto, but tweaked to fire on bots, more robust against optimizer changes?
   bug_16089b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN18chrome_browser_net9DnsMaster24PreLockedScheduleLookupsEv
}
{
   # ditto, but tweaked for cat hit by URLFetcherTest.SameThreadsTest on bot
   bug_16089c
   Memcheck:Leak
   ...
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN3net13TCPConnectJob13DoResolveHostEv
}
{
   # ditto, but tweak to match the chromeos's stack.
   bug_16089d
   Memcheck:Leak
   fun:*
   ...
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN3net16HostResolverImpl3Job5StartEv
}
{
   # ditto, but for IPv6 support (?)
   bug_16089e
   Memcheck:Leak
   fun:*
   ...
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN3net16HostResolverImpl16ProbeIPv6SupportEv
}
{
   # ditto, but for filesystem: URLs.
   bug_16089f
   Memcheck:Leak
   ...
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN7fileapi23FileSystemURLRequestJob11ReadRawDataEPN3net8IOBufferEiPi
}
{
   # ditto, but for fileapi::FileWriter
   bug_16089g
   Memcheck:Leak
   ...
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN7fileapi18FileWriterDelegate5WriteEv
}
{
   # ditto, but for unit tests.
   bug_16089h
   Memcheck:Leak
   ...
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   ...
   fun:_ZN3net17URLRequestFileJob5StartEv
}
{
   # 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_baseIN4base11PendingTaskESaIS1_EE17_M_initialize_mapE*
   ...
   fun:_ZN11MessageLoopC1ENS_4TypeE
}
{
   # 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:_ZN11MessageLoop21AddToDelayedWorkQueueERKN*PendingTaskE
   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_8ListenerEP11MessageLoopbPN4base13WaitableEventE
   ...
   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
}
{
   # 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_hash_table_new_full
}
{
   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_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:_ZN18ResourceDispatcher12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoEii
   fun:_ZN11ChildThread12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoEii
   ...
   fun:_ZN7WebCore14ResourceHandle5startEPNS_5FrameE
}
{
   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
}
{
   # slight variant of the above
   bug_19371a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
   fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
   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_19775_a
   Memcheck:Leak
   ...
   fun:malloc
   fun:sqlite3MemMalloc
   fun:mallocWithAlarm
   fun:sqlite3Malloc
   ...
   fun:sqlite3VdbeExec
   fun:sqlite3Step
   fun:sqlite3_step
   fun:sqlite3_exec
   fun:_ZN3sql10Connection7Execute*
   ...
   fun:_ZN7history*Database*Create*
}
{
   bug_19775_c
   Memcheck:Leak
   ...
   fun:openDatabase
   fun:sqlite3_open
   fun:_ZN3sql10Connection12OpenInternalERKSs
}
{
   bug_19775_g
   Memcheck:Leak
   fun:malloc
   fun:sqlite3MemMalloc
   fun:mallocWithAlarm
   fun:sqlite3Malloc
   fun:sqlite3ParserAlloc
   fun:sqlite3RunParser
   fun:sqlite3Prepare
   fun:sqlite3LockAndPrepare
   fun:sqlite3_prepare*
}
{
   bug_19775_h
   Memcheck:Leak
   ...
   fun:malloc
   fun:sqlite3MemMalloc
   fun:mallocWithAlarm
   fun:sqlite3Malloc
   ...
   fun:yy_reduce
}
{
   bug_20581
   Memcheck:Leak
   ...
   fun:btreeCreateTable
   fun:sqlite3BtreeCreateTable
   fun:sqlite3VdbeExec
   fun:sqlite3Step
   fun:sqlite3_step
   fun:sqlite3_exec
}
# IPCing uninitialized data
{
   bug_20997_a
   Memcheck:Param
   socketcall.sendmsg(msg.msg_iov[i])
   fun:sendmsg*
   fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
}
{
   bug_20997_b
   Memcheck:Param
   socketcall.sendmsg(msg.msg_iov[i])
   fun:sendmsg$UNIX2003
   ...
   fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
   ...
   fun:event_process_active
   fun:event_base_loop
}
{
   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
}
{
   bug_22923
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN13WorkerService12CreateWorker*
   fun:_ZN19RenderMessageFilter14OnCreateWorker*
}
{
   bug_27665
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN10SkXfermode6CreateENS_4ModeE
   fun:_ZN7SkPaint15setXfermodeModeEN10SkXfermode4ModeE
   fun:_ZNK7WebCore19PlatformContextSkia16setupPaintCommonEP7SkPaint
   fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceE
   fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceENS_17CompositeOperatorE
}
# The following three suppressions are related to the workers code.
{
   bug_27837
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN19WebSharedWorkerStub9OnConnectEii
}
{
   bug_27838
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEj
   fun:_ZN3WTF13FastAllocBasenwEj
   fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMessagePortChannelEEE
   fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_15WebSharedWorker15ConnectListenerE
   fun:_ZN19WebSharedWorkerStub9OnConnectEii
}
{
   bug_27936
   Memcheck:Leak
   ...
   fun:_ZN7history20ExpireHistoryBackend28BroadcastDeleteNotificationsEPNS0_18DeleteDependenciesE
   fun:_ZN7history20ExpireHistoryBackend21ArchiveSomeOldHistoryEN4base4TimeEPKNS_20ExpiringVisitsReaderEi
   fun:_ZN7history20ExpireHistoryBackend18DoArchiveIterationEv
}
{
   bug_28200
   Memcheck:Leak
   fun:malloc
   fun:malloc
   fun:_ZN3WTF10fastMallocEj
   fun:_ZN3WTF13FastAllocBasenwEj
   fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMessagePortChannelEEE
   fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_15WebSharedWorker15ConnectListenerE
   fun:_ZN19WebSharedWorkerStub9OnConnectEii
}
{
   # GTK tooltip doesn't always initialize variables.
   # https://bugzilla.gnome.org/show_bug.cgi?id=554686
   tooltip_554686
   Memcheck:Uninitialized
   fun:child_location_foreach
   fun:gtk_fixed_forall
   ...
   fun:find_widget_under_pointer
   fun:gtk_tooltip_show_tooltip
   fun:tooltip_popup_timeout
   fun:gdk_threads_dispatch
   fun:g_timeout_dispatch
}
{
   bug_28633
   Memcheck:Leak
   fun:calloc
   fun:__new_exitfn
   fun:__cxa_atexit
}
{
   bug_29675
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN27ChromeBrowserMainPartsPosix24PostMainMessageLoopStartEv
   ...
   fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
   fun:ChromeMain
}
{
   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:Unaddressable
   ...
   fun:_ZSt22__get_temporary_bufferIPN7WebCore11RenderLayerEESt4pairIPT_iEiS5_
   fun:_ZNSt17_Temporary_bufferIPPN7WebCore11RenderLayerES2_EC1ES3_S3_
   fun:_ZN7WebCore11RenderLayer17updateZOrderListsEv
   fun:_ZN7WebCore11RenderLayer24updateLayerListsIfNeededEv
   fun:_ZN7WebCore11RenderLayer38updateCompositingAndLayerListsIfNeededEv
}
{
   bug_30703a
   Memcheck:Param
   write(buf)
   ...
   fun:zipCloseFileInZipRaw
   fun:zipCloseFileInZip
   fun:_Z*13AddEntryToZip*
}
{
   bug_30703b
   Memcheck:Uninitialized
   fun:deflate
   ...
   fun:zipCloseFileInZipRaw
   fun:zipCloseFileInZip
   fun:_Z*13AddEntryToZip*
}
{
   bug_30704a
   Memcheck:Uninitialized
   fun:crc32
   ...
   fun:png_write_row
}
{
   bug_30704b
   Memcheck:Param
   write(buf)
   ...
   fun:_ZN26SandboxedUnpacker17RewriteImageFilesEv
}
{
   bug_30704c
   Memcheck:Param
   write(buf)
   ...
   fun:_ZNK16BrowserThemePack11WriteToDiskE8FilePath
}
{
   bug_30704d
   Memcheck:Uninitialized
   ...
   fun:png_process_data
   fun:_ZN7WebCore14PNGImageReader6decodeERKNS_12SharedBufferEb
   fun:_ZN7WebCore15PNGImageDecoder6decodeEb
   fun:_ZN7WebCore15PNGImageDecoder18frameBufferAtIndexEm
}
{
   bug_30704e
   Memcheck:Uninitialized
   obj:*/libpng*
   fun:png_write_row
}
{
   bug_30704f
   Memcheck:Uninitialized
   ...
   fun:wk_png_write_find_filter
   fun:wk_png_write_row
   fun:_ZN14webkit_support12_*DoLibpngWrite*
}
{
   bug_87232
   Memcheck:Uninitialized
   fun:_ZN7WebCore12base64EncodeEPKcjRN3WTF6VectorIcLj0EEEb
   fun:_ZN7WebCore12base64EncodeERKN3WTF6VectorIcLj0EEERS2_b
   fun:_ZN7WebCore*14ImageToDataURL*SkBitmapEEN3WTF6StringERT_*
}
{
   bug_31800
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore28createFontCustomPlatformDataEPNS_12SharedBufferE
   fun:_ZN7WebCore10CachedFont20ensureCustomFontDataEv
   fun:_ZN7WebCore17CSSFontFaceSource11getFontDataERKNS_15FontDescriptionEbbPNS_15CSSFontSelectorE
   fun:_ZN7WebCore11CSSFontFace11getFontDataERKNS_15FontDescriptionEbb
   fun:_ZN7WebCore20CSSSegmentedFontFace11getFontDataERKNS_15FontDescriptionE
   fun:_ZN7WebCore15CSSFontSelector11getFontDataERKNS_15FontDescriptionERKN3WTF12AtomicStringE
   fun:_ZN7WebCore9FontCache11getFontDataERKNS_4FontERiPNS_12FontSelectorE
   fun:_ZNK7WebCore16FontFallbackList10fontDataAtEPKNS_4FontEj
   fun:_ZNK7WebCore16FontFallbackList15primaryFontDataEPKNS_4FontE
}
{
   bug_31985
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3net16HttpNetworkLayer10GetSessionEv
   fun:_ZN3net16HttpNetworkLayer17CreateTransactionEP10scoped_ptrINS_15HttpTransactionEE
   fun:_ZN3net9HttpCache11Transaction13DoSendRequestEv
   fun:_ZN3net9HttpCache11Transaction6DoLoopEi
}
{
   bug_32085
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIN7content21NotificationRegistrar6RecordEE8allocate*
   fun:_ZNSt12_Vector_baseIN7content21NotificationRegistrar6RecordESaIS*
   fun:_ZNSt6vectorIN7content21NotificationRegistrar6RecordESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S*
   fun:_ZNSt6vectorIN7content21NotificationRegistrar6RecordESaIS*
   fun:_ZN7content21NotificationRegistrar3Add*
}
{
   bug_32273_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
   fun:_ZN3IPC11SyncChannel15SendWithTimeoutEPNS_7MessageEi
   fun:_ZN3IPC11SyncChannel4SendEPNS_7MessageE
   fun:_ZN11ChildThread4SendEPN3IPC7MessageE
   fun:_ZN12RenderThread4SendEPN3IPC7MessageE
   fun:_ZN12RenderWidget4SendEPN3IPC7MessageE
   fun:_ZN12RenderWidget16DoDeferredUpdateEv
   fun:_ZN12RenderWidget20CallDoDeferredUpdateEv
}
{
   bug_32273_b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN24BrowserRenderProcessHost4SendEPN3IPC7MessageE
   fun:_ZN16RenderWidgetHost4SendEPN3IPC7MessageE
}
{
   bug_32624_b
   Memcheck:Leak
   fun:malloc
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   obj:*
   fun:secmod_ModuleInit
}
{
   bug_32624_c
   Memcheck:Leak
   ...
   fun:malloc
   ...
   fun:PORT_Alloc_Util
   ...
   fun:PK11_InitPin
}
{
   bug_32624_f
   Memcheck:Leak
   ...
   fun:CERT_PKIXVerifyCert
   fun:_ZN3net12_GLOBAL__N_114PKIXVerifyCertE*
}
{
   bug_32624_g
   Memcheck:Leak
   ...
   fun:CERT_VerifySignedData
   fun:cert_VerifyCertChain
   fun:CERT_VerifyCertChain
   fun:CERT_VerifyCert
}
{
   bug_38138
   Memcheck:Param
   write(buf)
   obj:*libpthread*
   fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
   ...
   fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
   fun:_ZN11MessageLoop11RunInternalEv
   fun:_ZN11MessageLoop10RunHandlerEv
}
{
   bug_30633_39325
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN11ProfileImpl17GetRequestContextEv
   fun:_ZN19SafeBrowsingService5StartEv
   fun:_ZN19SafeBrowsingService10InitializeEv
   fun:_ZN22ResourceDispatcherHost10InitializeEv
   fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
   fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
   fun:_ZN16ExtensionService4InitEv
}
{
   bug_42842
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN19TestWebViewDelegate12createWorkerEPN6WebKit8WebFrameEPNS0_15WebWorkerClientE
   fun:_ZN6WebKit19WebWorkerClientImpl24createWorkerContextProxyEPN7WebCore6WorkerE
   fun:_ZN7WebCore18WorkerContextProxy6createEPNS_6WorkerE
   fun:_ZN7WebCore6WorkerC1EPNS_22ScriptExecutionContextE
   fun:_ZN7WebCore6Worker6createERKN3WTF6StringEPNS_22ScriptExecutionContextERi
   fun:_ZN7WebCore8V8Worker19constructorCallbackERKN2v89ArgumentsE
}
{
   bug_42942_a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
   fun:_ZN3sql9MetaTable19PrepareGetStatementEPNS_9StatementEPKc
   fun:_ZN3sql9MetaTable8GetValueEPKcPi
   fun:_ZN3sql9MetaTable26GetCompatibleVersionNumberEv
   ...
   fun:_ZN3net13CookieMonster9InitStoreEv
}
{
   bug_42942_b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
   fun:_ZN3sql9MetaTable19PrepareSetStatementEPNS_9StatementEPKc
   fun:_ZN3sql9MetaTable8SetValueEPKci
   fun:_ZN3sql9MetaTable16SetVersionNumberEi
   ...
   fun:_ZN3net13CookieMonster9InitStoreEv
}
{
   bug_42958_a
   Memcheck:Leak
   fun:malloc
   ...
   fun:_NPN_RegisterObject
   fun:_ZN7WebCore16ScriptController20windowScriptNPObjectEv
   fun:_ZNK6WebKit12WebFrameImpl12windowObjectEv
   fun:_ZN6webkit5npapi13WebPluginImpl23GetWindowScriptNPObjectEv
   fun:NPN_GetValue
}
{
   bug_42958_b
   Memcheck:Leak
   fun:malloc
   ...
   fun:_NPN_RegisterObject
   fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
   fun:_ZN7WebCore16ScriptController18bindToWindowObjectEPNS_5FrameERKN3WTF6StringEP8NPObject
   fun:_ZN6WebKit12WebFrameImpl18bindToWindowObjectERKNS_9WebStringEP8NPObject
   fun:_ZN13CppBoundClass16bindToJavascriptEPN6WebKit8WebFrameERKNS0_9WebStringE
}
{
   bug_42958_c
   Memcheck:Leak
   fun:malloc
   ...
   fun:_NPN_RegisterObject
   fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
   fun:_ZN7WebCore16ScriptController29createScriptInstanceForWidgetEPNS_6WidgetE
   fun:_ZN*7WebCore17HTMLPlugInElement11getInstanceEv
}
{
   bug_43471
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIPN11MessageLoop19DestructionObserverEE8allocateE*
   fun:_ZNSt12_Vector_baseIPN11MessageLoop19DestructionObserverESaIS2_EE11_M_allocateE*
   fun:_ZNSt6vectorIPN11MessageLoop19DestructionObserverESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_
   fun:_ZNSt6vectorIPN11MessageLoop19DestructionObserverESaIS2_EE9push_backERKS2_
   fun:_ZN16ObserverListBaseIN11MessageLoop19DestructionObserverEE11AddObserverEPS1_
   fun:_ZN11MessageLoop22AddDestructionObserverEPNS_19DestructionObserverE
}
{
   bug_46250
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIPN11MessageLoop12TaskObserverEE8allocateEjPKv
   fun:_ZNSt12_Vector_baseIPN11MessageLoop12TaskObserverESaIS2_EE11_M_allocateEj
   fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_
   fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE9push_backERKS2_
   fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE11AddObserverEPS1_
   fun:_ZN11MessageLoop15AddTaskObserverEPNS_12TaskObserverE
   fun:*IOJankObserver21AttachToCurrentThreadEv
}
{
   bug_47950
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:*CreateSpdyHeadersFromHttpRequestERKN3net15HttpRequestInfoEPSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE
}
{
   bug_49279_a
   Memcheck:Leak
   fun:_Znw*
   fun:*ChromeCookieMonsterDelegateC1EP7Profile
   fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
}
{
   bug_49279_b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN29ChromeURLRequestContextGetter28CreateRequestContextForMediaEP7ProfileRK8FilePathib
   fun:_ZN29ChromeURLRequestContextGetter22CreateOriginalForMediaEP7ProfileRK8FilePathi
   fun:_ZN11ProfileImpl25GetRequestContextForMediaEv
}
{
   bug_49279_c
   Memcheck:Leak
   fun:_Znw*
   fun:*ChromeCookieMonsterDelegateC2EP7Profile
   fun:*ChromeCookieMonsterDelegateC1EP7Profile
   fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
}
{
   bug_50304
   Memcheck:Leak
   ...
   fun:_ZN7history14HistoryBackend8InitImpl*
   fun:_ZN7history14HistoryBackend4Init*
}
{
   bug_50936
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN23OffTheRecordProfileImpl4InitEv
   fun:_ZN7Profile25CreateOffTheRecordProfileEv
   fun:_ZN11ProfileImpl22GetOffTheRecordProfileEv
}
{
   bug_50968_a
   Memcheck:Leak
   ...
   fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
}
{
   bug_50968_b
   Memcheck:Unaddressable
   ...
   fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
}
{
   bug_50968_d
   Memcheck:Uninitialized
   ...
   fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
}
{
   bug_56359_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net9HttpCache24GetBackendForTransactionEPNS0_11TransactionE
   fun:_ZN3net9HttpCache11Transaction12DoGetBackendEv
   fun:_ZN3net9HttpCache11Transaction6DoLoopEi
   fun:_ZN3net9HttpCache11Transaction5StartEPKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
   fun:_ZN17URLRequestHttpJob16StartTransactionEv
   fun:_ZN17URLRequestHttpJob24OnCanGetCookiesCompletedEi
   fun:_ZN17URLRequestHttpJob23AddCookieHeaderAndStartEv
   fun:_ZN17URLRequestHttpJob5StartEv
   fun:_ZN10URLRequest8StartJobEP13URLRequestJob
   fun:_ZN10URLRequest5StartEv
   fun:_ZN10URLFetcher4Core15StartURLRequestEv
}
{
   bug_51153
   Memcheck:Leak
   ...
   fun:_ZN7history14HistoryBackend16GetFaviconForURLE13scoped_refptrI17CancelableRequestI14CallbackRunnerI6Tuple5IibS1_I16RefCountedMemoryEb4GURLEEEERKS7_
}
{
   bug_51379
   Memcheck:Leak
   fun:malloc
   ...
   obj:/usr/lib/libpangocairo-1.0.so.0.2002.3
   ...
   fun:_ZN3gfx10Canvas13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiiii
   fun:_ZN3gfx10Canvas13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiii
}
{
   bug_51590a
   Memcheck:Unaddressable
   ...
   fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
   fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
}
{
   bug_51590b
   Memcheck:Unaddressable
   ...
   fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
   fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
}
{
   bug_51590c
   Memcheck:Unaddressable
   ...
   fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
   fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
}
{
   bug_51679
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN23MessageService16AddEventListenerERKSsi
   fun:_ZN24BrowserRenderProcessHost22OnExtensionAddListenerERKSs
}
{
   bug_52831
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:*InotifyReaderTask3RunEv
   ...
   fun:_ZN11MessageLoop11RunInternalEv
   fun:_ZN11MessageLoop10RunHandlerEv
}
{
   bug_52837
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZNSt3mapISs8FilePathSt4lessISsESaISt4pairIKSsS0_EEE6insertESt17_Rb_tree_iteratorIS5_ERKS5_
   fun:_ZNSt3mapISs8FilePathSt4lessISsESaISt4pairIKSsS0_EEEixERS4_
   fun:_ZN16ExtensionService15UnloadExtensionERKSs
   fun:_ZN16ExtensionService18UninstallExtensionERKSsb
   fun:_ZN18AutomationProvider18UninstallExtensionEiPb
}
{
   bug_52957
   Memcheck:Unaddressable
   fun:glGetString
   fun:_ZN18gpu_info_collector19CollectGraphicsInfoER7GPUInfo
   fun:_ZN9GpuThread18OnEstablishChannelEi
}
{
   bug_54308
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZNK8chromeos25CrosSettingsProviderProxy3GetERKSsPP5Value
   fun:_ZNK8chromeos12CrosSettings3GetERKSsPP5Value
   fun:_ZN8chromeos26CoreChromeOSOptionsHandler9FetchPrefERKSs
   fun:_ZN18CoreOptionsHandler16HandleFetchPrefsEPK9ListValue
}
{
   bug_55533
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN5IDMapIN3IPC7Channel8ListenerEL23IDMapOwnershipSemantics*
   fun:_ZN17RenderProcessHost*Profile
   fun:_ZN21MockRenderProcessHost*Profile
}
{
   bug_56676
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIN4base15file_util_proxy5EntryEE8allocate*
   fun:_ZNSt12_Vector_baseIN4base15file_util_proxy5EntryESaIS2_EE11_M_allocate*
   fun:_ZNSt6vectorIN4base15file_util_proxy5EntryESaIS2_EE20_M_allocate_and_copyIN9__gnu_cxx17__normal_iteratorIPKS2*
   fun:_ZNSt6vectorIN4base15file_util_proxy5EntryESaIS2_EEaSERKS4_
   fun:_ZN14MockDispatcher16DidReadDirectoryERKSt6vectorIN4base15file_util_proxy5EntryESaIS3_EEb
   fun:_ZN7fileapi19FileSystemOperation16DidReadDirectoryEN4base17PlatformFileErrorERKSt6vectorINS1_15file_util_proxy5EntryESaIS5_EE
}
{
   bug_58321
   Memcheck:Unaddressable
   fun:_ZNK3WTF6RefPtrIN7WebCore5FrameEE3getEv
   fun:_ZN7WebCore14ResourceLoader18didReceiveResponseEPNS_14ResourceHandleERKNS_16ResourceResponseE
   fun:_ZN7WebCore22ResourceHandleInternal18didReceiveResponseEPN6WebKit12WebURLLoaderERKNS1_14WebURLResponseE
   fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnReceivedResponseERKNS_20ResourceLoaderBridge12ResponseInfoEb
   fun:_ZN85_GLOBAL__N_webkit_tools_test_shell_simple_resource_loader_bridge.cc_00000000_*12RequestProxy22NotifyReceivedResponseERKN11webkit_glue20ResourceLoaderBridge12ResponseInfoEb
}
{
   bug_58340
   Memcheck:Unaddressable
   fun:_ZNK3WTF6RefPtrIN7WebCore5FrameEE3getEv
   fun:_ZN7WebCore14ResourceLoader18didReceiveResponseEPNS_14ResourceHandleERKNS_16ResourceResponseE
   fun:_ZN7WebCore22ResourceHandleInternal18didReceiveResponseEPN6WebKit12WebURLLoaderERKNS1_14WebURLResponseE
   fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnReceivedResponseERKNS_20ResourceResponseInfoEb
}
{
   bug_58449
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN11ProfileImpl18GetDownloadManagerEv
}
{
   bug_58546
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN27SSLConfigServiceManagerPrefC1EP7Profile
   fun:_ZN23SSLConfigServiceManager20CreateDefaultManagerEP7Profile
   fun:_ZN11ProfileImplC1ERK8FilePath
   fun:_ZN7Profile13CreateProfileERK8FilePath
   fun:_ZN14ProfileManager13CreateProfileERK8FilePath
   fun:_ZN14ProfileManager10GetProfileERK8FilePathb
   fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath
   fun:_ZN14ProfileManager17GetDefaultProfileEv
}
{
   bug_58561
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3net8internal26ClientSocketPoolBaseHelper16GetOrCreateGroupERKSs
   fun:_ZN3net8internal26ClientSocketPoolBaseHelper13RequestSocketERKSsPKNS1_7RequestE
   fun:_ZN3net20ClientSocketPoolBaseINS_15TCPSocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
   fun:_ZN3net19TCPClientSocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
   fun:_ZN3net18ClientSocketHandle4InitINS_15TCPSocketParamsENS_19TCPClientSocketPoolEEEiRKSsRK13scoped_refptrIT_ENS_15RequestPriorityEP14CallbackRunnerI6Tuple1IiEEPT0_RKNS_11BoundNetLogE
   fun:_ZN3net17HttpStreamRequest16DoInitConnectionEv
   fun:_ZN3net17HttpStreamRequest6DoLoopEi
}
{
   bug_58564
   Memcheck:Leak
   fun:calloc
   ...
   fun:SSL_ImportFD
   fun:_ZN3net18SSLClientSocketNSS20InitializeSSLOptionsEv
   fun:_ZN3net18SSLClientSocketNSS7ConnectEP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net13SSLConnectJob12DoSSLConnectEv
   fun:_ZN3net13SSLConnectJob6DoLoopEi
}
{
   bug_58574
   Memcheck:Unaddressable
   ...
   fun:_ZN11MessageLoop8PostTaskERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEE
   fun:_ZN3net12CertVerifier7Request8DoVerifyEv
}
{
   bug_60556a
   Memcheck:Unaddressable
   ...
   fun:sqlite3_exec
   fun:_ZN3sql10Connection7ExecuteEPKc
   fun:_ZN11WebDatabase*
}
{
   bug_60556b
   Memcheck:Unaddressable
   ...
   fun:sqlite3_exec
   fun:_ZN3sql10Connection7ExecuteEPKc
   fun:_ZN11WebDatabase*
}
{
   bug_60556c
   Memcheck:Unaddressable
   ...
   fun:sqlite3_step
   fun:_ZN3sql9Statement3RunEv
   fun:_ZN3sql10Connection17CommitTransactionEv
   fun:_ZN3sql11Transaction6CommitEv
   fun:_ZN11WebDatabase*
}
{
   bug_60556d
   Memcheck:Unaddressable
   ...
   fun:sqlite3_step
   fun:_ZN3sql9Statement3RunEv
   fun:_ZN3sql10Connection17CommitTransactionEv
   fun:_ZN3sql11Transaction6CommitEv
   fun:_ZN11WebDatabase*
}
{
   bug_60556e
   Memcheck:Param
   read(buf)
   ...
   fun:sqlite3_exec
   fun:_ZN3sql10Connection7ExecuteEPKc
   fun:_ZN11WebDatabase*
}
{
   bug_60556f
   Memcheck:Unaddressable
   ...
   fun:sqlite3_close
   fun:_ZN3sql10Connection5CloseEv
   fun:_ZN3sql10ConnectionD2Ev
   fun:_ZN3sql10ConnectionD1Ev
   fun:_ZN11WebDatabase*
}
{
   bug_60556g
   Memcheck:Unaddressable
   ...
   fun:sqlite3_step
   fun:_ZN3sql9Statement4StepEv
   fun:_ZN7history11URLDatabase12GetRowForURLERK4GURLPNS_6URLRowE
   fun:_ZN7history14HistoryBackend12AddPageVisitERK4GURLN4base4TimeExjNS_11VisitSourceE
}
{
   bug_60612
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net55_*ProxyResolverFactoryForV819CreateProxyResolverEv
   fun:_ZN3net26MultiThreadedProxyResolver14AddNewExecutorEv
   fun:_ZN3net26MultiThreadedProxyResolver12SetPacScriptERK13scoped_refptrINS_23ProxyResolverScriptDataEEP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net17InitProxyResolver14DoSetPacScriptEv
   fun:_ZN3net17InitProxyResolver6DoLoopEi
   ...
   fun:_ZN3net10URLRequest15ResponseStartedEv
}
{
   bug_60654
   Memcheck:Uninitialized
   fun:_ZN7WebCore25GraphicsContext3DInternal7reshapeEii
   fun:_ZN7WebCore17GraphicsContext3D7reshapeEii
   fun:_ZN7WebCore21WebGLRenderingContextC1EPNS_17HTMLCanvasElementEN3WTF10PassRefPtrINS_17GraphicsContext3DEEE
   fun:_ZN7WebCore21WebGLRenderingContext6createEPNS_17HTMLCanvasElementEPNS_22WebGLContextAttributesE
   fun:_ZN7WebCore17HTMLCanvasElement10getContextERKN3WTF6StringEPNS_23CanvasContextAttributesE
   ...
   fun:_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
}
{
   bug_60656
   Memcheck:Overlap
   fun:strcpy
   fun:lFloatConst
   fun:byte_scan
   fun:yylex_CPP
   fun:_Z8yy_inputPci
   fun:_Z18yy_get_next_bufferv
   fun:_Z5yylexP7YYSTYPEPv
   fun:_Z7yyparsePv
   fun:_Z14PaParseStringsPKPKcPKiiR13TParseContext
   fun:_ZN9TCompiler7compileEPKPKcii
   fun:ShCompile
   fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl25angleValidateShaderSourceERNS0_17ShaderSourceEntryE
   fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl13compileShaderEj
   fun:_ZN7WebCore25GraphicsContext3DInternal13compileShaderEi
   fun:_ZN7WebCore17GraphicsContext3D13compileShaderEi
   fun:_ZN7WebCore21WebGLRenderingContext13compileShaderEPNS_11WebGLShaderERi
   fun:_ZN7WebCore29WebGLRenderingContextInternal21compileShaderCallbackERKN2v89ArgumentsE
   fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_6ObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_00000000_03DBA2A116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
}
{
   bug_60667
   Memcheck:Leak
   fun:malloc
   fun:ScanFromString
   fun:_Z12glslang_scaniPKPKcPKiP13TParseContext
   fun:_Z14PaParseStringsiPKPKcPKiP13TParseContext
   fun:_ZN9TCompiler7compileEPKPKcii
   fun:ShCompile
}
{
   bug_60667b
   Memcheck:Leak
   fun:_Zna*
   fun:_ZN14TPoolAllocator8allocateEm
   fun:_ZN17TSymbolTableLevelnwEm
   fun:_ZN12TSymbolTable4pushEv
   fun:_ZN9TCompiler7compileEPKPKcii
   fun:ShCompile
}
{
   bug_60667c
   Memcheck:Leak
   ...
   obj:*
   fun:_ZN3gpu5gles216GLES2DecoderImpl15DoCompileShaderEj
   fun:_ZN3gpu5gles216GLES2DecoderImpl19HandleCompileShaderEjRKNS0_13CompileShaderE
   fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
}
{
   bug_60668a
   Memcheck:Uninitialized
   ...
   fun:_swrast_write_rgba_span
   fun:general_triangle
   fun:_swrast_validate_triangle
   fun:_swrast_Triangle
   fun:triangle_rgba
   fun:_tnl_render_triangles_verts
   fun:run_render
   fun:_tnl_run_pipeline
   fun:_tnl_draw_prims
   fun:_tnl_vbo_draw_prims
   fun:vbo_exec_DrawArrays
   fun:neutral_DrawArrays
   fun:glDrawArrays
}
{
   bug_60668b
   Memcheck:Overlap
   fun:memcpy
   fun:clip_span
   fun:_swrast_write_rgba_span
   fun:general_triangle
   fun:_swrast_validate_triangle
   fun:_swrast_Triangle
   fun:triangle_rgba
   fun:_tnl_render_poly_elts
   fun:_tnl_RenderClippedPolygon
   fun:clip_tri_4
   fun:clip_elt_triangles
   fun:run_render
   fun:_tnl_run_pipeline
   fun:_tnl_draw_prims
   fun:_tnl_vbo_draw_prims
   fun:vbo_validated_drawrangeelements
   fun:vbo_exec_DrawElements
   fun:neutral_DrawElements
   fun:glDrawElements
   fun:_ZN3gpu5gles216GLES2DecoderImpl14DoDrawElementsEbjijii
   fun:_ZN3gpu5gles216GLES2DecoderImpl18HandleDrawElementsEjRKNS0_12DrawElementsE
   fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
}
{
   bug_60668c
   Memcheck:Overlap
   ...
   fun:_swrast_write_rgba_span
   fun:general_triangle
   fun:_swrast_Triangle
   fun:triangle_rgba
   fun:_tnl_render_poly_elts
   fun:_tnl_RenderClippedPolygon
   fun:clip_tri_4
   fun:clip_render_tri_fan_verts
   fun:run_render
   fun:_tnl_run_pipeline
   fun:_tnl_draw_prims
   fun:_tnl_vbo_draw_prims
   fun:vbo_exec_DrawArrays
   fun:neutral_DrawArrays
   fun:glDrawArrays
}
{
   bug_60670a
   Memcheck:Unaddressable
   fun:swizzle_copy
   fun:_mesa_swizzle_ubyte_image
   fun:_mesa_texstore_rgba8888
   fun:_mesa_texstore
   fun:_mesa_store_teximage2d
   fun:_mesa_TexImage2D
   fun:glTexImage2D
   fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl10texImage2DEjjjjjjjjPKv
   fun:_ZN7WebCore25GraphicsContext3DInternal10texImage2DEjjjjjjjjPv
   fun:_ZN7WebCore17GraphicsContext3D10texImage2DEjjjjjjjjPv
}
{
   bug_60670b
   Memcheck:Unaddressable
   fun:extract_float_rgba
   fun:_mesa_unpack_color_span_chan
   fun:_mesa_make_temp_chan_image
   fun:_mesa_texstore_rgba8888
   fun:_mesa_texstore
   fun:_mesa_store_teximage2d
   fun:_mesa_TexImage2D
   fun:glTexImage2D
   fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl10texImage2DEjjjjjjjjPKv
   fun:_ZN7WebCore25GraphicsContext3DInternal10texImage2DEjjjjjjjjPv
   fun:_ZN7WebCore17GraphicsContext3D10texImage2DEjjjjjjjjPv
}
{
   bug_69073
   Memcheck:Leak
   fun:malloc
   ...
   fun:sqlite3*
   ...
   fun:find_objects
   fun:find_objects_by_template
   fun:nssToken_FindCertificatesBySubject
   fun:nssTrustDomain_FindCertificatesBySubject
   fun:nssCertificate_BuildChain
   fun:NSSCertificate_BuildChain
}
{
   bug_61424
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN13FormStructure18EncodeQueryRequestERK12ScopedVectorIS_EPSt6vectorISsSaISsEEPSs
   fun:*FormStructureTest_EncodeQueryRequest_Test8TestBodyEv
}
{
   bug_61424_b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN13FormStructure18EncodeQueryRequestERK12ScopedVectorIS_EPSt6vectorISsSaISsEEPSs
   fun:_ZN12_GLOBAL__N_141FormStructureTest_EncodeQueryRequest_Test8TestBodyEv
}
{
   bug_63671
   Memcheck:Param
   write(buf)
   ...
   fun:_ZN9file_util9WriteFileERK8FilePathPKci
   fun:_Z24ConvertWebAppToExtensionRK18WebApplicationInfoRKN4base4TimeE
   fun:_ZN30ExtensionFromWebApp_Basic_Test8TestBodyEv
}
{
   bug_63671_b
   Memcheck:Param
   write(buf)
   ...
   fun:_ZN9file_util9WriteFileERK8FilePathPKci
   fun:_ZN12_GLOBAL__N_110SaveBitmapEPSt6vectorIhSaIhEE*8FilePathPb
   fun:_ZN4base8internal15RunnableAdapterIPFvPSt6vectorIhSaIhEE*8FilePathPbEE3Run*
}
{
   bug_64804
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base16MessageLoopProxy22currentEv
   ...
   fun:_ZN10URLFetcher4CoreC1EPS_RK4GURLNS_11RequestTypeEPNS_8DelegateE
   fun:_ZN10URLFetcherC*ERK4GURLNS_11RequestTypeEPNS_8DelegateE
}
{
   bug_64887_a
   Memcheck:Uninitialized
   fun:_itoa_word
   fun:vfprintf
   fun:vsnprintf
   fun:snprintf
   fun:_ZN7testing*26PrintByteSegmentInObjectToEPKhmmPSo
   fun:_ZN7testing*24PrintBytesInObjectToImplEPKhmPSo
   fun:_ZN7testing9internal220PrintBytesInObjectToEPKhmPSo
   fun:_ZN7testing9internal220TypeWithoutFormatterI*
   fun:_ZN7testing9internal2lsIcSt11char_traitsIcE*
   fun:_ZN16testing_internal26DefaultPrintNonContainerToI*
   fun:_ZN7testing8internal14DefaultPrintToI*
   fun:_ZN7testing8internal7PrintToI*
   fun:_ZN7testing8internal16UniversalPrinterI*
   fun:_ZN7testing8internal14UniversalPrintI*
   fun:_ZN7testing8internal19UniversalTersePrintI*
   fun:_ZN7testing13PrintToStringI*
   fun:_ZN7testing8internal25ParameterizedTestCaseInfoI*E13RegisterTestsEv
   fun:_ZN7testing8internal29ParameterizedTestCaseRegistry13RegisterTestsEv
   fun:_ZN7testing8internal12UnitTestImpl26RegisterParameterizedTestsEv
   fun:_ZN7testing8internal12UnitTestImpl19PostFlagParsingInitEv
   fun:_ZN7testing8internal18InitGoogleTestImplIcEEvPiPPT_
   fun:_ZN7testing14InitGoogleTestEPiPPc
}
{
   bug_64887_b
   Memcheck:Uninitialized
   fun:_itoa_word
   fun:vfprintf
   fun:*vsnprintf*
   fun:*snprintf*
   fun:_ZN7testing*PrintByteSegmentInObjectTo*
   fun:_ZN7testing*PrintBytesInObjectToImplEPKhjPSo
   fun:_ZN7testing9internal220PrintBytesInObjectToEPKhjPSo
   fun:_ZN7testing9internal220TypeWithoutFormatter*
   fun:_ZN7testing9internal2lsIcSt11char_traitsIcE*
   fun:_ZN16testing_internal26DefaultPrintNonContainerTo*
   fun:_ZN7testing8internal14DefaultPrintToI*
   fun:_ZN7testing8internal7PrintToI*
   fun:_ZN7testing8internal16UniversalPrinterI*
   fun:_ZN7testing8internal14UniversalPrintI*
}
{
   bug_64887_c
   Memcheck:Uninitialized
   fun:_itoa_word
   fun:vfprintf
   fun:*vsnprintf*
   fun:*snprintf*
   fun:_ZN7testing*PrintByteSegmentInObjectTo*
   fun:_ZN7testing*PrintBytesInObjectToImplEPKhjPSo
   fun:_ZN7testing9internal220PrintBytesInObjectToEPKhjPSo
   fun:_ZN7testing9internal220TypeWithoutFormatter*
   fun:_ZN7testing9internal2lsIcSt11char_traitsIcE*
   fun:_ZN16testing_internal26DefaultPrintNonContainerTo*
   fun:_ZN7testing8internal14DefaultPrintToI*
   fun:_ZN7testing8internal7PrintToI*
   fun:_ZN7testing8internal16UniversalPrinterI*
   fun:_ZN7testing8internal14UniversalPrintI*
}
{
   bug_64887_d
   Memcheck:Uninitialized
   ...
   fun:_ZNSolsEx
   fun:_ZN7testing9internal220TypeWithoutFormatterIN5media7PreloadELNS0_8TypeKindE1EE10PrintValueERKS3_PSo
   fun:_ZN7testing9internal2lsIcSt11char_traitsIcEN5media7PreloadEEERSt13basic_ostreamIT_T0_ESA_RKT1_
   fun:_ZN16testing_internal26DefaultPrintNonContainerToIN5media7PreloadEEEvRKT_PSo
   fun:_ZN7testing8internal14DefaultPrintToIN5media7PreloadEEEvcNS0_13bool_constantILb0EEERKT_PSo
   fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKT_PSo
   fun:_ZN7testing8internal16UniversalPrinterIN5media7PreloadEE5PrintERKS3_PSo
   fun:_ZN7testing8internal18TuplePrefixPrinter*
   fun:_ZN7testing8internal12PrintTupleToINSt3tr15tupleIN5media7PreloadENS2*
   fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKNSt3tr15tupleIT*
   fun:_ZN7testing8internal16UniversalPrinterINSt3tr15tupleIN5media7PreloadENS2*
   fun:_ZN7testing8internal14UniversalPrintINSt3tr15tupleIN5media7PreloadENS2*
   fun:_ZNK7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE32UntypedDescribeUninterestingCallEPKvPSo
   fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
   fun:_ZN7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE10InvokeWithERKNSt3tr15tupleIS3*
   fun:_ZN7testing8internal14FunctionMockerIFvN5media7PreloadEEE6InvokeES3_
   fun:_ZN5media11MockDemuxer10SetPreloadENS_7PreloadE
}
{
   bug_64887_e
   Memcheck:Uninitialized
   ...
   fun:_ZNSolsEx
   fun:_ZN7testing9internal220TypeWithoutFormatterIN5media7PreloadELNS0_8TypeKindE1EE10PrintValueERKS3_PSo
   fun:_ZN7testing9internal2lsIcSt11char_traitsIcEN5media7PreloadEEERSt13basic_ostreamIT_T0_ESA_RKT1_
   fun:_ZN16testing_internal26DefaultPrintNonContainerToIN5media7PreloadEEEvRKT_PSo
   fun:_ZN7testing8internal14DefaultPrintToIN5media7PreloadEEEvcNS0_13bool_constantILb0EEERKT_PSo
   fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKT_PSo
   fun:_ZN7testing8internal16UniversalPrinterIN5media7PreloadEE5PrintERKS3_PSo
   fun:_ZN7testing8internal18TuplePrefixPrinter*
   fun:_ZN7testing8internal12PrintTupleToINSt3tr15tupleIN5media7PreloadENS2*
   fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKNSt3tr15tupleIT*
   fun:_ZN7testing8internal16UniversalPrinterINSt3tr15tupleIN5media7PreloadENS2*
   fun:_ZN7testing8internal14UniversalPrintINSt3tr15tupleIN5media7PreloadENS2*
   fun:_ZNK7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE32UntypedDescribeUninterestingCallEPKvPSo
   fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
   fun:_ZN7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE10InvokeWithERKNSt3tr15tupleIS3*
   fun:_ZN7testing8internal14FunctionMockerIFvN5media7PreloadEEE6InvokeES3_
   fun:_ZN5media11MockDemuxer10SetPreloadENS_7PreloadE
}
{
   bug_65940_a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3IPC12ChannelProxy7Context13CreateChannelERKNS_13ChannelHandleERKNS_7Channel4ModeE
   fun:_ZN3IPC12ChannelProxy4InitERKNS_13ChannelHandleENS_7Channel4ModeEP11MessageLoopb
   fun:_ZN3IPC12ChannelProxyC2ERKNS_13ChannelHandleENS_7Channel4ModeEP11MessageLoopPNS0_7ContextEb
   fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEP11MessageLoopbPN4base13WaitableEventE
}
{
   bug_65940_b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS_8ListenerEPN4base22SingleThreadTaskRunnerEbPNS8_13WaitableEventE
   fun:_ZN11ChildThread4InitEv
   fun:_ZN11ChildThreadC2ERKSs
}
{
   bug_65940_c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEEE8allocateEmPKv
   fun:_ZNSt12_Vector_baseI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE11_M_allocateEm
   fun:_ZNSt6vectorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS4_S6_EERKS4_
   fun:_ZNSt6vectorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE9push_backERKS4_
   fun:_ZN3IPC12ChannelProxy7Context11OnAddFilterEv
}
{
   bug_65940_d
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11ChildThread4InitEv
   fun:_ZN11ChildThreadC2ERKSs
   fun:_ZN16RenderThreadImplC2ERKSs
   fun:_ZN16RenderThreadImplC1ERKSs
   fun:_ZN21WebRTCAudioDeviceTest5SetUpEv
}
{
   bug_66853_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11ProfileImpl14GetHostZoomMapEv
   ...
   fun:_ZNK17ProfileImplIOData6Handle27GetMainRequestContextGetterEv
   fun:_ZN11ProfileImpl17GetRequestContextEv
   fun:_ZN19SafeBrowsingService5StartEv
   fun:_ZN19SafeBrowsingService10InitializeEv
   fun:_ZN22ResourceDispatcherHost10InitializeEv
   fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
   fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
   fun:_ZN16ExtensionService4InitEv
   fun:_ZN11ProfileImpl14InitExtensionsE*
   fun:_ZN14ProfileManager10AddProfileEP7Profileb
}
{
   bug_67142
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN16ChildProcessHost13CreateChannelEv
   fun:_ZN14GpuProcessHost4InitEv
}
{
   bug_67261
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3sql10Connection18GetUniqueStatementEPKc
   fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
   fun:_ZN8appcache16AppCacheDatabase22PrepareCachedStatementERKN3sql11StatementIDEPKcPNS1_9StatementE
}
{
   bug_67553
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZNSt3mapISs13scoped_refptrIK9ExtensionESt4lessISsESaISt4pairIKSsS3_EEEixERS7_
   fun:_ZN16ExtensionInfoMap12AddExtensionEPK9Extension
}
{
   bug_68069_a
   Memcheck:Leak
   fun:malloc
   obj:*
   obj:*
   obj:*
   obj:*
   fun:_ZN3gfx20GetGLCoreProcAddressEPKc
   fun:_ZN3gfx22InitializeGLBindingsGLEv
   fun:_ZN3gfx20InitializeGLBindingsENS_16GLImplementationE
   fun:_ZN3gfx9GLSurface16InitializeOneOffEv
}
{
   bug_68069_b
   Memcheck:Leak
   fun:malloc
   fun:XextCreateExtension
   ...
   fun:_ZN3gfx12GLSurfaceGLX16InitializeOneOffEv
   fun:_ZN3gfx9GLSurface24InitializeOneOffInternalEv
   fun:_ZN3gfx9GLSurface16InitializeOneOffEv
}
{
   bug_68553
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net25DiskCacheBasedSSLHostInfoC1ERKSsRKNS_9SSLConfigEPNS_12CertVerifierEPNS_9HttpCacheE
   fun:_ZN3net9HttpCache25SSLHostInfoFactoryAdaptor10GetForHostERKSsRKNS_9SSLConfigE
   fun:_ZN3net13SSLConnectJob12DoTCPConnectEv
   fun:_ZN3net13SSLConnectJob6DoLoopEi
   fun:_ZN3net13SSLConnectJob15ConnectInternalEv
   fun:_ZN3net10ConnectJob7ConnectEv
   fun:_ZN3net8internal26ClientSocketPoolBaseHelper21RequestSocketInternalERKSsPKNS1_7RequestE
   fun:_ZN3net8internal26ClientSocketPoolBaseHelper13RequestSocketERKSsPKNS1_7RequestE
   fun:_ZN3net20ClientSocketPoolBaseINS_15SSLSocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
   fun:_ZN3net19SSLClientSocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
   fun:_ZN3net18ClientSocketHandle4InitINS_15SSLSocketParamsENS_19SSLClientSocketPoolEEEiRKSsRK13scoped_refptrIT_ENS_15RequestPriorityEP14CallbackRunnerI6Tuple1IiEEPT0_RKNS_11BoundNetLogE
}
{
   Bug_69919
   Memcheck:Leak
   fun:calloc
   ...
   fun:_ZN3gfx15OSMesaGLContext10InitializeEjPNS_9GLContextE
   fun:_ZN3gfx9GLContext24CreateOffscreenGLContextEPS0_
   fun:*InitializeGLContextEv
}
{
   Bug_69934_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN13NPObjectProxy10NPAllocateEP4_NPPP7NPClass
   fun:_NPN_CreateObject
   fun:_ZN6WebKit11WebBindings12createObjectEP4_NPPP7NPClass
}
{
   Bug_69934_b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE
   fun:_ZN3IPC17SyncMessageSchema*
}
{
   bug_70327
   Memcheck:Leak
   ...
   fun:shaper_font_cache_insert
   fun:get_shaper_and_font
   fun:itemize_state_process_run
   fun:pango_itemize_with_base_dir
   fun:pango_layout_check_lines
   fun:pango_layout_get_extents_internal
   fun:pango_layout_get_pixel_extents
   fun:pango_layout_get_pixel_size
   fun:_ZN3gfx10Canvas13SizeStringIntERKSbItN4base20string16_char_traitsESaItEERKNS_4FontEPiSA_i
}
{
   bug_70599
   Memcheck:Uninitialized
   fun:bcmp
   fun:_ZN3WTF14VectorComparerILb1EN7WebCore11CSSPropertyE*
   fun:_ZN3WTF20VectorTypeOperationsIN7WebCore11CSSPropertyE*
   fun:_ZN3WTFeqIN7WebCore11CSSPropertyE*
   fun:_ZNK7WebCore26CSSMutableStyleDeclaration15propertiesEqualEPKS0_
   fun:_ZNK7WebCore12NamedNodeMap20mappedMapsEquivalentEPKS0_
   fun:_ZNK7WebCore16CSSStyleSelector24canShareStyleWithElementE*
}
{
   bug_71152
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN14SessionService20OnGotSessionCommandsEi13scoped_refptrIN18BaseSessionService26InternalGetCommandsRequestEE
}
{
   bug_71728
   Memcheck:Leak
   fun:_Znw*
   fun:*DownloadFileTest5SetUpEv
}
{
   bug_72544
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEj
   fun:_ZN3WTF10RefCountedIN7WebCore14StyleSheetListEEnwEj
   fun:_ZN7WebCore14StyleSheetList6createEPNS_8DocumentE
   fun:_ZN7WebCore8DocumentC2EPNS_5FrameERKNS_4KURLEbbS5_
   fun:_ZN7WebCore12HTMLDocumentC1EPNS_5FrameERKNS_4KURLES5_
   fun:_ZN7WebCore12HTMLDocument6createEPNS_5FrameERKNS_4KURLES5_
   fun:_ZN7WebCore17DOMImplementation14createDocumentERKN3WTF6StringEPNS_5FrameERKNS_4KURLEb
   fun:_ZN7WebCore14DocumentWriter14createDocumentERKNS_4KURLE
   fun:_ZN7WebCore14DocumentWriter5beginERKNS_4KURLEbPNS_14SecurityOriginE
   fun:_ZN7WebCore11FrameLoader4initEv
   fun:_ZN7WebCore5Frame4initEv
   fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPNS_11WebViewImplE
   fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
   fun:_ZN10RenderViewC1EP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEixRKSbItNS8_20string16_char_traitsESaItEE
   fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEixRKSbItNS8_20string16_char_traitsESaItEE
   fun:_ZN12RenderThread15OnCreateNewViewERK18ViewMsg_New_Params
}
{
   bug_72698_a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN13ProfileIOData20InitializeOnUIThreadEP7Profile
}
{
   bug_73299
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN21RenderProcessHostImpl20CreateMessageFiltersEv
   fun:_ZN21RenderProcessHostImpl4InitEb
   fun:_ZN7content18RenderViewHostImpl16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEEi
}
{
   bug_73415
   Memcheck:Unaddressable
   fun:_ZN23AccessibilityController36shouldDumpAccessibilityNotificationsEv
   fun:_ZN11WebViewHost29postAccessibilityNotificationERKN6WebKit22WebAccessibilityObjectENS0_28WebAccessibilityNotificationE
   fun:_ZN6WebKit16ChromeClientImpl29postAccessibilityNotificationEPN7WebCore19AccessibilityObjectENS1_13AXObjectCache14AXNotificationE
   fun:_ZN7WebCore13AXObjectCache24postPlatformNotificationEPNS_19AccessibilityObjectENS0_14AXNotificationE
}
{
   bug_73675
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN20LayoutTestController13waitUntilDoneERKN3WTF6VectorI10CppVariantLj0EEEPS2_
   fun:_ZN13CppBoundClass14MemberCallbackI20LayoutTestControllerE3runERKN3WTF6VectorI10CppVariantLj0EEEPS5_
   fun:_ZN13CppBoundClass6invokeEPvPK10_NPVariantjPS1_
   fun:_ZN11CppNPObject6invokeEP8NPObjectPvPK10_NPVariantjPS3_
   fun:_ZN7WebCore18npObjectInvokeImplERKN2v89ArgumentsENS_18InvokeFunctionTypeE
   fun:_ZN7WebCore21npObjectMethodHandlerERKN2v89ArgumentsE
   fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_*BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
   obj:*
}
{
   bug_74383a
   Memcheck:Uninitialized
   fun:gtk_widget_set_size_request
   fun:_ZN15StatusBubbleGtk22UpdateLabelSizeRequestEv
   fun:_ZN15StatusBubbleGtk19AnimationProgressedEPKN2ui9AnimationE
   fun:_ZN2ui15LinearAnimation4StepEN4base9TimeTicksE
   fun:_ZN2ui18AnimationContainer3RunEv
}
{
   bug_74383b
   Memcheck:Uninitialized
   fun:gtk_widget_set_usize_internal
   fun:_ZN15StatusBubbleGtk22UpdateLabelSizeRequestEv
   ...
   fun:_ZN2ui18AnimationContainer3RunEv
}
{
   bug_75019
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN14GpuDataManagerC1Ev
   fun:_ZN22DefaultSingletonTraitsI14GpuDataManagerE3NewEv
   fun:_ZN9SingletonI14GpuDataManager22DefaultSingletonTraitsIS0_ES0_E3getEv
   fun:_ZN14GpuDataManager11GetInstanceEv
   fun:_Z11BrowserMainRK18MainFunctionParams
   fun:_ZN20InProcessBrowserTest5SetUpEv
}
{
   bug_75051
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3net12CertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_16CertVerifyResultEP14CallbackRunnerI6Tuple1IiEEPPv
   fun:_ZN3net25SingleRequestCertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_16CertVerifyResultEP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net18SSLClientSocketNSS12DoVerifyCertEi
   fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
}
{
   bug_75127a
   Memcheck:Uninitialized
   ...
   fun:png_process_data
   fun:_ZN3gfx8PNGCodec6Decode*
}
{
   bug_75127b
   Memcheck:Uninitialized
   ...
   fun:png_process_data
   fun:_ZN3gfx8PNGCodec6Decode*
}
{
   bug_75127c
   Memcheck:Uninitialized
   ...
   fun:png_process_data
   fun:_ZN3gfx8PNGCodec6Decode*
}
{
   bug_75137
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN14NewTabObserver7ObserveEiRK18NotificationSourceRK19NotificationDetails
}
{
   bug_75641
   Memcheck:Param
   write(buf)
   obj:/lib/tls/i686/cmov/libpthread-2.*.so
   fun:_ZN3net10FileStream5WriteEPKciP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN14SessionBackend20AppendCommandsToFileEPN3net10FileStreamERKSt6vectorIP14SessionCommandSaIS5_EE
   fun:_ZN14SessionBackend14AppendCommandsEPSt6vectorIP14SessionCommandSaIS2_EEb
}
{
   bug_76197a
   Memcheck:Unaddressable
   fun:sqlite3DbFree
   fun:releaseMemArray
   fun:sqlite3VdbeDelete
   fun:sqlite3VdbeFinalize
   fun:sqlite3_finalize
   fun:_ZN3sql10Connection12StatementRef5CloseEv
   fun:_ZN3sql10Connection12StatementRefD2Ev
   fun:_ZN3sql10Connection12StatementRefD1Ev
   fun:_ZNK4base10RefCountedIN3sql10Connection12StatementRefEE7ReleaseEv
   fun:_ZN13scoped_refptrIN3sql10Connection12StatementRefEED2Ev
   fun:_ZN13scoped_refptrIN3sql10Connection12StatementRefEED1Ev
   fun:_ZNSt4pairIKN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEEED2Ev
   fun:_ZNSt4pairIKN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEEED1Ev
   fun:_ZN9__gnu_cxx13new_allocatorISt4pairIKN3sql11StatementIDE13scoped_refptrINS2_10Connection12StatementRefEEEE7destroyEPS9_
   fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE12destroy_nodeEPSt13_Rb_tree_nodeIS8_E
   fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E
   fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE5clearEv
   fun:_ZNSt3mapIN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEESt4lessIS1_ESaISt4pairIKS1_S5_EEE5clearEv
   fun:_ZN3sql10Connection5CloseEv
   fun:_ZN3sql10ConnectionD2Ev
   fun:_ZN3sql10ConnectionD1Ev
   fun:_ZN7history16InMemoryDatabaseD0Ev
}
{
   bug_76197b
   Memcheck:Unaddressable
   ...
   fun:sqlite3_step
   fun:sqlite3_exec
   fun:_ZN3sql10Connection7ExecuteEPKc
   fun:_ZN7history11URLDatabase31CreateKeywordSearchTermsIndicesEv
   fun:_ZN7history16InMemoryDatabase12InitFromDiskERK8FilePath
   fun:_ZN7history22InMemoryHistoryBackend4InitERK8FilePathS3_PNS_11URLDatabaseERKSs
}
{
   bug_77766
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN7WebCore18PerformTaskContextnwEm
   fun:_ZN7WebCore8Document8postTaskEN3WTF10PassOwnPtrINS_22ScriptExecutionContext4TaskEEE
   fun:_ZN7WebCore20WorkerMessagingProxy22workerContextDestroyedEv
   fun:_ZN6WebKit19WebWorkerClientImpl22workerContextDestroyedEv
   fun:_ZN7WebCore13WorkerContextD2Ev
   fun:_ZN7WebCore22DedicatedWorkerContextD0Ev
   fun:_ZN3WTF10RefCountedIN7WebCore13WorkerContextEE5derefEv
   fun:_ZN3WTF6RefPtrIN7WebCore13WorkerContextEEaSEPS2_
   fun:_ZN7WebCore12WorkerThread12workerThreadEv
   fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
   fun:_ZN3WTFL16threadEntryPointEPv
   fun:_ZN3WTFL19wtfThreadEntryPointEPv
}
{
   bug_78201
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
   fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
   fun:_ZN16ExtensionService4InitEv
   fun:_ZN11ProfileImpl14InitExtensionsE*
}
{
   bug_78786
   Memcheck:Leak
   fun:_Znw*
   fun:*35NonBlockingInvalidationNotifierTest5SetUpEv
}
{
   bug_79357a
   Memcheck:Unaddressable
   ...
   fun:*FilePathWatcherImpl*Watch*Delegate*
   fun:*FilePathWatcher*Watch*
   fun:_ZN21UserStyleSheetWatcher4InitEv
}
{
   bug_79357b
   Memcheck:Leak
   ...
   fun:*FilePathWatcherImpl*Watch*Delegate*
   fun:*FilePathWatcher*Watch*
   fun:_ZN21UserStyleSheetWatcher4InitEv
}
{
   bug_79651
   Memcheck:Leak
   ...
   fun:_ZN8notifier14XmppConnectionC1ERKN4buzz18XmppClientSettingsERK13scoped_refptrIN3net23URLRequestContextGetterEEPNS0_8DelegateEPNS1_11PreXmppAuthE
   fun:_ZN8notifier18SingleLoginAttempt13OnNewSettingsERKNS_18ConnectionSettingsE
   fun:_ZN8notifier23XmppConnectionGenerator17UseNextConnectionEv
   fun:_ZN8notifier23XmppConnectionGenerator15StartGeneratingEv
   fun:_ZN8notifier18SingleLoginAttemptC1EPNS_13LoginSettingsEPNS0_8DelegateE
   fun:_ZN8notifier5Login15StartConnectionEv
   fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
   fun:*35InvalidationNotifierTest_Basic_Test8TestBodyEv
}
{
   bug_79652
   Memcheck:Leak
   ...
   fun:_ZN8chromeos14AudioMixerAlsa15ConnectInternalEv
   fun:_ZN8chromeos14AudioMixerAlsa7ConnectEv
}
{
   bug_79654_a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZNSt3setIP16RenderWidgetHostSt4lessIS1_ESaIS1_EE6insertERKS1_
   fun:_ZN*9TabLoader12TabIsLoadingEP24NavigationControllerImpl
   fun:_ZN*18SessionRestoreImpl21ProcessSessionWindowsEPSt6vectorIP13SessionWindowSaIS3_EE
   fun:_ZN*18SessionRestoreImpl12OnGotSessionEiPSt6vectorIP13SessionWindowSaIS3_EE
}
{
   bug_79654_b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:*RenderWidgetHost*
   ...
   fun:_ZNSt3setIP16RenderWidgetHostSt4lessIS1_ESaIS1_EE6insertERKS1_
   fun:*TabLoader7ObserveEiRKN7content18NotificationSourceERKNS1_19NotificationDetailsE
   fun:_ZN23NotificationServiceImpl*
   fun:_ZN15WebContentsImpl12SetIsLoading*
   fun:_ZN15WebContentsImpl14RenderViewGone*
}
{
   bug_79865a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN33MalwareDetailsTest_HTTPCache_Test8TestBodyEv
}
{
   bug_79865b
   Memcheck:Leak
   ...
   fun:_Znw*
   fun:_ZN14TestingProfile20CreateRequestContextEv
   fun:_ZN42MalwareDetailsTest_HTTPCacheNoEntries_Test8TestBodyEv
}
{
   bug_79933a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN21TestURLRequestContext4InitEv
   ...
   fun:_ZN21TestURLRequestContextC1Ev
   fun:_ZN27TestURLRequestContextGetter20GetURLRequestContextEv
}
{
   bug_80174
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base22PosixDynamicThreadPool8PostTaskEP4Task
   fun:*WorkerPoolImpl8PostTaskERKN15tracked_objects8LocationEP4Taskb
   fun:_ZN4base10WorkerPool8PostTaskERKN15tracked_objects8LocationEP4Taskb
   fun:_ZN3net10FileStream12AsyncContext18InitiateAsyncWriteEiPKciP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net10FileStream5WriteEPKciP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN7fileapi18FileWriterDelegate5WriteEv
   fun:_ZN7fileapi18FileWriterDelegate14OnDataReceivedEi
}
{
   bug_80462_a
   Memcheck:Leak
   fun:malloc
   fun:_ZN7WebCoreL15allocV8NPObjectEP4_NPPP7NPClass
   fun:_NPN_CreateObject
   fun:_ZN7WebCore22npCreateV8ScriptObjectEP4_NPPN2v86HandleINS2_6ObjectEEEPNS_9DOMWindowE
   fun:_ZN6WebKitL16makeIntArrayImplERKNS_9WebVectorIiEE
   fun:_ZN6WebKit11WebBindings12makeIntArrayERKNS_9WebVectorIiEE
}
{
   bug_80462_b
   Memcheck:Leak
   fun:malloc
   fun:_ZN7WebCoreL15allocV8NPObjectEP4_NPPP7NPClass
   fun:_NPN_CreateObject
   fun:_ZN7WebCore22npCreateV8ScriptObjectEP4_NPPN2v86HandleINS2_6ObjectEEEPNS_9DOMWindowE
   fun:_ZN6WebKitL19makeStringArrayImplERKNS_9WebVectorINS_9WebStringEEE
   fun:_ZN6WebKit11WebBindings15makeStringArrayERKNS_9WebVectorINS_9WebStringEEE
}
{
   bug_80537_a
   Memcheck:Leak
   fun:calloc
   ...
   fun:_ZN3gfx15GLContextOSMesa11MakeCurrentEv
}
{
   bug_80537_b
   Memcheck:Leak
   fun:calloc
   ...
   fun:_ZN3gfx15GLContextOSMesa11MakeCurrentEPNS_9GLSurfaceE
}
{
   bug_80551
   Memcheck:Leak
   fun:_Znw*
   fun:_Z11BrowserMainRK18MainFunctionParams
   fun:_ZN20InProcessBrowserTest5SetUpEv
}
{
   bug_80550_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN16RenderWidgetHost11WasRestoredEv
}
{
   bug_80550_b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN16RenderWidgetHost9WasHiddenEv
}
{
   bug_80663
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvPSsPSt6vectorINS1_11CookieStore10CookieInfoESaIS6_EEEPS2_EENS_8internal20InvokerStorageHolderINSD_15InvokerStorage1IT_T0_EEEESG_RKSH_
   fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
   fun:_ZN3net17URLRequestHttpJob5StartEv
   fun:_ZN3net10URLRequest8StartJobEPNS_13URLRequestJobE
   fun:_ZN3net10URLRequest5StartEv
   fun:_ZN10URLFetcher4Core15StartURLRequestEv
   fun:_ZN10URLFetcher4Core30StartURLRequestWhenAppropriateEv
}
{
   bug_82717
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN6chrome26ChromeContentBrowserClient24RenderProcessHostCreatedEPN7content17RenderProcessHostE
   fun:_ZN21RenderProcessHostImpl4Init*
   ...
   fun:_ZN15WebContentsImpl32CreateRenderViewForRenderManagerEP*
   fun:_ZN21RenderViewHostManager14InitRenderViewEP*
   ...
   fun:_ZN21RenderViewHostManager8NavigateERKN7content19NavigationEntryImplE
   fun:_ZN15WebContentsImpl15NavigateToEntryERKN7content19NavigationEntryImplENS0_20NavigationController10ReloadTypeE
}
{
   bug_83609
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
   fun:_ZN11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx
   fun:_ZN13BrowserThread14PostTaskHelperENS_2IDERKN15tracked_objects8LocationEP4Taskxb
   fun:_ZN13BrowserThread8PostTaskENS_2IDERKN15tracked_objects8LocationEP4Task
}
{
   bug_83609b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
   fun:_ZN11MessageLoop8PostTaskERKN15tracked_objects8LocationEP4Task
}
{
   bug_84224_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocator*PendingTaskEE8allocate*
   fun:_ZN*_Deque_baseIN*PendingTaskESaIS1_*_M_allocate_*
   ...
   fun:_ZNSt5dequeIN*PendingTaskESaIS1_EE*push_back*
   fun:_ZNSt5queueIN4*PendingTask*deque*push*
   fun:_ZN11MessageLoop18AddToIncomingQueueEPN*PendingTaskE
}
{
   bug_84224_b
   Memcheck:Unaddressable
   fun:_ZN13scoped_refptrIN4base8internal18InvokerStorageBaseEEC2ERKS3_
   fun:_ZN13scoped_refptrIN4base8internal18InvokerStorageBaseEEC1ERKS3_
   fun:_ZN4base8internal12CallbackBaseC2ERKS1_
   fun:_ZN4base8CallbackIFvvEEC2ERKS2_
   fun:_ZN4base8CallbackIFvvEEC1ERKS2_
   fun:_ZN11MessageLoop11PendingTaskC2ERKS0_
   fun:_ZN11MessageLoop11PendingTaskC1ERKS0_
   fun:_ZN9__gnu_cxx13new_allocatorIN11MessageLoop11PendingTaskEE9constructEPS2_RKS2_
   fun:_ZNSt5dequeIN11MessageLoop11PendingTaskESaIS1_EE9push_backERKS1_
   fun:_ZNSt5queueIN11MessageLoop11PendingTaskESt5dequeIS1_SaIS1_EEE4pushERKS1_
   fun:_ZN11MessageLoop18AddToIncomingQueueEPNS_11PendingTaskE
}
{
   bug_84265
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN12LoginHandler6CreateEPN3net17AuthChallengeInfoEPNS0_10URLRequestE
   fun:_Z17CreateLoginPromptPN3net17AuthChallengeInfoEPNS_10URLRequestE
   fun:_ZN22ResourceDispatcherHost14OnAuthRequiredEPN3net10URLRequestEPNS0_17AuthChallengeInfoE
   fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
}
{
   bug_84770_a
   Memcheck:Unaddressable
   fun:_ZN6WebKit21FrameLoaderClientImpl12allowPluginsEb
   fun:_ZN7WebCore14SubframeLoader12allowPluginsENS_28ReasonForCallingAllowPluginsE
}
{
   bug_84770_b
   Memcheck:Unaddressable
   fun:_ZN6WebKit21FrameLoaderClientImpl15allowJavaScriptEb
   fun:_ZN7WebCore16ScriptController17canExecuteScriptsENS_33ReasonForCallingCanExecuteScriptsE
}
{
   bug_84770_c
   Memcheck:Unaddressable
   fun:_ZN6WebKit21FrameLoaderClientImpl20allowScriptExtensionERKN3WTF6StringEi
   fun:_ZN7WebCore16V8DOMWindowShell16createNewContextEN2v86HandleINS1_6ObjectEEEi
}
{
   bug_86481
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIP8FilePathE8allocateEjPKv
   fun:_ZNSt11_Deque_baseI8FilePathSaIS0_EE15_M_allocate_mapEj
   fun:_ZNSt11_Deque_baseI8FilePathSaIS0_EE17_M_initialize_mapEj
   fun:_ZNSt11_Deque_baseI8FilePathSaIS0_EEC2ERKS1_j
   fun:_ZNSt5dequeI8FilePathSaIS0_EEC1ERKS2_
   fun:_ZNSt5stackI8FilePathSt5dequeIS0_SaIS0_EEEC1ERKS3_
   fun:_ZN9file_util14FileEnumeratorC1ERK8FilePathbNS0_9FILE_TYPEERKSs
   fun:_ZN7history20ExpireHistoryBackend25DoExpireHistoryIndexFilesEv
}
{
   bug_87222
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN10URLFetcher6CreateEiRK4GURLNS_11RequestTypeEPNS_8DelegateE
   fun:_ZN16TranslateManager36FetchLanguageListFromTranslateServerEP11PrefService
   fun:_Z11BrowserMainRK18MainFunctionParams
   fun:*RunNamedProcessTypeMainERKSsRK18MainFunctionParams
}
{
   bug_87423
   Memcheck:Uninitialized
   fun:_ZNK3net15HttpBasicStream23LogNumRttVsBytesMetricsEv
   fun:_ZN3net22HttpNetworkTransaction18DoReadBodyCompleteEi
   fun:_ZN3net22HttpNetworkTransaction6DoLoopEi
   fun:_ZN3net22HttpNetworkTransaction4ReadEPNS_8IOBufferEiP14CallbackRunnerI6Tuple1IiEE
   fun:_Z15ReadTransactionPN3net15HttpTransactionEPSs
   fun:_ZN3net73HttpNetworkTransactionTest_ErrorResponseTofHttpsConnectViaHttpsProxy_Test8TestBodyEv
}
{
   bug_88640_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11ProfileImpl30InitRegisteredProtocolHandlersEv
   fun:_ZN11ProfileImpl11DoFinalInitEv
   fun:_ZN11ProfileImpl13OnPrefsLoadedEb
}
{
   bug_88640_b
   Memcheck:Leak
   ...
   fun:_ZN11ProfileImpl13OnPrefsLoadedEb
   ...
   fun:_ZN11ProfileImplC*ERK8FilePathPN7Profile8DelegateE
}
{
   bug_88640_c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN29ChromeURLRequestContextGetter14CreateOriginalEP7ProfilePK13ProfileIOData
   fun:_ZN17ProfileImplIOData6Handle4InitERK8FilePathS3_S3_iS3_iS3_S3_PN18chrome_browser_net9PredictorEP11PrefServiceP8IOThread
   fun:_ZN11ProfileImpl11DoFinalInitEv
   fun:_ZN11ProfileImpl13OnPrefsLoadedEb
}
{
   bug_81796
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base16MessageLoopProxy22currentEv
   fun:_ZN3IPC12ChannelProxy7ContextC1EPNS_7Channel8ListenerEPN4base16MessageLoopProxyE
   fun:_ZN3IPC12ChannelProxyC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEPN4base16MessageLoopProxyE
}
{
   bug_89304
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3net20ClientSocketPoolBaseINS_*SocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
   fun:_ZN3net*SocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
   fun:_ZN3net18ClientSocketHandle4Init*
   ...
   fun:_ZN3net23ClientSocketPoolManager30InitSocketHandleForHttpRequestERK4GURLRKNS_18HttpRequestHeadersEiNS_15RequestPriorityEPNS_18HttpNetworkSessionERKNS_9ProxyInfoEbbRKNS_9SSLConfigESF_RKNS_11BoundNetLogEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net21HttpStreamFactoryImpl3Job16DoInitConnectionEv
}
{
   bug_89311
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3net16HttpStreamParser22DoParseResponseHeadersEi
   fun:_ZN3net16HttpStreamParser20ParseResponseHeadersEv
   fun:_ZN3net16HttpStreamParser21DoReadHeadersCompleteEi
}
{
   bug_89942_a
   Memcheck:Leak
   ...
   fun:_ZN10ZygoteHost11ForkRequestERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6_EERKSs
   fun:_ZN20ChildProcessLauncher7Context14LaunchInternalE13scoped_refptrIS0_EN13BrowserThread2IDEbRKSt6vectorISt4pairISsSsESaIS7_EEiP11CommandLine
}
{
   bug_89942_b
   Memcheck:Leak
   ...
   fun:_ZNSt6vectorISt4pairIjiESaIS1_EE9push_backERKS1_
   fun:_ZN20ChildProcessLauncher7Context14LaunchInternalE13scoped_refptrIS0_EN13BrowserThread2IDEbRKSt6vectorISt4pairISsSsESaIS7_EEiP11CommandLine
}
{
   bug_90057a
   Memcheck:Leak
   ...
   fun:_ZN3net13CookieMonster9InitStoreEv
   fun:_ZN3net13CookieMonster15InitIfNecessaryEv
   fun:_ZN3net13CookieMonster30GetAllCookiesForURLWithOptionsERK4GURLRKNS_13CookieOptionsE
   fun:_ZN3net13CookieMonster19GetAllCookiesForURLERK4GURL
   fun:_ZN22ResourceDispatcherHost13CanGetCookiesEPN3net10URLRequestE
   fun:_ZN3net10URLRequest13CanGetCookiesEv
   fun:_ZN3net13URLRequestJob13CanGetCookiesEv
   fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
}
{
   bug_90057b
   Memcheck:Leak
   ...
   fun:_ZN3net13CookieMonster9InitStoreEv
   fun:_ZN3net13CookieMonster15InitIfNecessaryEv
   fun:_ZN3net13CookieMonster21GetCookiesWithOptionsERK4GURLRKNS_13CookieOptionsE
   fun:_ZN3net13CookieMonster26GetCookiesWithOptionsAsyncERK4GURLRKNS_13CookieOptionsERKN4base8CallbackIFvRKSsEEE
   fun:_ZN3net11CookieStore15GetCookiesAsyncERK4GURLRKN4base8CallbackIFvRKSsEEE
   fun:_ZN12_GLOBAL__N_120GetCookiesOnIOThreadERK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSs
}
{
   bug_90057c
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3net17URLRequestHttpJob14SaveNextCookieEv
   fun:_ZN3net17URLRequestHttpJob35SaveCookiesAndNotifyHeadersCompleteEv
   fun:_ZN3net17URLRequestHttpJob16OnStartCompletedEi
}
{
   bug_90215_c
   Memcheck:Leak
   ...
   fun:_ZN3net13URLRequestJob21NotifyRestartRequiredEv
   fun:_ZN8appcache21AppCacheURLRequestJob13BeginDeliveryEv
}
{
   bug_90215_d
   Memcheck:Leak
   ...
   fun:_ZN8appcache19AppCacheStorageImpl23RunOnePendingSimpleTaskEv
}
{
   bug_90215_e
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN8appcache15AppCacheService10InitializeERK8FilePathPN4base16MessageLoopProxyE
   fun:_ZN21ChromeAppCacheService20InitializeOnIOThreadERK8FilePathPKN7content15ResourceContextE13scoped_refptrIN5quota20SpecialStoragePolicyEE
}
{
   bug_90240
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN2pp5proxy26PPP_Instance_Private_Proxy22OnMsgGetInstanceObjectEiNS0_24SerializedVarReturnValueE
}
{
   bug_90400
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11ProfileImpl24GetUserStyleSheetWatcherEv
   fun:_ZN6chrome26ChromeContentBrowserClient14GetWebkitPrefs*
   fun:_ZN15WebContentsImpl14GetWebkitPrefsEv
}
{
   bug_90487
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN5quota11QuotaClientEEE8allocateEjPKv
   fun:_ZNSt10_List_baseIPN5quota11QuotaClientESaIS2_EE11_M_get_nodeEv
   fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE14_M_create_nodeERKS2_
   fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE9_M_insertESt14_List_iteratorIS2_ERKS2_
   fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE9push_backERKS2_
   fun:_ZN5quota12QuotaManager14RegisterClientEPNS_11QuotaClientE
   fun:_ZN5quota17QuotaManagerProxy14RegisterClientEPNS_11QuotaClientE
}
{
   bug_90496a
   Memcheck:Leak
   ...
   fun:_ZN3IPC16MessageWithTupleI6Tuple2Ii23ResourceHostMsg_RequestEE8DispatchI22ResourceDispatcherHostS6_iRKS2_EEbPKNS_7MessageEPT_PT0_MSC_FvRSA_T1_T2_E
   fun:_ZN22ResourceDispatcherHost17OnMessageReceivedERKN3IPC7MessageEP21ResourceMessageFilterPb
   fun:_ZN21ResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageEPb
   fun:_ZN20BrowserMessageFilter15DispatchMessageERKN3IPC7MessageE
   fun:_ZN20BrowserMessageFilter17OnMessageReceivedERKN3IPC7MessageE
   fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE
   fun:_ZN3IPC12ChannelProxy7Context17OnMessageReceivedERKNS_7MessageE
   fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
   fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
}
{
   bug_90496b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN22ResourceDispatcherHost23CompleteResponseStartedEPN3net10URLRequestE
   fun:_ZN22ResourceDispatcherHost17OnResponseStartedEPN3net10URLRequestE
   fun:_ZN3net10URLRequest21NotifyResponseStartedEv
   fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
}
{
   bug_90496c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN20AsyncResourceHandler15OnReadCompletedEiPi
   fun:_ZN23BufferedResourceHandler15OnReadCompletedEiPi
   fun:_ZN27SafeBrowsingResourceHandler15OnReadCompletedEiPi
   fun:_ZN22OfflineResourceHandler15OnReadCompletedEiPi
   fun:_ZN22ResourceDispatcherHost12CompleteReadEPN3net10URLRequestEPi
   fun:_ZN22ResourceDispatcherHost15OnReadCompletedEPN3net10URLRequestEi
   fun:_ZN3net10URLRequest19NotifyReadCompletedEi
   fun:_ZN3net13URLRequestJob18NotifyReadCompleteEi
   fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory
   fun:_ZN27ChromeURLDataManagerBackend13DataAvailableEiP16RefCountedMemory
   fun:_ZN20ChromeURLDataManager10DataSource22SendResponseOnIOThreadEi13scoped_refptrI16RefCountedMemoryE
}
{
   bug_90496d
   Memcheck:Leak
   ...
   fun:_ZN24CrossSiteResourceHandler14ResumeResponseEv
   fun:_ZN22ResourceDispatcherHost12OnSwapOutACKERK22ViewMsg_SwapOut_Params
   fun:_ZN18RenderWidgetHelper21OnCrossSiteSwapOutACKERK22ViewMsg_SwapOut_Params
}
{
   bug_90496e
   Memcheck:Leak
   ...
   fun:_ZN14SharedIOBuffer4InitEv
   fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
   fun:_ZN24CrossSiteResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
   fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
   fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
   fun:_ZN22OfflineResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
   fun:_ZN22ResourceDispatcherHost4ReadEPN3net10URLRequestEPi
   fun:_ZN22ResourceDispatcherHost12StartReadingEPN3net10URLRequestE
}
{
   bug_90642
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base22PosixDynamicThreadPool7AddTaskEPNS0_11PendingTaskE
   fun:_ZN4base22PosixDynamicThreadPool8PostTask*
   fun:_ZN4base12_GLOBAL__N_114WorkerPoolImpl8PostTask*
   fun:_ZN4base10WorkerPool8PostTaskERKN15tracked_objects8Location*
}
{
   bug_90671
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZNK3sql9Statement*ColumnString*
   fun:_ZN7history11URLDatabase10FillURLRowERN3sql9StatementEPNS_6URLRowE
   fun:_ZN7history11URLDatabase13URLEnumerator10GetNextURLEPNS_6URLRowE
   fun:_ZN7history14HistoryBackend11IterateURLsEPN14HistoryService13URLEnumeratorE
}
{
   bug_91199
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN19URLRequestChromeJob15GetResponseInfoEPN3net16HttpResponseInfoE
   fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
   fun:_ZN19URLRequestChromeJob10StartAsyncEv
}
{
   bug_92389
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net11AddressList27CreateByCopyingFirstAddressEPK8addrinfo
   fun:_ZNK3net23TCPClientSocketLibevent14GetPeerAddressEPNS_11AddressListE
   ...
   fun:_ZN3net22HttpNetworkTransaction13DoSendRequestEv
   fun:_ZN3net22HttpNetworkTransaction6DoLoopEi
   fun:_ZN3net22HttpNetworkTransaction12OnIOCompleteEi
   fun:_ZN3net22HttpNetworkTransaction13OnStreamReadyERKNS_9SSLConfigERKNS_9ProxyInfoEPNS_10HttpStreamE
   fun:_ZN3net21HttpStreamFactoryImpl7Request*
   fun:_ZN3net21HttpStreamFactoryImpl3Job*
}
{
   bug_92571
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7history16TopSitesDatabase8CreateDBERK8FilePath
   fun:_ZN7history16TopSitesDatabase4InitERK8FilePath
   fun:_ZN7history15TopSitesBackend16InitDBOnDBThreadERK8FilePath
}
{
   bug_92741a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4BindIPFvPNS_13WaitableEventEPSsRKSsES2_S3_EENS_8internal20InvokerStorageHolderINS8_15InvokerStorage2IT_T0_T1_EEEESB_RKSC_RKSD_
   fun:_ZN12_GLOBAL__N_120GetCookiesOnIOThreadERK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSs
   fun:_Z18DispatchToFunctionIPFvRK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSsES0_S6_SB_SC_EvT_RK6Tuple4IT0_T1_T2_T3_E
}
{
   bug_92741b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvPSsPSt6vectorINS1_11CookieStore10CookieInfoESaIS6_EEENS_7WeakPtrIS2_EEEENS_8internal20InvokerStorageHolderINSE_15InvokerStorage1IT_T0_EEEESH_RKSI_
   fun:_ZN3net17URLRequestHttpJob24CheckCookiePolicyAndLoadERKNS_10CookieListE
}
{
   bug_92741c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvRKNS1_10CookieListEENS_7WeakPtrIS2_EEEENS_8internal20InvokerStorageHolderINSA_15InvokerStorage1IT_T0_EEEESD_RKSE_
   fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
   fun:_ZN3net17URLRequestHttpJob5StartEv
   fun:_ZN3net10URLRequest8StartJobEPNS_13URLRequestJobE
   fun:_ZN3net10URLRequest5StartEv
}
{
   bug_92876a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net18SSLClientSocketNSS10BufferSendEv
   fun:_ZN3net18SSLClientSocketNSS13DoTransportIOEv
   fun:_ZN3net18SSLClientSocketNSS11DoWriteLoopEi
   fun:_ZN3net18SSLClientSocketNSS5WriteEPNS_8IOBufferEiP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net11SpdySession11WriteSocketEv
}
{
   bug_92876b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net18SSLClientSocketNSS10BufferSendEv
   fun:_ZN3net18SSLClientSocketNSS13DoTransportIOEv
   fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
   fun:_ZN3net18SSLClientSocketNSS7ConnectEP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net13SSLConnectJob12DoSSLConnectEv
   fun:_ZN3net13SSLConnectJob6DoLoopEi
   fun:_ZN3net13SSLConnectJob12OnIOCompleteEi
}
{
   bug_93006a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN19DownloadManagerTestC2Ev
   fun:_ZN*DownloadManagerTest_*
}
{
   bug_93006b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN15DownloadManager4InitEP7Profile
   fun:_ZN19DownloadManagerTestC2Ev
   fun:_ZN*DownloadManagerTest_*
}
{
   bug_93250a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:*SHA1Fingerprint*
   fun:_ZN3net16CertVerifyResultaSERKS0_
   fun:_ZN3net12CertVerifier12HandleResultEPNS_15X509CertificateERKSsiiRKNS_16CertVerifyResultE
   fun:_ZN3net18CertVerifierWorker7DoReplyEv
}
{
   bug_93250b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base4BindIMNS_6subtle18TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
   fun:_ZN11MessageLoop8PostTaskERKN15tracked_objects8LocationEP4Task
   fun:_ZN3net18CertVerifierWorker6FinishEv
   fun:_ZN3net18CertVerifierWorker3RunEv
}
{
   bug_93730_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN14ServiceProcess10InitializeEP16MessageLoopForUIRK11CommandLineP19ServiceProcessState
   fun:_Z18ServiceProcessMainRK18MainFunctionParams
   ...
   fun:ChromeMain
   fun:main
}
{
   bug_93730_b
   Memcheck:Leak
   fun:_Zna*
   fun:_ZN4base13LaunchProcessERKSt6vectorISsSaISsEERKNS_13LaunchOptionsEPi
   fun:_ZN4base13LaunchProcessERK11CommandLineRKNS_13LaunchOptionsEPi
   fun:_ZN21ServiceProcessControl8Launcher5DoRunEv
}
{
   bug_93730_c
   Memcheck:Leak
   fun:_Znw*
   fun:_Z17NewRunnableMethodIN21ServiceProcessControl8LauncherEMS1_FvvEEP14CancelableTaskPT_T0_
   fun:_ZN21ServiceProcessControl8Launcher5DoRunEv
}
{
   bug_93730_d
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEPN4base16MessageLoopProxyEbPNS8_13WaitableEventE
   fun:_ZN16ServiceIPCServer13CreateChannelEv
   fun:_ZN16ServiceIPCServer4InitEv
   fun:_ZN14ServiceProcess10InitializeEP16MessageLoopForUIRK11CommandLineP19ServiceProcessState
   fun:_Z18ServiceProcessMainRK18MainFunctionParams
   ...
   fun:ChromeMain
   fun:main
}
{
   bug_94195
   Memcheck:Leak
   ...
   fun:_ZN12GpuBlacklist16LoadGpuBlacklistERKSsNS_8OsFilterE
}
{
   bug_94345
   Memcheck:Leak
   fun:_Znw*
   fun:_ZNK4base8internal18WeakReferenceOwner6GetRefEv
   fun:_ZN4base15SupportsWeakPtrI16ObserverListBaseIN11MessageLoop12TaskObserverEEE9AsWeakPtrEv
   fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE8IteratorC1ERS2_
}
{
   bug_94764
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN8remoting13ClientSession11UnpressKeysEv
   fun:_ZN8remoting34ClientSessionTest_UnpressKeys_Test8TestBodyEv
}
{
   bug_95448
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPN4base5ValueEEEE8allocateEjPKv
   fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE11_M_get_nodeEv
   fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE14_M_create_nodeERKS5_
   fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE10_M_insert_EPKSt18_Rb_tree_node_baseSE_RKS5_
   fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS5_ERKS5_
   fun:_ZNSt3mapISsPN4base5ValueESt4lessISsESaISt4pairIKSsS2_EEE6insertESt17_Rb_tree_iteratorIS7_ERKS7_
   fun:_ZNSt3mapISsPN4base5ValueESt4lessISsESaISt4pairIKSsS2_EEEixERS6_
   fun:_ZN4base15DictionaryValue23SetWithoutPathExpansionERKSsPNS_5ValueE
   fun:_ZN4base15DictionaryValue3SetERKSsPNS_5ValueE
   fun:_ZN4base15DictionaryValue9SetStringERKSsRKSbItNS_20string16_char_traitsESaItEE
   fun:_ZN11PluginPrefs23CreatePluginFileSummaryERKN6webkit13WebPluginInfoE
   fun:_ZN11PluginPrefs19OnUpdatePreferencesESt6vectorIN6webkit13WebPluginInfoESaIS2_EES0_INS1_5npapi11PluginGroupESaIS6_EE
}
{
   bug_95902
   Memcheck:Leak
   ...
   fun:xdg_mime_init
   fun:xdg_mime_get_mime_type_from_file_name
   fun:*GetFileMimeTypeERK8FilePath
   fun:_ZNK3net16PlatformMimeUtil32GetPlatformMimeTypeFromExtensionERKSsPSs
   fun:_ZNK3net8MimeUtil30GetMimeTypeFromExtensionHelperERKSsbPSs
   fun:_ZNK3net8MimeUtil24GetMimeTypeFromExtensionERKSsPSs
   fun:_ZNK3net8MimeUtil19GetMimeTypeFromFileERK8FilePathPSs
   fun:_ZN3net19GetMimeTypeFromFileERK8FilePathPSs
}
{
   bug_95931a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN16UserScriptMaster9StartLoadEv
   fun:_ZN16UserScriptMaster7ObserveEiRK18NotificationSourceRK19NotificationDetails
   fun:_ZN19NotificationService6NotifyEiRK18NotificationSourceRK19NotificationDetails
   fun:_ZN16ExtensionService27OnLoadedInstalledExtensionsEv
   fun:_ZN16ExtensionService17LoadAllExtensionsEv
   fun:_ZN16ExtensionService4InitEv
   fun:_ZN11ProfileImpl14InitExtensionsEb
   ...
   fun:_ZN14ProfileManager17GetDefaultProfileEv
   fun:_ZN16browser_shutdown8ShutdownEv
}
{
   bug_95931b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZL9SerializeRKSt6vectorI10UserScriptSaIS0_EE
   fun:_ZN16UserScriptMaster14ScriptReloader7RunLoadERKSt6vectorI10UserScriptSaIS2_EE
}
{
   bug_96069
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3net9HttpCache13CreateBackendEPPN10disk_cache7BackendEP14CallbackRunnerI6Tuple1IiEE
   fun:_ZN3net9HttpCache17CreateTransactionEP10scoped_ptrINS_15HttpTransactionEE
   ...
   fun:_ZN3net13CookieMonster17CookieMonsterTask14InvokeCallbackEN4base8CallbackIFvvEEE
}
{
   bug_96090
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIN3net18HttpRequestHeaders18HeaderKeyValuePairEE8allocateEjPKv
   fun:_ZNSt12_Vector_baseIN3net18HttpRequestHeaders18HeaderKeyValuePairESaIS2_EE11_M_allocateEj
   fun:_ZNSt6vectorIN3net18HttpRequestHeaders18HeaderKeyValuePairESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_
   fun:_ZNSt6vectorIN3net18HttpRequestHeaders18HeaderKeyValuePairESaIS2_EE9push_backERKS2_
   fun:_ZN3net18HttpRequestHeaders9SetHeaderERKN4base11StringPieceES4_
   fun:_ZN3net18HttpRequestHeaders19AddHeaderFromStringERKN4base11StringPieceE
   fun:_ZN3net18HttpRequestHeaders20AddHeadersFromStringERKN4base11StringPieceE
   fun:_ZN22ResourceDispatcherHost12BeginRequestEiRK23ResourceHostMsg_RequestPN3IPC7MessageEi
}
{
   bug_96103
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIN3net11ProxyServerEE8allocateEjPKv
   fun:_ZNSt12_Vector_baseIN3net11ProxyServerESaIS1_EE11_M_allocateEj
   fun:_ZNSt12_Vector_baseIN3net11ProxyServerESaIS1_EEC2EjRKS2_
   fun:_ZNSt6vectorIN3net11ProxyServerESaIS1_EEC1ERKS3_
   fun:_ZN3net9ProxyListC1ERKS0_
   fun:_ZN3net9ProxyInfoC1ERKS0_
   fun:_ZN3net21HttpStreamFactoryImpl7Request18OnSpdySessionReadyEPNS0_3JobE13scoped_refptrINS_11SpdySessionEEb
   fun:_ZN3net21HttpStreamFactoryImpl3Job26OnSpdySessionReadyCallbackEv
}
{
   bug_96365
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN27PasswordManagerDelegateImpl33AddSavePasswordInfoBarIfPermittedEP19PasswordFormManager
   fun:_ZN15PasswordManager23OnPasswordFormsRenderedERKSt6vectorIN6webkit5forms12PasswordFormESaIS3_EE
}
{
   bug_96369
   Memcheck:Leak
   fun:malloc
   fun:g_malloc
   fun:g_slice_alloc
   fun:g_slice_alloc0
   fun:g_type_create_instance
   fun:g_object_constructor
   fun:g_object_newv
   fun:g_object_new
   fun:_gdk_window_impl_new
   fun:gdk_window_ensure_native
   fun:gdk_x11_drawable_get_xid
   fun:_ZN20GtkNativeViewManager14GetIdForWidgetEP10_GtkWidget
   fun:_ZNK7content23RenderWidgetHostViewGtk15GetNativeViewIdEv
}
{
   bug_96402
   Memcheck:Leak
   fun:malloc
   fun:g_malloc
   fun:g_slice_alloc
   fun:g_slice_alloc0
   fun:g_type_create_instance
   fun:g_object_constructor
   fun:g_object_newv
   fun:g_object_new
   fun:_gdk_window_impl_new
   fun:gdk_window_ensure_native
   fun:gdk_x11_drawable_get_xid
   ...
   fun:g_closure_invoke
   fun:signal_emit_unlocked_R
   fun:g_signal_emit_valist
   fun:g_signal_emit
   fun:gtk_widget_realize
   fun:gtk_widget_set_parent
}
{
   bug_96407
   Memcheck:Leak
   fun:malloc
   fun:g_malloc
   fun:g_slice_alloc
   fun:g_slice_alloc0
   fun:g_type_create_instance
   fun:g_object_constructor
   fun:g_object_newv
   fun:g_object_new
   fun:_gdk_window_impl_new
   fun:gdk_window_ensure_native
   fun:gdk_x11_drawable_get_xid
   fun:_ZN19TestWebViewDelegate20CreatePluginDelegateERK8FilePathRKSs
}
{
   bug_96568a
   Memcheck:Leak
   fun:*alloc
   ...
   fun:HB_OpenType*
   ...
   fun:HB_ShapeItem
   fun:_ZN7WebCore21ComplexTextController11shapeGlyphsEv
   fun:_ZN7WebCore21ComplexTextController13nextScriptRunEv
}
{
   bug_96568b
   Memcheck:Leak
   ...
   fun:HB_NewFace
   fun:_ZN7WebCoreL21getCachedHarfbuzzFaceEPNS_16FontPlatformDataE
   fun:_ZN7WebCore12HarfbuzzFaceC1EPNS_16FontPlatformDataE
   fun:_ZN7WebCore12HarfbuzzFace6createEPNS_16FontPlatformDataE
   fun:_ZNK7WebCore16FontPlatformData12harfbuzzFaceEv
   fun:_ZN7WebCore21ComplexTextController21setupFontForScriptRunEv
}
{
   bug_98568
   Memcheck:Leak
   ...
   fun:_ZN44WebDragDestGtkTest_NoTabContentsWrapper_Test8TestBodyEv
}
{
   bug_98867
   Memcheck:Jump
   obj:*
   obj:*
   obj:*
}
{
   bug_98967_a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base5Value17CreateStringValueERKSs
   fun:_ZN40V8ValueConverterImplTest_WeirdTypes_Test8TestBodyEv
}
{
   bug_98967_b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base5Value17CreateDoubleValueEd
   fun:_ZN40V8ValueConverterImplTest_WeirdTypes_Test8TestBodyEv
}
{
   bug_99166
   Memcheck:Leak
   ...
   fun:_ZN22AppNotificationStorage6CreateERK8FilePath
}
{
   bug_99304
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN2v88internal10PagedSpace11AllocateRawEi
   fun:_ZN2v88internal12Deserializer8AllocateEiPNS0_5SpaceEi
   fun:_ZN2v88internal12Deserializer10ReadObjectEiPNS0_5SpaceEPPNS0_6ObjectE
   fun:_ZN2v88internal12Deserializer9ReadChunkEPPNS0_6ObjectES4_iPh
   fun:_ZN2v88internal12Deserializer10ReadObjectEiPNS0_5SpaceEPPNS0_6ObjectE
   fun:_ZN2v88internal12Deserializer9ReadChunkEPPNS0_6ObjectES4_iPh
   fun:_ZN2v88internal12Deserializer13VisitPointersEPPNS0_6ObjectES4_
}
{
   bug_99307
   Memcheck:Uninitialized
   fun:modp_b64_encode
   fun:_ZN4base12Base64Encode*
   fun:_ZN11web_ui_util15GetImageDataUrlERK8SkBitmap
   fun:_ZN12_GLOBAL__N_121NetworkInfoDictionary8set_iconERK8SkBitmap
}
{
   bug_99308
   Memcheck:Leak
   fun:malloc
   fun:_ZL9toCStringRK9_NPString
   fun:_ZL15testPostURLFileP12PluginObjectPK10_NPVariantjPS1_
   fun:_ZL12pluginInvokeP8NPObjectPvPK10_NPVariantjPS2_
   fun:_ZN7WebCoreL18npObjectInvokeImplERKN2v89ArgumentsENS_18InvokeFunctionTypeE
}
{
   bug_99321
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN6WebKit12CCThreadImpl6createEPNS_9WebThreadE
   fun:_ZN6WebKit13WebCompositor9setThreadEPNS_9WebThreadE
   fun:_ZN11WebViewHostC1EP9TestShell
   fun:_ZN9TestShell15createNewWindowERKN6WebKit6WebURLEP16DRTDevToolsAgent
}
{
   bug_99435
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
   fun:_ZN11MessageLoop11RunInternalEv
   fun:_ZN11MessageLoop10RunHandlerEv
}
{
   bug_99436
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN8chromeos*OncNetworkParserTest_TestCreateNetworkWifi*_Test8TestBodyEv
}
{
   bug_100043
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIN6webkit13WebPluginInfoEE8allocateEjPKv
   ...
   fun:_ZNSt6vectorIN6webkit13WebPluginInfoESaIS1*
}
{
   bug_101125a
   Memcheck:Uninitialized
   ...
   fun:_ZN6SkScan12AntiFillPathERK6SkPathRK8SkRegionP9SkBlitterb
   fun:_ZN6SkScan12AntiFillPathERK6SkPathRK12SkRasterClipP9SkBlitter
   fun:_ZNK6SkDraw8drawPathERK6SkPathRK7SkPaintPK8SkMatrixb
   fun:_ZN8SkDevice8drawPathERK6SkDrawRK6SkPathRK7SkPaintPK8SkMatrixb
   fun:_ZNK6SkDraw14drawTextOnPathEPKcmRK6SkPathPK8SkMatrixRK7SkPaint
   fun:_ZN8SkDevice14drawTextOnPathERK6SkDrawPKvmRK6SkPathPK8SkMatrixRK7SkPaint
   fun:_ZN8SkCanvas14drawTextOnPathEPKvmRK6SkPathPK8SkMatrixRK7SkPaint
   fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
   fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
}
{
   bug_101125b
   Memcheck:Uninitialized
   ...
   fun:_ZN6SkScan12AntiFillRectERK6SkRectPK8SkRegionP9SkBlitter
   fun:_ZN6SkScan12AntiFillRectERK6SkRectRK12SkRasterClipP9SkBlitter
   fun:_ZNK6SkDraw8drawRectERK6SkRectRK7SkPaint
   fun:_ZN8SkDevice8drawRectERK6SkDrawRK6SkRectRK7SkPaint
   fun:_ZN8SkCanvas8drawRectERK6SkRectRK7SkPaint
   fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceE
   fun:_ZN7WebCore15GraphicsContext20drawHighlightForTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEiRKNS_5ColorENS_10ColorSpaceEii
}
{
   bug_101125c
   Memcheck:Uninitialized
   ...
   fun:_ZL11morphpointsP7SkPointPKS_iR13SkPathMeasureRK8SkMatrix
   fun:_ZL9morphpathP6SkPathRKS_R13SkPathMeasureRK8SkMatrix
   fun:_ZNK6SkDraw14drawTextOnPathEPKcmRK6SkPathPK8SkMatrixRK7SkPaint
   fun:_ZN8SkDevice14drawTextOnPathERK6SkDrawPKvmRK6SkPathPK8SkMatrixRK7SkPaint
   fun:_ZN8SkCanvas14drawTextOnPathEPKvmRK6SkPathPK8SkMatrixRK7SkPaint
   fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
   fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
   fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZN7WebCore15GraphicsContext8drawTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEii
}
{
   bug_100133
   Memcheck:Leak
   fun:_Znw*
   fun:_Z22RecoveryRegisterHelperP22ComponentUpdateServiceP11PrefService
}
{
   bug_100330
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN25TestingAutomationProvider42NavigateToURLBlockUntilNavigationsCompleteEiRK4GURLiPN3IPC7MessageE
}
{
   bug_100647
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN18WebResourceService19UpdateResourceCacheERKSs
   fun:_ZN18WebResourceService18WebResourceFetcher18OnURLFetchCompleteEPK10URLFetcherRK4GURLRKN3net16URLRequestStatusEiRKSt6vectorISsSaISsEERKSs
   fun:_ZN10URLFetcher8Delegate18OnURLFetchCompleteEPKS_
   fun:_ZN10URLFetcher4Core29InformDelegateFetchIsCompleteEv
   fun:_ZN10URLFetcher4Core21OnCompletedURLRequestEN4base9TimeDeltaE
}
{
   bug_100777
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN12_GLOBAL__N_119MakeContextDelegateI16CrxUpdateServiceNS1_13UpdateContextEEEPN7content18URLFetcherDelegateEPT_PT0_
   fun:_ZN16CrxUpdateService19ProcessPendingItemsEv
}
{
   bug_100916
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN6WebKit19WebWorkerClientImpl24createWorkerContextProxyEPN7WebCore6WorkerE
   ...
   fun:_ZN7WebCore6WorkerC1EPNS_22ScriptExecutionContextE
   fun:_ZN7WebCore6Worker6createEPNS_22ScriptExecutionContextERKN3WTF6StringERi
   fun:_ZN7WebCore8V8Worker19constructorCallbackERKN2v89ArgumentsE
   fun:_ZN2v88internalL19HandleApiCallHelperILb1EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
}
{
   bug_100981
   Memcheck:Uninitialized
   fun:_ZN7WebCore*
   fun:_ZN7WebCore27BorderImageQuadParseContext21commitBorderImageQuadEv
   fun:_ZN7WebCore9CSSParser20parseBorderImageQuadENS0_5UnitsERN3WTF6RefPtrINS_17CSSPrimitiveValueEEE
   fun:_ZN7WebCore9CSSParser21parseBorderImageWidthERN3WTF6RefPtrINS_17CSSPrimitiveValueEEE
   fun:_ZN7WebCore9CSSParser16parseBorderImageEiRN3WTF6RefPtrINS_8CSSValueEEE
   fun:_ZN7WebCore9CSSParser12parseReflectEib
   fun:_ZN7WebCore9CSSParser10parseValueEib
   fun:_Z10cssyyparsePv
}
{
   bug_100982
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore12RenderRegion22setRenderBoxRegionInfoEPKNS_9RenderBoxEiib
   fun:_ZNK7WebCore9RenderBox19renderBoxRegionInfoEPNS_12RenderRegionEiNS0_24RenderBoxRegionInfoFlagsE
   ...
   fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
}
{
   bug_101145a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN2v88internal2OS15CreateSemaphoreEi
   fun:_ZN2v88internal8ProfilerC1EPNS0_7IsolateE
   fun:_ZN2v88internal6Logger5SetUpEv
   fun:_ZN2v88internal7Isolate4InitEPNS0_12DeserializerE
   ...
   fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKN3WTF6StringES4_RKNS1_12TextPositionEPNS_27WorkerContextExecutionStateE
}
{
   bug_101145b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore23v8StringToWebCoreStringEN2v86HandleINS0_6StringEEE
   fun:_ZN7WebCore22v8ValueToWebCoreStringEN2v86HandleINS0_5ValueEEE
   fun:_ZN7WebCore15toWebCoreStringEN2v86HandleINS0_5ValueEEE
}
{
   bug_101145c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCoreL18makeExternalStringERKN3WTF6StringE
   fun:_ZN7WebCore11StringCache20v8ExternalStringSlow*
   fun:_ZN7WebCore11StringCache16v8ExternalStringEPN*
   fun:_ZN7WebCore16v8ExternalStringERKN3WTF6String*
}
{
   bug_101146a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11webkit_glue16WebURLLoaderImplC1EPNS_25WebKitPlatformSupportImplE
   fun:_ZN11webkit_glue25WebKitPlatformSupportImpl15createURLLoaderEv
   fun:_ZN7WebCore22ResourceHandleInternal5startEv
   fun:_ZN7WebCore14ResourceHandle5startEPNS_17NetworkingContextE
   fun:_ZN7WebCore14ResourceHandle6createEPNS_17NetworkingContextERKNS_15ResourceRequestEPNS_20ResourceHandleClientEbb
}
{
   bug_101146b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN18ResourceDispatcher12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
   fun:_ZN11ChildThread12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
   fun:_ZN7content25WebKitPlatformSupportImpl20CreateResourceLoaderERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
   fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN6WebKit13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
   fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN6WebKit13WebURLRequestEPNS1_18WebURLLoaderClientE
   fun:_ZN7WebCore22ResourceHandleInternal5startEv
   fun:_ZN7WebCore14ResourceHandle5startEPNS_17NetworkingContextE
}
{
   bug_101146c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11webkit_glue16WebURLLoaderImplC1EPNS_25WebKitPlatformSupportImplE
   fun:_ZN11webkit_glue25WebKitPlatformSupportImpl15createURLLoaderEv
   fun:_ZN11webkit_glue15ResourceFetcher5StartEPN6WebKit8WebFrameE
   fun:_ZN11webkit_glue15ResourceFetcherC2ERK4GURLPN6WebKit8WebFrameENS4_13WebURLRequest10TargetTypeERKN4base8CallbackIFvRKNS4_14WebURLResponseERKSsEEE
   fun:_ZN11webkit_glue26ResourceFetcherWithTimeoutC1ERK4GURLPN6WebKit8WebFrameENS4_13WebURLRequest10TargetTypeEiRKN4base8CallbackIFvRKNS4_14WebURLResponseERKSsEEE
   fun:_ZN11webkit_glue27AltErrorPageResourceFetcherC1ERK4GURLPN6WebKit8WebFrameERKNS4_11WebURLError*Callback*
   fun:_ZN14RenderViewImpl27MaybeLoadAlternateErrorPageEPN6WebKit8WebFrameERKNS0_11WebURLErrorEb
   fun:_ZN14RenderViewImpl22didFailProvisionalLoadEPN6WebKit8WebFrameERKNS0_11WebURLErrorE
   fun:_ZN6WebKit12WebFrameImpl7didFailERKN7WebCore13ResourceErrorEb
}
{
   bug_101146d
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11webkit_glue16WebURLLoaderImplC1EPNS_25WebKitPlatformSupportImplE
   fun:_ZN11webkit_glue25WebKitPlatformSupportImpl15createURLLoaderEv
}
{
   bug_101151
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF*StringEEET_*
   fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF*StringEEET_*
   fun:_ZN7WebCore15V8ParameterBasecvN3WTF*StringEEv
   ...
   fun:_ZN2v88internalL*HandleApiCall*
   obj:*
}
{
   bug_101159
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore15NPObjectWrapper10NPAllocateEP4_NPPP7NPClass
   fun:_NPN_CreateObject
   fun:_ZN7WebCore15NPObjectWrapper6createEP8NPObject
   fun:_ZN7WebCore16ScriptController20windowScriptNPObjectEv
   fun:_ZNK6WebKit12WebFrameImpl12windowObjectEv
   fun:_ZN6webkit5npapi13WebPluginImpl23GetWindowScriptNPObjectEv
   fun:NPN_GetValue
}
{
   bug_101345
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN22WebPluginDelegateProxy20CreateResourceClientEmRK4GURLi
   fun:_ZN6webkit5npapi13WebPluginImpl24HandleURLRequestInternalEPKcS3_S3_S3_jibNS1_8ReferrerEbb
}
{
   bug_101347
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE17NewCallbackHelperINS5_11Dispatcher1IMS3_FviRKNS1_12HostResourceEES8_EEEENS_18CompletionCallbackERKT_
   fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE11NewCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
   fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE19NewOptionalCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
   fun:_ZN5ppapi5proxy38EnterHostFromHostResourceForceCallbackINS_5thunk18PPB_Graphics2D_APIEEC1IN2pp25CompletionCallbackFactoryINS0_20PPB_Graphics2D_ProxyENS0_26ProxyNonThreadSafeRefCountEEEMS8_FviRKNS_12HostResourceEESB_EESD_RT_T0_RKT1_
   fun:_ZN5ppapi5proxy20PPB_Graphics2D_Proxy10OnMsgFlushERKNS_12HostResourceE
}
{
   bug_101470
   Memcheck:Param
   write(buf)
   obj:/lib/libc-2.11.1.so
   fun:_IO_file_write@@GLIBC_2.2.5
   ...
   fun:f*
   ...
   fun:_ZNK13safe_browsing9PrefixSet9WriteFileERK8FilePath
   fun:_ZN12_GLOBAL__N_113PrefixSetTest16GetPrefixSetFileEP8FilePath
   fun:_ZN12_GLOBAL__N_1*PrefixSetTest_*_Test8TestBodyEv
}
{
   bug_101750
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEj
   fun:_ZN3WTF7HashSetIPN7WebCore16SVGStyledElementENS_7PtrHashIS3_EENS_10HashTraitsIS3_EEEnwEj
   fun:_ZN7WebCore21SVGDocumentExtensions18addPendingResourceERKN3WTF12AtomicStringEPNS_16SVGStyledElementE
}
{
   bug_101751
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore14SVGFontElement6createERKNS_13QualifiedNameEPNS_8DocumentE
   fun:_ZN7WebCoreL15fontConstructorERKNS_13QualifiedNameEPNS_8DocumentEb
   fun:_ZN7WebCore17SVGElementFactory16createSVGElementERKNS_13QualifiedNameEPNS_8DocumentEb
   fun:_ZN7WebCore8Document13createElementERKNS_13QualifiedNameEb
}
{
   bug_101781
   Memcheck:Uninitialized
   fun:encode_one_block
   fun:encode_mcu_huff
   fun:compress_data
   fun:process_data_simple_main
   fun:chromium_jpeg_write_scanlines
   fun:_ZN3gfx9JPEGCodec6EncodeEPKhNS0_11ColorFormatEiiiiPSt6vectorIhSaIhEE
   fun:_ZN3gfx24JPEGEncodedDataFromImageERKNS_5ImageE?PSt6vectorIhSaIhEE
   fun:_ZN7history8TopSites12EncodeBitmapEPN3gfx5ImageEP13scoped_refptrIN4base15RefCountedBytesEE
   fun:_ZN7history8TopSites16SetPageThumbnailERK4GURLPN3gfx5ImageERK14ThumbnailScore
   fun:_ZN7history17ExpireHistoryTest14AddExampleDataEP?PN4base4TimeE
   fun:_ZN7history*ExpireHistoryTest_*
}
{
   bug_101781_d
   Memcheck:Uninitialized
   fun:_ZN7testing8internal11CmpHelperGEIddEENS_15AssertionResultEPKcS4_RKT_RKT0_
   fun:_ZN3gfx31JPEGCodec_EncodeDecodeRGBA_Test8TestBodyEv
}
{
   bug_102257
   Memcheck:Uninitialized
   ...
   fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
   fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
}
{
   bug_102327a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN15tracked_objects10ThreadData10InitializeEv
   fun:_ZN15tracked_objects10ThreadData30InitializeAndSetTrackingStatusEb
   fun:_ZN15tracked_objects10ThreadData29ShutdownSingleThreadedCleanupEb
}
{
   bug_102327b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKN15tracked_objects6BirthsENS3_9DeathDataEEEE8allocateE*
   ...
   fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEE6insertESt17_Rb_tree_iteratorIS9_ERKS9_
   fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEEixERS8_
   fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6Births*
   fun:_ZN15tracked_objects10ThreadData3?TallyRun*IfTrackingE*
}
{
   bug_102327c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN15tracked_objects10ThreadData11TallyABirthERKNS_8LocationE
   fun:_ZN15tracked_objects10ThreadData19TallyABirthIfActiveERKNS_8LocationE
}
{
   Intentional leak of stl map during thread cleanup in profiler
   Memcheck:Leak
   fun:_Znw*
   fun:_ZNK15tracked_objects10ThreadData26OnThreadTerminationCleanupEv
}
{
   bug_102614
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN12*FinishPepperFlashUpdateRegistrationEP22ComponentUpdateServiceRK7Version
}
{
   bug_102831_a
   Memcheck:Leak
   ...
   fun:_ZN17PluginLoaderPosix19LoadPluginsInternalEv
}
{
   bug_103192
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN17PluginServiceImpl10GetPluginsERKN4base8CallbackIFvRKSt6vectorIN6webkit13WebPluginInfoESaIS4_EEEEE
}
{
   bug_103467
   Memcheck:Uninitialized
   fun:_ZNK7WebCore12NamedNodeMap20mappedMapsEquivalentEPKS0_
   fun:_ZNK7WebCore16CSSStyleSelector24canShareStyleWithElementE*
   fun:_ZNK7WebCore16CSSStyleSelector26findSiblingForStyleSharingEPNS_4NodeERj
}
{
   bug_104447
   Memcheck:Leak
   ...
   fun:HB_OpenTypeShape
   fun:arabicSyriacOpenTypeShape
   fun:HB_ArabicShape
   fun:HB_ShapeItem
   fun:_ZN7WebCore21ComplexTextController11shapeGlyphsEv
   fun:_ZN7WebCore21ComplexTextController13nextScriptRunEv
   fun:_ZN7WebCore21ComplexTextController14widthOfFullRunEv
   fun:_ZNK7WebCore4Font24floatWidthForComplexTextERKNS_7TextRunEPN3WTF7HashSetIPKNS_14SimpleFontDataENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE
   fun:_ZNK7WebCore4Font5widthERKNS_7TextRunERiRN3WTF6StringE
   fun:_ZN7WebCore14SVGTextMetricsC1EPNS_19RenderSVGInlineTextERKNS_7TextRunE
   fun:_ZN7WebCore14SVGTextMetrics21measureCharacterRangeEPNS_19RenderSVGInlineTextEjj
   fun:_ZNK7WebCore30SVGTextLayoutAttributesBuilder25propagateLayoutAttributesEPNS_12RenderObjectERN3WTF6VectorINS_23SVGTextLayoutAttributesELm0EEERjRt
}
{
   # ProcessSingleton::LinuxWatcher is marked DeleteOnIOThread.  Sometimes it
   # leaks on shutdown instead of getting deleted.  The destructor doesn't do
   # anything important, so this shouldn't be a big deal.
   bug_104578
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN16ProcessSingletonC1ERK8FilePath
   fun:_ZN22ChromeBrowserMainParts20PreCreateThreadsImplEv
}
{
   bug_104806_a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN15tracked_objects10ThreadData19TallyABirthIfActiveERKNS_8LocationE
   fun:_ZN4base12TrackingInfoC2ERKN15tracked_objects8LocationENS_9TimeTicksE
}
{
   bug_104806_b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEEixERS8_
   fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6BirthsEii
   fun:_ZN15tracked_objects10ThreadData32TallyRunOnWorkerThreadIfTrackingEPKNS_6BirthsERKNS_11TrackedTimeES6_S6_
}
{
   bug_105715
   Memcheck:Uninitialized
   ...
   fun:vfprintf
   fun:__vsnprintf_chk
   fun:_ZN4base9vsnprintfEPcjPKcS0_
   fun:_ZN4base12_GLOBAL__N_110vsnprintfTEPcjPKcS1_
   fun:_ZN4base12_GLOBAL__N_1L14StringAppendVTISsEEvPT_PKNS2_10value_typeEPc
   fun:_ZN4base13StringAppendVEPSsPKcPc
   fun:_ZN4base13StringAppendFEPSsPKcz
   fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
   fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
   fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
   fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
   fun:_ZN4base10JSONWriter16WriteWithOptionsEPKNS_5ValueEbiPSs
   fun:_ZN25JSONStringValueSerializer17SerializeInternalERKN4base5ValueEb
   fun:_ZN25JSONStringValueSerializer9SerializeERKN4base5ValueE
   fun:_ZN18jstemplate_builder12AppendJsonJSEPKN4base15DictionaryValueEPSs
   fun:_ZN19OptionsUIHTMLSource16StartDataRequestERKSsbi
   fun:_ZN4base8internal15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEE3RunEPS3_S5_RKbRKi
   fun:_ZN4base8internal12InvokeHelperILb0EvNS0_15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEEEFvRKPS4_S6_RKbRKiEE8MakeItSoES9_SC_S6_SE_SG_
   fun:_ZN4base8internal7InvokerILi4ENS0_9BindStateINS0_15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEEEFvPS5_S7_biEFvSB_SsbiEEESC_E3RunEPNS0_13BindStateBaseE
   fun:_ZNK4base8CallbackIFvvEE3RunEv
}
{
   bug_105744b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZNSt6vector*9push_back*
   fun:_ZN4skia19ConvolutionFilter1D9AddFilterEiPKsi
   fun:_ZN4skia12_GLOBAL__N_112ResizeFilter14ComputeFiltersEiiiffPNS_19ConvolutionFilter1DE
   fun:_ZN4skia12_GLOBAL__N_112ResizeFilterC1ENS_15ImageOperations12ResizeMethodEiiiiRK7SkIRect
   fun:_ZN4skia15ImageOperations11ResizeBasicERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
   fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
   fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEii
   fun:_ZN24ChromeRenderViewObserver21CaptureFrameThumbnailEPN6WebKit7WebViewEiiP8SkBitmapP14ThumbnailScore
   fun:_ZN24ChromeRenderViewObserver16CaptureThumbnailEv
   fun:_ZN24ChromeRenderViewObserver15CapturePageInfoEib
}
{
   bug_105907
   Memcheck:Uninitialized
   ...
   fun:_ZN4skia14BGRAConvolve2DEPKhibRKNS_19ConvolutionFilter1DES4_iPhb
   fun:_ZN4skia15ImageOperations11ResizeBasicERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
   fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
   fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEii
   fun:_ZNK7WebCore15NativeImageSkia13resizedBitmapERK7SkIRectiiS3_
   ...
   fun:_ZN7WebCore15GraphicsContext*
}
{
   bug_106183a
   Memcheck:Uninitialized
   fun:_ZN7WebCore13RenderMarquee18updateMarqueeStyleEv
   fun:_ZN7WebCore11RenderLayer12styleChangedENS_15StyleDifferenceEPKNS_11RenderStyleE
   fun:_ZN7WebCore20RenderBoxModelObject14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
   fun:_ZN7WebCore9RenderBox14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
   fun:_ZN7WebCore11RenderBlock14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
   fun:_ZN7WebCore12RenderObject8setStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
}
{
   bug_106183b
   Memcheck:Uninitialized
   fun:_ZN7WebCore21ComplexTextController*
   ...
   fun:_ZNK7WebCore4Font27selectionRectForComplexTextERKNS_7TextRunERKNS_10FloatPointEiii
   fun:_ZNK7WebCore4Font20selectionRectForTextERKNS_7TextRunERKNS_10FloatPointEiii
   fun:_ZNK7WebCore13InlineTextBox17positionForOffsetEi
   fun:_ZN7WebCore10RenderText14localCaretRectEPNS_9InlineBoxEiPi
   fun:_ZNK7WebCore15VisiblePosition14localCaretRectERPNS_12RenderObjectE
   fun:_ZN7WebCore9CaretBase15updateCaretRectEPNS_8DocumentERKNS_15VisiblePositionE
   fun:_ZN7WebCore14FrameSelection14localCaretRectEv
   fun:_ZN7WebCore14FrameSelection18recomputeCaretRectEv
   fun:_ZN7WebCore14FrameSelection16updateAppearanceEv
}
{
   bug_106183c
   Memcheck:Uninitialized
   fun:_ZN7WebCore21ComplexTextController*
   ...
   fun:_ZNK7WebCore4Font15drawComplexTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZN7WebCore15GraphicsContext8drawTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZN7WebCoreL20paintTextWithShadowsEPNS_15GraphicsContextERKNS_4FontERKNS_7TextRunERKN3WTF12AtomicStringEiiiiRKNS_10FloatPointERKNS_9FloatRectEPKNS_10ShadowDataEbb
   ...
   fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS_8IntPointE
   fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_8IntPointE
   fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_8IntPointE
   fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
}
{
   bug_106402
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE17NewCallbackHelperINS5_11Dispatcher1IMS3_FviRKNS1_12HostResourceEES8_EEEENS_18CompletionCallbackERKT_
   fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE11NewCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
   fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE19NewOptionalCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
   fun:_ZN5ppapi5proxy38EnterHostFromHostResourceForceCallbackINS_5thunk18PPB_Graphics2D_APIEEC1IN2pp25CompletionCallbackFactoryINS0_20PPB_Graphics2D_ProxyENS0_26ProxyNonThreadSafeRefCountEEEMS8_FviRKNS_12HostResourceEESB_EESD_RT_T0_RKT1_
   fun:_ZN5ppapi5proxy20PPB_Graphics2D_Proxy14OnHostMsgFlushERKNS_12HostResourceE
}
{
   bug_106552
   Memcheck:Uninitialized
   ...
   fun:_ZN25JSONStringValueSerializer17SerializeInternalERKN4base5ValueEb
   fun:_ZN25JSONStringValueSerializer9SerializeERKN4base5ValueE
   fun:_ZN13JsonPrefStore13SerializeDataEPSs
   fun:_ZN19ImportantFileWriter16DoScheduledWriteEv
   fun:_ZN13JsonPrefStore18CommitPendingWriteEv
   fun:_ZN13JsonPrefStoreD0Ev
   fun:_ZNK4base10RefCountedI9PrefStoreE7ReleaseEv
   fun:_ZN13scoped_refptrI19PersistentPrefStoreEaSEPS0_
   fun:_ZN11PrefServiceD0Ev
   fun:_ZN10scoped_ptrI11PrefServiceED1Ev
   fun:_ZN14TestingProfileD2Ev
   fun:_ZN23ExtensionTestingProfileD0Ev
}
{
   bug_107503
   Memcheck:Uninitialized
   ...
   fun:_ZN7WebCore16CSSStyleSelector15styleForElementEPNS_7ElementEPNS_11RenderStyleEbbPNS_12RenderRegionE
   fun:_ZN7WebCore7Element16styleForRendererEv
   fun:_ZN7WebCore7Element11recalcStyleENS_4Node11StyleChangeE
   ...
   fun:_ZN7WebCore7Element11recalcStyleENS_4Node11StyleChangeE
   fun:_ZN7WebCore8Document11recalcStyleENS_4Node11StyleChangeE
   fun:_ZN7WebCore8Document19updateStyleIfNeededEv
}
{
   bug_107696
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore11iBeamCursorEv
   fun:_ZN7WebCore12EventHandler12selectCursorERKNS_28MouseEventWithHitTestResultsEPNS_9ScrollbarE
   fun:_ZN7WebCore12EventHandler20handleMouseMoveEventERKNS_18PlatformMouseEventEPNS_13HitTestResultEb
   fun:_ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventEb
   fun:_ZN6WebKit11WebViewImpl9mouseMoveERKNS_13WebMouseEventE
   fun:_ZN6WebKit11WebViewImpl16handleInputEventERKNS_13WebInputEventE
   fun:_ZN12RenderWidget18OnHandleInputEventERKN3IPC7MessageE
}
{
   bug_107698
   Memcheck:Leak
   fun:malloc
   ...
   fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKN3WTF6StringEiPNS3_7HashMapIPNS_12CSSStyleRuleENS3_6RefPtrINS_17CSSRuleSourceDataEEENS3_7PtrHashIS9_EENS3_10HashTraitsIS9_EENSF_ISC_EEEE
   fun:_ZN7WebCore13CSSStyleSheet17parseStringAtLineERKN3WTF6StringEbi
   fun:_ZN7WebCore13CSSStyleSheet11parseStringERKN3WTF6StringEb
   fun:_ZN7WebCoreL12parseUASheetERKN3WTF6StringE
}
{
   bug_107698a
   Memcheck:Leak
   fun:malloc
   ...
   fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKN3WTF6StringEiPNS3_7HashMapIPNS_12CSSStyleRuleENS3_6RefPtrINS_17CSSRuleSourceDataEEENS3_7PtrHashIS9_EENS3_10HashTraitsIS9_EENSF_ISC_EEEE
   fun:_ZN7WebCore13CSSStyleSheet17parseStringAtLineERKN3WTF6StringEbi
   fun:_ZN7WebCore12StyleElement11createSheetEPNS_7ElementEiRKN3WTF6StringE
   fun:_ZN7WebCore12StyleElement7processEPNS_7ElementE
}
{
   bug_107698b
   Memcheck:Leak
   fun:malloc
   ...
   fun:_ZN3WTF10RefCountedIN7WebCore18StyleSheetInternalEEnwEm
   fun:_ZN7WebCore18StyleSheetInternal6createEv
   fun:_ZN7WebCoreL12parseUASheetERKN3WTF6StringE
}
{
   bug_107699
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   ...
   fun:_ZN7WebCore13AnimationBase17ensurePropertyMapEv
   fun:_ZN7WebCore13AnimationBase16getNumPropertiesEv
   fun:_ZN7WebCore18CompositeAnimation17updateTransitionsEPNS_12RenderObjectEPNS_11RenderStyleES4_
   fun:_ZN7WebCore18CompositeAnimation7animateEPNS_12RenderObjectEPNS_11RenderStyleES4_
   fun:_ZN7WebCore19AnimationController16updateAnimationsEPNS_12RenderObjectEPNS_11RenderStyleE
   fun:_ZN7WebCore12RenderObject18setAnimatableStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
   fun:_ZN7WebCore4Node14setRenderStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
   ...
   fun:_ZN7WebCore7Element11recalcStyleENS_4Node11StyleChangeE
   fun:_ZN7WebCore8Document11recalcStyleENS_4Node11StyleChangeE
   fun:_ZN7WebCore8Document19updateStyleIfNeededEv
   fun:_ZN7WebCore8Document12updateLayoutEv
   fun:_ZN7WebCore8Document36updateLayoutIgnorePendingStylesheetsEv
}
{
   bug_108146a
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN5ppapi5proxy26PPP_Instance_Private_Proxy22OnMsgGetInstanceObjectEiNS0_24SerializedVarReturnValueE
}
{
   bug_108146b
   Memcheck:Param
   write(buf)
   obj:/lib/tls/i686/cmov/libpthread-2.11.1.so
   fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
   fun:_ZN3IPC7Channel4SendEPNS_7MessageE
   fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE
   fun:_ZN3IPC18SendCallbackHelper4SendEv
}
{
   bug_108147
   Memcheck:Uninitialized
   ...
   fun:_ZNK6SkDraw11drawPosTextEPKcmPKffiRK7SkPaint
   fun:_ZN8SkDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
   fun:_ZN8SkCanvas11drawPosTextEPKvmPK7SkPointRK7SkPaint
   fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
   fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
   fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
}
{
   bug_108620
   Memcheck:Uninitialized
   fun:_ZN7WebCore13PlatformEventC2ENS0_4TypeEbbbbd
   fun:_ZN7WebCore18PlatformMouseEventC1ERKNS_8IntPointES3_NS_11MouseButtonENS_13PlatformEvent4TypeEibbbbd
   fun:_ZN7WebCore12EventHandler28fakeMouseMoveEventTimerFiredEPNS_5TimerIS0_EE
   fun:_ZN7WebCore5TimerINS_12EventHandlerEE5firedEv
   fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
   fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
   fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
   fun:_ZN4base9BaseTimerIN11webkit_glue25WebKitPlatformSupportImplELb0EE9TimerTask3RunEv
}
{
   bug_108621
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN3WTF10RefCountedIN7WebCore5EventEEnwEm
   fun:_ZN7WebCore12MessageEvent6createEN3WTF10PassOwnPtrINS1_6VectorINS1_6RefPtrINS_11MessagePortEEELm1EEEEENS1_10PassRefPtrINS_21SerializedScriptValueEEERKNS1_6StringESE_NS9_INS_9DOMWindowEEE
   fun:_ZN7WebCore16PostMessageTimer5eventEPNS_22ScriptExecutionContextE
   fun:_ZN7WebCore9DOMWindow21postMessageTimerFiredEN3WTF10PassOwnPtrINS_16PostMessageTimerEEE
   fun:_ZN7WebCore16PostMessageTimer5firedEv
   fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
   fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
   fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
   fun:_ZN4base9BaseTimerIN11webkit_glue25WebKitPlatformSupportImplELb0EE9TimerTask3RunEv
}
{
   bug_108622
   Memcheck:Leak
   fun:_Zna*
   fun:_ZN2v88internal8NewArrayIhEEPT*
   fun:_ZN2v88internal11RegExpStack14EnsureCapacityEm
   fun:_ZN2v88internal16RegExpStackScopeC1EPNS0_7IsolateE
   fun:_ZN2v88internal26NativeRegExpMacroAssembler7ExecuteEPNS0_4CodeEPNS0_6String*
   fun:_ZN2v88internal26NativeRegExpMacroAssembler5MatchENS0_6HandleINS0_4CodeEEENS2_INS0_6StringEEEPiiiPNS0_7IsolateE
   fun:_ZN2v88internal10RegExpImpl*IrregexpExec*ENS0_6HandleINS0_8JSRegExpEEENS2_INS0_6StringEEEiNS0_6VectorIiEE
   fun:_ZN2v88internal10RegExpImpl12IrregexpExecENS0_6HandleINS0_8JSRegExpEEENS2_INS0_6StringEEEiNS2_INS0_7JSArrayEEE
}
{
   bug_108624
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF6StringEEET_v
   fun:_ZN7WebCore15V8ParameterBasecvN3WTF6StringEEv
   ...
   fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
   fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
   fun:_ZN2v88Function4CallENS_6HandleINS_6ObjectEEEiPNS1_INS_5ValueEEE
   fun:_ZN7WebCore28V8WorkerContextEventListener20callListenerFunctionEPNS_22ScriptExecutionContextEN2v86HandleINS3_5ValueEEEPNS_5EventE
   fun:_ZN7WebCore23V8AbstractEventListener18invokeEventHandlerEPNS_22ScriptExecutionContextEPNS_5EventEN2v86HandleINS5_5ValueEEE
   fun:_ZN7WebCore28V8WorkerContextEventListener11handleEventEPNS_22ScriptExecutionContextEPNS_5EventE
   fun:_ZN7WebCore11EventTarget18fireEventListenersEPNS_5EventEPNS_15EventTargetDataERN3WTF6VectorINS_23RegisteredEventListenerELm1EEE
}
{
   bug_108624a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF6StringEEET_v
   fun:_ZN7WebCore15V8ParameterBasecvN3WTF6StringEEv
   fun:_ZN7WebCore25WebKitBlobBuilderInternal*
}
{
   bug_108627
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF6StringEEET_v
   fun:_ZN7WebCore15V8ParameterBasecvN3WTF6StringEEv
}
{
   bug_108628
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore23v8StringToWebCoreStringEN2v86HandleINS0_6StringEEE
   fun:_ZN7WebCore22v8ValueToWebCoreStringEN2v86HandleINS0_5ValueEEE
   fun:_ZN7WebCore28toWebCoreStringWithNullCheckEN2v86HandleINS0_5ValueEEE
   fun:_ZN7WebCore16V8XMLHttpRequest12sendCallbackERKN2v89ArgumentsE
   fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
   fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
}
{
   bug_109353
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISsEE8allocateE?PKv
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11_M_get_nodeEv
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE14_M_create_nodeERKSs
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKSs
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueERKSs
   fun:_ZNSt3setISsSt4lessISsESaISsEE6insertERKSs
   fun:_ZN19ExtensionDispatcher18OnSetFunctionNamesERKSt6vectorISsSaISsEE
}
{
   bug_109470
   Memcheck:Uninitialized
   ...
   fun:_ZN7WebCore16CSSStyleSelector24applyMatchedDeclarationsERKNS0_11MatchResultE
   fun:_ZN7WebCore16CSSStyleSelector15styleForElementEPNS_7ElementEPNS_11RenderStyleEbb
   fun:_ZN7WebCore7Element16styleForRendererEv
}
{
   bug_109495e
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN3gpu5gles219VertexAttribManager16VertexAttribInfoEEE8allocateEmPKv
   fun:_ZNSt10_List_baseIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE11_M_get_nodeEv
   fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE14_M_create_nodeERKS4_
   fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE6insertESt14_List_iteratorIS4_ERKS4_
   fun:_ZN3gpu5gles219VertexAttribManager16VertexAttribInfo7SetListEPSt4listIPS2_SaIS4_EE
   fun:_ZN3gpu5gles219VertexAttribManager10InitializeEj
   fun:_ZN3gpu5gles216GLES2DecoderImpl10Initialize*
   fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
   fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
}
{
   bug_109495f
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
   fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesE
   fun:_ZN7WebCore17GraphicsContext3D6createENS0_10AttributesEPNS_10HostWindowENS0_11RenderStyleE
   fun:_ZN7WebCore21WebGLRenderingContext6createEPNS_17HTMLCanvasElementEPNS_22WebGLContextAttributesE
   fun:_ZN7WebCore17HTMLCanvasElement10getContextERKN3WTF6StringEPNS_23CanvasContextAttributesE
   fun:_ZN7WebCore19V8HTMLCanvasElement18getContextCallbackERKN2v89ArgumentsE
}
{
   bug_109495g
   Memcheck:Leak
   ...
   fun:_ZN9TCompiler22InitBuiltInSymbolTableERK18ShBuiltInResources
   fun:_ZN9TCompiler4InitERK18ShBuiltInResources
   fun:ShConstructCompiler
}
{
   bug_109496
   Memcheck:Uninitialized
   ...
   fun:_ZN7WebCore11ImageBuffer27platformTransformColorSpaceERKN3WTF6VectorIiLm0EEE
   fun:_ZN7WebCore11ImageBuffer19transformColorSpaceENS_10ColorSpaceES1_
   fun:_ZN7WebCore23RenderSVGResourceFilter17postApplyResourceEPNS_12RenderObjectERPNS_15GraphicsContextEtPKNS_4PathEPKNS_14RenderSVGShapeE
   ...
   fun:_ZN7WebCore14RenderSVGShape5paintERNS_9PaintInfoERKNS_*
   ...
   fun:_ZN7WebCore13RenderSVGRoot*paint*PaintInfoERKNS_*
}
{
   bug_109613
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN34AutofillProfileSyncableServiceTest5SetUpEv
}
{
   bug_109872
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN18BrowserProcessImpl29ResourceDispatcherHostCreatedEv
   fun:_ZN6chrome26ChromeContentBrowserClient29ResourceDispatcherHostCreatedEv
   fun:_ZN22ResourceDispatcherHost*
   ...
   fun:_ZN7content15BrowserMainLoop21BrowserThreadsStartedEv
   fun:_ZN7content15BrowserMainLoop*
   ...
   fun:_Z11BrowserMainRKN7content18MainFunctionParamsE
}
{
   bug_110734
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN15StartupTimeBomb3ArmERKN4base9TimeDeltaE
   fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
}
{
   bug_111037a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN22PpapiPluginProcessHost16CreateBrokerHostERKN7content16PepperPluginInfoE
   fun:_ZN17PluginServiceImpl29FindOrStartPpapiBrokerProcessERK8FilePath
   fun:_ZN17PluginServiceImpl24OpenChannelToPpapiBrokerERK8FilePathPN22PpapiPluginProcessHost12BrokerClientE
}
{
   bug_111037b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN22PpapiPluginProcessHost16CreatePluginHostERKN7content16PepperPluginInfoEPN3net12HostResolverE
   fun:_ZN17PluginServiceImpl29FindOrStartPpapiPluginProcessERK8FilePathPN22PpapiPluginProcessHost12PluginClientE
   fun:_ZN17PluginServiceImpl24OpenChannelToPpapiPluginERK8FilePathPN22PpapiPluginProcessHost12PluginClientE
}
{
   bug_111037c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN17PluginServiceImpl29FindOrStartNpapiPluginProcessERK8FilePath
   fun:_ZN17PluginServiceImpl25FinishOpenChannelToPluginERK8FilePathPN17PluginProcessHost6ClientE
}
{
   bug_111037d
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN20KeyUtilityClientImpl27StartUtilityProcessInternalEv
}
{
   bug_111186
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7leveldb12_GLOBAL__N_111ChromiumEnv11StartThreadEPFvPvES2_
   fun:_ZN7leveldb12_GLOBAL__N_111ChromiumEnv8ScheduleEPFvPvES2_
   fun:_ZN7leveldb6DBImpl23MaybeScheduleCompactionEv
   fun:_ZN7leveldb6DBImpl16MakeRoomForWriteEb
   fun:_ZN7leveldb6DBImpl5WriteERKNS_12WriteOptionsEPNS_10WriteBatchE
   fun:_ZN17LeveldbValueStore9WriteToDbEPN7leveldb10WriteBatchE10scoped_ptrISt6vectorI16ValueStoreChangeSaIS5_EEE
   fun:_ZN17LeveldbValueStore3SetEiRKSsRKN4base5ValueE
   fun:_ZN10extensions28SettingsStorageQuotaEnforcer3SetEiRKSsRKN4base5ValueE
   fun:_ZN10extensions23SyncableSettingsStorage3SetEiRKSsRKN4base5ValueE
}
{
   bug_111341
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN7WebCore17ClipboardChromiumnwEm
   fun:_ZN7WebCore17ClipboardChromium6createENS_9Clipboard13ClipboardTypeEN3WTF10PassRefPtrINS_18ChromiumDataObjectEEENS_21ClipboardAccessPolicyEPNS_5FrameE
}
{
   bug_111669
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN8appcache17AppCacheDiskCache10ActiveCall17OnAsyncCompletionEi
}
{
   bug_112278
   Memcheck:Uninitialized
   fun:fetch_texel_2d_f_rgba8888
   fun:sample_2d_linear
   fun:sample_linear_2d
   fun:fetch_texel_lod
   fun:fetch_texel
   fun:_mesa_execute_program
   fun:run_program
   fun:_swrast_exec_fragment_program
   fun:shade_texture_span
   fun:_swrast_write_rgba_span
   fun:general_triangle
   fun:_swrast_validate_triangle
   fun:_swrast_Triangle
   fun:triangle_rgba
   fun:_tnl_render_triangles_elts
   fun:run_render
   fun:_tnl_run_pipeline
   fun:_tnl_draw_prims
   fun:_tnl_vbo_draw_prims
   fun:vbo_validated_drawrangeelements
   fun:vbo_exec_DrawElements
   fun:neutral_DrawElements
}
{
   bug_112278b
   Memcheck:Uninitialized
   fun:fetch_texel_2d_f_rgba8888
   fun:sample_2d_nearest
   fun:sample_nearest_2d
   fun:fetch_texel_lod
   fun:fetch_texel
   fun:_mesa_execute_program
   fun:run_program
   fun:_swrast_exec_fragment_program
   fun:shade_texture_span
   fun:_swrast_write_rgba_span
   fun:general_triangle
   fun:_swrast_validate_triangle
   fun:_swrast_Triangle
   fun:triangle_rgba
   fun:_tnl_render_tri_fan_verts
   fun:run_render
   fun:_tnl_run_pipeline
   fun:_tnl_draw_prims
   fun:_tnl_vbo_draw_prims
   fun:vbo_exec_DrawArrays
   fun:neutral_DrawArrays
   fun:glDrawArrays
}
{
   bug_112315
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN2v88internal21NativeObjectsExplorer18FindOrAddGroupInfoEPKc
   ...
   fun:_ZN2v88internal21NativeObjectsExplorer27IterateAndExtractReferencesEPNS0_23SnapshotFillerInterfaceE
   fun:_ZN2v88internal21HeapSnapshotGenerator25CountEntriesAndReferencesEv
   fun:_ZN2v88internal21HeapSnapshotGenerator16GenerateSnapshotEv
   fun:_ZN2v88internal12HeapProfiler16TakeSnapshotImplEPKciPNS_15ActivityControlE
   ...
   fun:_ZN2v88internal12HeapProfiler12TakeSnapshotEPNS0_6StringEiPNS_15ActivityControlE
   fun:_ZN2v812HeapProfiler12TakeSnapshotENS_6HandleINS_6StringEEENS_12HeapSnapshot4TypeEPNS_15ActivityControlE
   fun:_ZL13GetNumObjectsPKc
}
{
   bug_112450_b
   Memcheck:Unaddressable
   fun:_ZN7WebCore15PlatformSupport25loadPlatformAudioResourceEPKcd
   fun:_ZN7WebCore8AudioBus20loadPlatformResourceEPKcf
   fun:_ZN7WebCore13HRTFElevation35calculateKernelsForAzimuthElevationEiifRKN3WTF6StringERNS1_6RefPtrINS_10HRTFKernelEEES8_
   fun:_ZN7WebCore13HRTFElevation16createForSubjectERKN3WTF6StringEif
   fun:_ZN7WebCore12HRTFDatabaseC1Ef
   fun:_ZN7WebCore12HRTFDatabase6createEf
   fun:_ZN7WebCore18HRTFDatabaseLoader4loadEv
   fun:_ZN7WebCoreL19databaseLoaderEntryEPv
   fun:_ZN3WTFL16threadEntryPointEPv
}
{
   bug_112594_a
   Memcheck:Leak
   ...
   fun:NPP_New
   fun:_ZN6webkit5npapi14PluginInstance7NPP_NewEtsPPcS3_
   fun:_ZN6webkit5npapi14PluginInstance5StartERK4GURLPPcS6_ib
   fun:_ZN6webkit5npapi21WebPluginDelegateImpl10InitializeERK4GURLRKSt6vectorISsSaISsEES9_PNS0_9WebPluginEb
   fun:_ZN6webkit5npapi13WebPluginImpl10initializeEPN6WebKit18WebPluginContainerE
   fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
   fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
   fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
   fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
}
{
   bug_112594_b
   Memcheck:Unaddressable
   fun:_ZN6webkit5npapi13WebPluginImpl24HandleURLRequestInternalEPKcS3_S3_S3_jibNS1_8ReferrerEbb
   fun:_ZN6webkit5npapi13WebPluginImpl16HandleURLRequestEPKcS3_S3_S3_jibb
   fun:_ZN6webkit5npapi14PluginInstance10RequestURLEPKcS3_S3_S3_jbPv
   fun:GetURLNotify
   fun:NPN_GetURLNotify
   fun:_ZN10PluginTest16NPN_GetURLNotifyEPKcS1_Pv
   fun:_ZN34GetURLNotifyWithURLThatFailsToLoad7NPP_NewEPctsPS0_S1_P12_NPSavedData
   fun:NPP_New
   fun:_ZN6webkit5npapi14PluginInstance7NPP_NewEtsPPcS3_
   fun:_ZN6webkit5npapi14PluginInstance5StartERK4GURLPPcS6_ib
   fun:_ZN6webkit5npapi21WebPluginDelegateImpl10InitializeERK4GURLRKSt6vectorISsSaISsEES9_PNS0_9WebPluginEb
   fun:_ZN6webkit5npapi13WebPluginImpl10initializeEPN6WebKit18WebPluginContainerE
   fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
   fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
   fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
   fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
}
{
   bug_112594_c
   Memcheck:Unaddressable
   fun:_ZN27DocumentOpenInDestroyStream17NPP_DestroyStreamEP9_NPStreams
   fun:NPP_DestroyStream
   fun:_ZN6webkit5npapi14PluginInstance17NPP_DestroyStreamEP9_NPStreams
   fun:_ZN6webkit5npapi12PluginStream5CloseEs
   fun:_ZN6webkit5npapi15PluginStreamUrl5CloseEs
   fun:_ZN6webkit5npapi15PluginStreamUrl16DidFinishLoadingEv
   fun:_ZN6webkit5npapi13WebPluginImpl16didFinishLoadingEPN6WebKit12WebURLLoaderEd
}
{
   bug_112594_d
   Memcheck:Leak
   fun:malloc
   fun:NPN_MemAlloc
   fun:_ZL13testEnumerateP8NPObjectPPPvPj
   fun:_ZN7WebCore26npObjectPropertyEnumeratorERKN2v812AccessorInfoEb
   ...
   fun:_ZN2v88internal28Runtime_GetPropertyNamesFastENS0_9ArgumentsEPNS0_7IsolateE
}
{
   bug_112573
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN2v88internal2OS15CreateSemaphoreEi
   fun:_ZN2v88internal8ProfilerC1EPNS0_7IsolateE
   fun:_ZN2v88internal6Logger5SetUpEv
   fun:_ZN2v88internal7Isolate4InitEPNS0_12DeserializerE
   fun:_ZN2v88internal2V810InitializeEPNS0_12DeserializerE
   fun:_ZN2v88internal8Snapshot11DeserializeEPKhi
   fun:_ZN2v88internal8Snapshot10InitializeEPKc
   fun:_ZN2v8L16InitializeHelperEv
   fun:_ZN2v8L27EnsureInitializedForIsolateEPNS_8internal7IsolateEPKc
   fun:_ZN2v82V818AddMessageListenerEPFvNS_6HandleINS_7MessageEEENS1_INS_5ValueEEEES5_
   fun:_ZN7WebCore27WorkerContextExecutionProxy19initContextIfNeededEv
   fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKN3WTF6StringES4_RKNS1_12TextPositionEPNS_27WorkerContextExecutionStateE
   fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeEPNS_11ScriptValueE
   fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeE
   fun:_ZN7WebCore12WorkerThread12workerThreadEv
   fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
   fun:_ZN3WTFL16threadEntryPointEPv
}
{
   bug_112835
   Memcheck:Unaddressable
   ...
   fun:_ZN6WebKit31WorkerFileSystemCallbacksBridge4stopEv
   fun:_ZN6WebKit31WorkerFileSystemContextObserver10notifyStopEv
   fun:_ZN7WebCore13WorkerContext21notifyObserversOfStopEv
   fun:_ZN7WebCore29WorkerThreadShutdownStartTask11performTaskEPNS_22ScriptExecutionContextE
   fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskERKS0_PNS_22ScriptExecutionContextE
   fun:_ZN7WebCore13WorkerRunLoop15runCleanupTasksEPNS_13WorkerContextE
}
{
   bug_113076
   Memcheck:Uninitialized
   fun:_ZL19ConvertYUVToRGB32_ChhhPh
   fun:LinearScaleYUVToRGB32RowWithRange_C
   fun:_ZN5media23ScaleYUVToRGB32WithRectEPKhS1_S1_Phiiiiiiiiiii
   fun:_ZN8remoting29ConvertAndScaleYUVToRGB32RectEPKhS1_S1_iiRK7SkTSizeIiERK7SkIRectPhiS5_S8_S8_
   fun:_ZN8remoting14YuvToRgbTester7RunTestE7SkTSizeIiERK7SkIRect
}
{
   bug_115251_1
   Memcheck:Uninitialized
   ...
   fun:vp8cx_encode_intra_macro_block
}
{
   bug_115251_2
   Memcheck:Uninitialized
   ...
   fun:write_kfmodes
   fun:vp8_pack_bitstream
   fun:encode_frame_to_data_rate
   fun:vp8_get_compressed_data
   fun:vp8e_encode
   fun:vpx_codec_encode
}
{
   bug_115294
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN17AudioRendererHost14OnCreateStreamEiRK15AudioParameters
}
{
   bug_115419_1
   Memcheck:Uninitialized
   fun:fetch_texel_2d_f_rgba8888
   fun:texture_get_row
   fun:fast_read_rgba_pixels
   fun:read_rgba_pixels
   fun:_swrast_ReadPixels
   fun:_mesa_ReadPixels
   fun:glReadPixels
   fun:_ZN3gpu5gles216GLES2DecoderImpl16HandleReadPixelsEjRKNS0_10ReadPixelsE
   fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
   fun:_ZN3gpu13CommandParser14ProcessCommandEv
   fun:_ZN3gpu12GpuScheduler10PutChangedEv
   fun:_ZN6webkit3gpu18GLInProcessContext12PumpCommandsEv
}
{
   bug_115419_2
   Memcheck:Uninitialized
   fun:get_src_arg_mask
   fun:_mesa_remove_extra_move_use
   fun:_mesa_optimize_program
   fun:_Z16get_mesa_programP14__GLcontextRecP17gl_shader_programP9gl_shader
   fun:_mesa_ir_link_shader
   fun:_mesa_glsl_link_shader
   fun:link_program
   fun:_mesa_LinkProgramARB
   fun:glLinkProgram
   ...
   fun:_ZN3gpu5gles216GLES2DecoderImpl13DoLinkProgramEj
   fun:_ZN3gpu5gles216GLES2DecoderImpl17HandleLinkProgramEjRKNS0_11LinkProgramE
   fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
   fun:_ZN3gpu13CommandParser14ProcessCommandEv
   fun:_ZN3gpu12GpuScheduler10PutChangedEv
   fun:_ZN6webkit3gpu18GLInProcessContext12PumpCommandsEv
}
{
   bug_116475
   Memcheck:Uninitialized
   ...
   fun:_ZNK4base9Histogram11BucketIndexEi
   fun:_ZN4base9Histogram3AddEi
   fun:_ZN11webkit_glue25WebKitPlatformSupportImpl21histogramCustomCountsEPKciiii
   fun:_ZN7WebCore15PlatformSupport21histogramCustomCountsEPKciiii
   fun:_ZN7WebCore19CCLayerTreeHostImpl20optimizeRenderPasses*
   fun:_ZN7WebCore19CCLayerTreeHostImpl10drawLayersEv
   fun:_ZN7WebCore19CCSingleThreadProxy11doCompositeEv
}
{
   bug_118890_a
   Memcheck:Leak
   ...
   fun:_ZN8notifier18SingleLoginAttemptC1EPNS_13LoginSettingsEPNS0_8DelegateE
   fun:_ZN8notifier5Login15StartConnectionEv
   fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
}
{
   bug_118890_b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN13sync_notifier12_GLOBAL__N_124InvalidationNotifierTest5SetUpEv
}
{
   bug_120146
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
   fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
   fun:_ZN5media21AudioOutputController5CloseERKN4base8CallbackIFvvEEE
   fun:_ZN17AudioRendererHost20CloseAndDeleteStreamEPNS_10AudioEntryE
   fun:_ZN17AudioRendererHost13DeleteEntriesEv
   fun:_ZN17AudioRendererHost16OnChannelClosingEv
   fun:_ZN3IPC12ChannelProxy7Context15OnChannelClosedEv
}
{
   bug_121729
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocE*
   ...
   fun:_ZN7WebCoreL12parseUASheetERKN3WTF6StringE
   fun:_ZN7WebCoreL12parseUASheetEPKcj
   fun:_ZN7WebCoreL19loadViewSourceStyleEv
   ...
   fun:_ZN7WebCore7Element16styleForRendererEv
}
{
   bug_122177
   Memcheck:Leak
   ...
   fun:_ZN7history16InMemoryURLIndex23PostSaveToCacheFileTaskEv
   fun:_ZN7history16InMemoryURLIndex8ShutDownEv
   fun:_ZN14HistoryService13UnloadBackendEv
   fun:_ZN14HistoryService7CleanupEv
}
{
   bug_122189
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN6WebKit16ChromeClientImpl18createColorChooserEPN7WebCore18ColorChooserClientERKNS1_5ColorE
   fun:_ZN7WebCore6Chrome18createColorChooserEPNS_18ColorChooserClientERKNS_5ColorE
   fun:_ZN7WebCore14ColorInputType22handleDOMActivateEventEPNS_5EventE
   fun:_ZN7WebCore16HTMLInputElement19defaultEventHandlerEPNS_5EventE
   fun:_ZN7WebCore15EventDispatcher13dispatchEventEN3WTF10PassRefPtrINS_5EventEEE
   fun:_ZNK7WebCore21EventDispatchMediator13dispatchEventEPNS_15EventDispatcherE
}
{
   bug_122192
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
   fun:_ZN14webkit_support23CreateGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesEPNS0_7WebViewEb
   fun:_ZN11WebViewHost23createGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesE
   fun:_ZN6WebKit11WebViewImpl33createCompositorGraphicsContext3DEv
   fun:_ZN6WebKit11WebViewImpl15createContext3DEv
}
{
   bug_122195
   Memcheck:Leak
   ...
   fun:_ZNSt3*insert*
   fun:_ZN3gpu5gles219GLES2Implementation15GetStringHelperEj
   fun:_ZN3gpu5gles219GLES2Implementation9GetStringEj
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl9getStringEj
   fun:_ZN7WebCore24GraphicsContext3DPrivate9getStringEj
   fun:_ZN7WebCore24GraphicsContext3DPrivate20initializeExtensionsEv
   fun:_ZN7WebCore24GraphicsContext3DPrivate17supportsExtensionERKN3WTF6StringE
   fun:_ZN7WebCore20Extensions3DChromium8supportsERKN3WTF6StringE
}
{
   bug_122201
   Memcheck:Unaddressable
   fun:_ZN3WTF17ChromiumThreading16callOnMainThreadEPFvPvES1_
   fun:_ZN3WTF16callOnMainThreadEPFvPvES0_
}
{
   bug_122245a
   Memcheck:Uninitialized
   ...
   fun:_ZN15SkScalerContext15internalGetPathERK7SkGlyphP6SkPathS4_P8SkMatrix
   fun:_ZN15SkScalerContext10getMetricsEP7SkGlyph
   fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
}
{
   bug_122245b
   Memcheck:Uninitialized
   ...
   fun:_ZNK6SkRect8roundOutEP7SkIRect
   fun:_ZN15SkScalerContext10getMetricsEP7SkGlyph
   fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
   fun:_ZN12SkGlyphCache17getGlyphIDMetricsEt
   fun:_ZL22sk_getMetrics_glyph_00P12SkGlyphCachePPKcii
   fun:_ZNK6SkDraw11drawPosTextEPKcmPKffiRK7SkPaint
   fun:_ZN8SkDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
   fun:_ZN11SkGpuDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
   fun:_ZN8SkCanvas11drawPosTextEPKvmPK7SkPointRK7SkPaint
   fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
   fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
   fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
   fun:_ZN7WebCore15GraphicsContext12drawBidiTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointE
   fun:_ZN7WebCore24CanvasRenderingContext2D16drawTextInternalERKN3WTF6StringEffbfb
   fun:_ZN7WebCore24CanvasRenderingContext2D10strokeTextERKN3WTF6StringEfff
   fun:_ZN7WebCore32CanvasRenderingContext2DInternalL18strokeTextCallbackERKN2v89ArgumentsE
   fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
   fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
}
{
   bug_122249a
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore23v8StringToWebCoreStringEN2v86HandleINS0_6StringEEE
   fun:_ZN7WebCore22v8ValueToWebCoreStringEN2v86HandleINS0_5ValueEEE
   fun:_ZN7WebCoreL21createIDBKeyFromValueEN2v86HandleINS0_5ValueEEERN3WTF6VectorINS1_INS0_5ArrayEEELm0EEE
   fun:_ZN7WebCore21createIDBKeyFromValueEN2v86HandleINS0_5ValueEEE
}
{
   bug_122249b
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN3WTF10RefCountedIN7WebCore14IDBObjectStoreEEnwEm
   fun:_ZN7WebCore14IDBObjectStore6create*
   fun:_ZN7WebCore11IDBDatabase17createObjectStoreERKN3WTF6StringERKNS_10DictionaryERi
}
{
   bug_122249c
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN25TestWebKitPlatformSupport10idbFactoryEv
   fun:_ZN6WebKit22IDBFactoryBackendProxyC1Ev
   fun:_ZN6WebKit22IDBFactoryBackendProxy6createEv
   fun:_ZN7WebCore15PlatformSupport10idbFactoryEv
   fun:_ZN7WebCore26IDBFactoryBackendInterface6createEv
}
{
   bug_122429
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
   fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesE
   fun:_ZN13TestWebPlugin10initializeEPN6WebKit18WebPluginContainerE
   fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
}
{
   bug_122431
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11WebViewHost12createPluginEPN6WebKit8WebFrameERKNS0_15WebPluginParamsE
   fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
   fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
   fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
   fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
   fun:_ZN7WebCore16HTMLEmbedElement12updateWidgetENS_20PluginCreationOptionE
}
{
   bug_122435a
   Memcheck:Leak
   fun:_Zna*
   fun:_ZN3gpu5gles219VertexAttribManager10InitializeEj
   fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContext*SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
   fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
   fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
}
{
   bug_122435b
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN3gpu5gles219VertexAttribManager16VertexAttribInfoEEE8allocateEmPKv
   fun:_ZNSt10_List_baseIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE11_M_get_nodeEv
   fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE14_M_create_nodeERKS4_
   fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE6insertESt14_List_iteratorIS4_ERKS4_
   fun:_ZN3gpu5gles219VertexAttribManager16VertexAttribInfo7SetListEPSt4listIPS2_SaIS4_EE
   fun:_ZN3gpu5gles219VertexAttribManager6EnableEjb
}
{
   bug_122436
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEEEE8allocateEmPKv
   fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE11_M_get_nodeEv
   fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE14_M_create_nodeERKS7_
   fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE10_M_insert_EPKSt18_Rb_tree_node_baseSG_RKS7_
   fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE16_M_insert_uniqueERKS7_
   fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS7_ERKS7_
   fun:_ZNSt3mapIj10linked_ptrIN3gpu13CommonDecoder6BucketEESt4lessIjESaISt4pairIKjS4_EEE6insertESt17_Rb_tree_iteratorIS9_ERKS9_
   fun:_ZNSt3mapIj10linked_ptrIN3gpu13CommonDecoder6BucketEESt4lessIjESaISt4pairIKjS4_EEEixERS8_
   fun:_ZN3gpu13CommonDecoder12CreateBucketEj
}
{
   bug_122437
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN3gpu19MappedMemoryManager5Alloc*
   fun:_ZN3gpu5gles219GLES2Implementation24MapTexSubImage2DCHROMIUM*
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl24mapTexSubImage2DCHROMIUM*
   fun:_ZN7WebCore24GraphicsContext3DPrivate24mapTexSubImage2DCHROMIUM*
   fun:_ZN7WebCore20Extensions3DChromium24mapTexSubImage2DCHROMIUM*
   fun:_ZN7WebCore20LayerTextureSubImage24uploadWithMapTexSubImageEPKhRKNS_7IntRectES5_S5_jPNS_17GraphicsContext3DE
   fun:_ZN7WebCore20LayerTextureSubImage6uploadEPKhRKNS_7IntRectES5_S5_jPNS_17GraphicsContext3DE
   fun:_ZN7WebCore31BitmapCanvasLayerTextureUpdater17updateTextureRectEPNS_17GraphicsContext3DEPNS_16TextureAllocatorEPNS_14ManagedTextureERKNS_7IntRectES9_
   fun:_ZN7WebCore31BitmapCanvasLayerTextureUpdater7Texture10updateRectEPNS_17GraphicsContext3DEPNS_16TextureAllocatorERKNS_7IntRectES8_
}
{
   bug_122454
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN11GrGLTexture4initEP7GrGpuGLRKNS_4DescEPKN16GrGLRenderTarget4DescE
   fun:_ZN11GrGLTextureC1EP7GrGpuGLRKNS_4DescE
   fun:_ZN7GrGpuGL15onCreateTextureERK13GrTextureDescPKvm
   fun:_ZN5GrGpu13createTextureERK13GrTextureDescPKvm
   fun:_ZN9GrContext20createAndLockTextureEmPK14GrSamplerStateRK13GrTextureDescPvm
   fun:_Z27sk_gr_create_bitmap_textureP9GrContextmPK14GrSamplerStateRK8SkBitmap
   fun:_ZN11SkGpuDevice17lockCachedTextureERK8SkBitmapPK14GrSamplerState
}
{
   bug_122455
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISsEE8allocateEmPKv
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11_M_get_nodeEv
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE14_M_create_nodeERKSs
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKSs
   fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueERKSs
   fun:_ZNSt3setISsSt4lessISsESaISsEE6insertERKSs
   fun:_ZN3gpu5gles219GLES2Implementation32GetRequestableExtensionsCHROMIUMEv
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl32getRequestableExtensionsCHROMIUMEv
   fun:_ZN7WebCore24GraphicsContext3DPrivate20initializeExtensionsEv
   fun:_ZN7WebCore24GraphicsContext3DPrivate17supportsExtensionERKN3WTF6StringE
}
{
   bug_122457
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN3WTF10RefCountedIN7WebCore7ArchiveEEnwEm
   fun:_ZN7WebCore12MHTMLArchive6createEv
   fun:_ZN7WebCore11MHTMLParser22parseArchiveWithHeaderEPNS_10MIMEHeaderE
   fun:_ZN7WebCore11MHTMLParser12parseArchiveEv
   fun:_ZN7WebCore12MHTMLArchive6createERKNS_4KURLEPNS_12SharedBufferE
   fun:_ZN7WebCoreL20archiveFactoryCreateINS_12MHTMLArchiveEEEN3WTF10PassRefPtrINS_7ArchiveEEERKNS_4KURLEPNS_12SharedBufferE
   fun:_ZN7WebCore14ArchiveFactory6createERKNS_4KURLEPNS_12SharedBufferERKN3WTF6StringE
   ...
   fun:_ZN7WebCore14DocumentLoader15finishedLoadingEv
   fun:_ZN7WebCore18MainResourceLoader16didFinishLoadingEd
}
{
   bug_122670
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3WTF11ListHashSetIPN7WebCore12RenderInlineELm256ENS_7PtrHashIS3_EEEC1Ev
   fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS*
   fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS*
   fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS*
   fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS*
}
{
   bug_122716
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorISsE8allocate*
   fun:_ZNSt12_Vector_baseISsSaISsEE11_M_allocate*
   fun:_ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs
   fun:_ZNSt6vectorISsSaISsEE9push_backERKSs
   fun:_ZN4baseL12SplitStringTISsEEvRKT_NS1_10value_typeEbPSt6vectorIS1_SaIS1_EE
}
{
   bug_122717_use_after_free
   Memcheck:Unaddressable
   fun:__pthread_mutex_unlock_usercnt
   fun:_ZN4base8internal8LockImpl6UnlockEv
   fun:_ZN4base4Lock7ReleaseEv
   fun:_ZN4base8AutoLockD1Ev
   fun:_ZN5gdata15GDataFileSystem21RunTaskOnIOThreadPoolERKN4base8CallbackIFvvEEE
}
{
   bug_122717_leak
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
   fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
   fun:_ZN7content13BrowserThread16PostTaskAndReplyENS0_2IDERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESB_
   fun:_ZN5gdata15GDataFileSystem37PostBlockingPoolSequencedTaskAndReplyERKSsRKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESC_
   fun:_ZN5gdata15GDataFileSystem29PostBlockingPoolSequencedTaskERKSsRKN15tracked_objects8LocationERKN4base8CallbackIFvvEEE
   fun:_ZN5gdata15GDataFileSystem8SaveFeedE10scoped_ptrIN4base5ValueEERK8FilePath
   fun:_ZN5gdata15GDataFileSystem14OnGetDocumentsEPNS0_18GetDocumentsParamsENS_14GDataErrorCodeE10scoped_ptrIN4base5ValueEE
}
{
   bug_122733
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorINS_15_Hashtable_nodeISsEEE8allocateEmPKv
   fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE11_M_get_nodeEv
   fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE11_M_new_nodeERKSs
   fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE22insert_unique_noresizeERKSs
   fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE13insert_uniqueERKSs
   fun:_ZN9__gnu_cxx8hash_setISsNS_4hashISsEESt8equal_toISsESaISsEE6insertERKSs
   fun:_ZN13safe_browsing6Scorer6CreateERKN4base16BasicStringPieceISsEE
   fun:_ZN13safe_browsing24PhishingClassifierFilter18OnSetPhishingModelERKSs
}
{
   bug_122733b
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN13safe_browsing15ClientSideModel27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE
   fun:_ZN6google8protobuf11MessageLite14ParseFromArrayEPKvi
   fun:_ZN13safe_browsing6Scorer6CreateERKN4base16BasicStringPieceISsEE
   fun:_ZN13safe_browsing24PhishingClassifierFilter18OnSetPhishingModelERKSs
}
{
   bug_122752a
   Memcheck:Unaddressable
   fun:_ZN6WebKit12CCThreadImpl8postTaskEN3WTF10PassOwnPtrIN7WebCore8CCThread4TaskEEE
   fun:_ZN7WebCore13CCThreadProxy18finishAllRenderingEv
   fun:_ZN7WebCore15CCLayerTreeHost18finishAllRenderingEv
   fun:_ZN6WebKit16WebLayerTreeView18finishAllRenderingEv
   fun:_ZN6WebKit11WebViewImpl33setIsAcceleratedCompositingActiveEb
   fun:_ZN6WebKit11WebViewImpl20setRootGraphicsLayerEPN7WebCore13GraphicsLayerE
}
{
   bug_122752b
   Memcheck:Unaddressable
   fun:_ZN6WebKit12CCThreadImpl8postTaskEN3WTF10PassOwnPtrIN7WebCore8CCThread4TaskEEE
   fun:_ZN7WebCore13CCThreadProxy14setNeedsCommitEv
   fun:_ZN7WebCore15CCLayerTreeHost14setNeedsCommitEv
   fun:_ZN7WebCore13LayerChromium14setNeedsCommitEv
   fun:_ZN7WebCore13LayerChromium11removeChildEPS0_
   fun:_ZN7WebCore13LayerChromium16removeFromParentEv
   fun:_ZN7WebCore21GraphicsLayerChromium16removeFromParentEv
}
{
   bug_123307
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN3WTF16fastZeroedMallocEm
   ...
   fun:_ZN7WebCore12_GLOBAL__N_111V8ObjectMapIN2v86ObjectEjE3setERKNS2_6HandleIS3_EERKj
   fun:_ZN7WebCore12_GLOBAL__N_110Serializer10greyObjectERKN2v86HandleINS2_6ObjectEEE
   fun:_ZN7WebCore12_GLOBAL__N_110Serializer11doSerializeEN2v86HandleINS2_5ValueEEEPNS1_9StateBaseE
   fun:_ZN7WebCore12_GLOBAL__N_110Serializer9serializeEN2v86HandleINS2_5ValueEEE
   fun:_ZN7WebCore21SerializedScriptValueC1EN2v86HandleINS1_5ValueEEEPN3WTF6VectorINS5_6RefPtrINS_11MessagePortEEELm1EEEPNS6_INS7_INS5_11ArrayBufferEEELm1EEERb
   fun:_ZN7WebCore21SerializedScriptValue6createEN2v86HandleINS1_5ValueEEEPN3WTF6VectorINS5_6RefPtrINS_11MessagePortEEELm1EEEPNS6_INS7_INS5_11ArrayBufferEEELm1EEERb
   fun:_ZN7WebCoreL25handlePostMessageCallbackERKN2v89ArgumentsEb
   fun:_ZN7WebCore11V8DOMWindow19postMessageCallbackERKN2v89ArgumentsE
   fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
   fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
}
{
   bug_124445
   Memcheck:Leak
   fun:calloc
   ...
   fun:error_get_my_stack
   ...
   fun:CERT_NewTempCertificate
   ...
   fun:_ZN3net18SSL*SocketNSS*
   fun:_ZN3net18SSL*SocketNSS*
}
{
   bug_123453
   Memcheck:Unaddressable
   fun:_ZN9GrTexture14asRenderTargetEv
   fun:_ZN9GrContext12gaussianBlurEP9GrTextureP20GrAutoScratchTextureS3_RK6SkRectff
   fun:_ZL14filter_textureP9GrContextP9GrTextureP13SkImageFilterRK6SkRect
   fun:_ZN11SkGpuDevice10drawSpriteERK6SkDrawRK8SkBitmapiiRK7SkPaint
   fun:_ZN8SkCanvas10drawSpriteERK8SkBitmapiiPK7SkPaint
}
{
   bug_124156
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN26SimpleResourceLoaderBridge6CreateERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
   fun:_ZN25TestWebKitPlatformSupport20CreateResourceLoaderERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
   fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN6WebKit13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
   fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN6WebKit13WebURLRequestEPNS1_18WebURLLoaderClientE
   fun:_ZN7WebCore22ResourceHandleInternal5startEv
}
{
   bug_124488
   Memcheck:Leak
   fun:malloc
   fun:strdup
   ...
   fun:_ZN34CopyTextureCHROMIUMResourceManager10InitializeEv
   fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContextEERKNS3_4SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
   fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
   fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
   fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
}
{
   bug_124496
   Memcheck:Leak
   fun:_Znw*
   ...
   fun:_ZN8notifier26ProxyResolvingClientSocket23ProcessProxyResolveDoneEi
}
{
   bug_124500
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN9__gnu_cxx13new_allocatorIN6webkit17WebPluginMimeTypeEE8allocateEmPKv
   fun:_ZNSt12_Vector_baseIN6webkit17WebPluginMimeTypeESaIS1_EE11_M_allocateEm
   fun:_ZNSt6vectorIN6webkit17WebPluginMimeTypeESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_
   fun:_ZNSt6vectorIN6webkit17WebPluginMimeTypeESaIS1_EE9push_backERKS1_
   fun:_ZN6webkit5npapi9PluginLib20ParseMIMEDescriptionERKSsPSt6vectorINS_17WebPluginMimeTypeESaIS5_EE
   fun:_ZN6webkit5npapi9PluginLib17ReadWebPluginInfoERK8FilePathPNS_13WebPluginInfoE
   fun:_ZN6webkit5npapi10PluginList14ReadPluginInfoERK8FilePathPNS_13WebPluginInfoEPPKNS0_17PluginEntryPointsE
   fun:_ZN6webkit5npapi10PluginList10LoadPluginERK8FilePathP12ScopedVectorINS0_11PluginGroupEEPNS_13WebPluginInfoE
   fun:_ZN17UtilityThreadImpl13OnLoadPluginsERKSt6vectorI8FilePathSaIS1_EE
}
{
   bug_127716
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN3gfx5ImageC1ERK8SkBitmap
   fun:_ZN16BrowserThemePack16LoadRawBitmapsToERKSt3mapIi8FilePathSt4lessIiESaISt4pairIKiS1_EEEPS0_IiPKN3gfx5ImageES3_SaIS4_IS5_SE_EEE
   fun:_ZN16BrowserThemePack18BuildFromExtensionEPK9Extension
   fun:_ZN45BrowserThemePackTest_CanBuildAndReadPack_Test8TestBodyEv
}
{
   bug_127931
   Memcheck:Unaddressable
   fun:_ZN4base6Thread10ThreadMainEv
   fun:_ZN4base12_GLOBAL__N_110ThreadFuncEPv
}
{
   bug_128145
   Memcheck:Leak
   fun:_Znw*
   fun:_ZNK21WebDataServiceFactory23BuildServiceInstanceForEP7Profile
   fun:_ZN36RefcountedProfileKeyedServiceFactory20GetServiceForProfileEP7Profileb
   fun:_ZN21WebDataServiceFactory13GetForProfileEP7ProfileNS0_17ServiceAccessTypeE
   fun:_ZN12TokenService10InitializeEPKcP7Profile
   fun:_ZN13SigninManager10InitializeEP7Profile
   fun:_ZNK20SigninManagerFactory23BuildServiceInstanceForEP7Profile
   fun:_ZN26ProfileKeyedServiceFactory20GetServiceForProfileEP7Profileb
   fun:_ZN20SigninManagerFactory13GetForProfileEP7Profile
   fun:_ZNK25ProfileSyncServiceFactory23BuildServiceInstanceForEP7Profile
   fun:_ZN26ProfileKeyedServiceFactory20GetServiceForProfileEP7Profileb
   fun:_ZN25ProfileSyncServiceFactory13GetForProfileEP7Profile
   fun:_ZN7BrowserC1ENS_4TypeEP7Profile
   fun:_ZN7Browser6CreateEP7Profile
   fun:_ZN25StartupBrowserCreatorImpl17OpenTabsInBrowserEP7BrowserbRKSt6vectorI10StartupTabSaIS3_EE
   fun:_ZN25StartupBrowserCreatorImpl20ProcessSpecifiedURLsERKSt6vectorI4GURLSaIS1_EE
   fun:_ZN25StartupBrowserCreatorImpl18ProcessStartupURLsERKSt6vectorI4GURLSaIS1_EE
   fun:_ZN25StartupBrowserCreatorImpl17ProcessLaunchURLsEbRKSt6vectorI4GURLSaIS1_EE
   fun:_ZN25StartupBrowserCreatorImpl6LaunchEP7ProfileRKSt6vectorI4GURLSaIS3_EEb
   fun:_ZN21StartupBrowserCreator13LaunchBrowserERK11CommandLineP7ProfileRK8FilePathN7browser7startup16IsProcessStartupENS9_10IsFirstRunEPi
   fun:_ZN21StartupBrowserCreator18ProcessCmdLineImplERK11CommandLineRK8FilePathbP7ProfileRKSt6vectorIS7_SaIS7_EEPiPS_
   fun:_ZN21StartupBrowserCreator5StartERK11CommandLineRK8FilePathP7ProfileRKSt6vectorIS7_SaIS7_EEPi
}
{
   bug_130362
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN12invalidation20NewPermanentCallbackINS_22InvalidationClientImplES1_St4pairINS_6StatusESsEEEPN4base8CallbackIFvT1_EEEPT_MT0_FvS7_E
   fun:_ZN12invalidation22InvalidationClientImpl34ScheduleStartAfterReadingStateBlobEv
   fun:_ZN12invalidation22InvalidationClientImpl5StartEv
   fun:_ZN13sync_notifier24ChromeInvalidationClient5StartERKSsS2_S2_RKSt3mapIN8syncable9ModelTypeElSt4lessIS5_ESaISt4pairIKS5_lEEERKN12browser_sync10WeakHandleINS_24InvalidationStateTrackerEEEPNS0_8ListenerEPNS_11StateWriterE
   fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
   fun:_ZN13sync_notifier31NonBlockingInvalidationNotifier4Core17UpdateCredentialsERKSsS3_
}
{
   bug_130449
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN12invalidation20NewPermanentCallbackINS_22InvalidationClientImplES1_St4pairINS_6StatusESsEEEPN4base8CallbackIFvT1_EEEPT_MT0_FvS7_E
   fun:_ZN12invalidation22InvalidationClientImpl34ScheduleStartAfterReadingStateBlobEv
   fun:_ZN12invalidation22InvalidationClientImpl5StartEv
   fun:_ZN13sync_notifier24ChromeInvalidationClient5StartERKSsS2_S2_RKSt3mapIN8syncable9ModelTypeElSt4lessIS5_ESaISt4pairIKS5_lEEERKN12browser_sync10WeakHandleINS_24InvalidationStateTrackerEEEPNS0_8ListenerE
   fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
   fun:_ZN13sync_notifier31NonBlockingInvalidationNotifier4Core17UpdateCredentialsERKSsS3_
}
{
   bug_130619
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore9ClipRects6createERKS0_
   fun:_ZN7WebCore11RenderLayer15updateClipRectsEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeENS_29OverlayScrollbarSizeRelevancyE
   ...
   fun:_ZNK7WebCore11RenderLayer15parentClipRectsEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeERNS_9ClipRectsENS_29OverlayScrollbarSizeRelevancyE
   fun:_ZNK7WebCore11RenderLayer18backgroundClipRectEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeENS_29OverlayScrollbarSizeRelevancyE
}
{
   bug_131354
   Memcheck:Unaddressable
   fun:_ZN7WebCore8AudioBus20loadPlatformResourceEPKcf
   fun:_ZN7WebCore13HRTFElevation35calculateKernelsForAzimuthElevationEiifRKN3WTF6StringERNS1_6RefPtrINS_10HRTFKernelEEES8_
   fun:_ZN7WebCore13HRTFElevation16createForSubjectERKN3WTF6StringEif
   fun:_ZN7WebCore12HRTFDatabaseC1Ef
   fun:_ZN7WebCore12HRTFDatabase6createEf
   fun:_ZN7WebCore18HRTFDatabaseLoader4loadEv
   fun:_ZN7WebCoreL19databaseLoaderEntryEPv
   fun:_ZN3WTFL16threadEntryPointEPv
   fun:_ZN3WTFL19wtfThreadEntryPointEPv
}
{
   bug_131668
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
   fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
   fun:_ZN7content13BrowserThread16PostTaskAndReplyENS0_2IDERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESB_
   fun:_ZN7history16InMemoryURLIndex28PostRestoreFromCacheFileTaskEv
   fun:_ZN7history16InMemoryURLIndex4InitEv
   fun:_ZN14HistoryService4InitERK8FilePathP15BookmarkServiceb
   fun:_ZN14TestingProfile20CreateHistoryServiceEbb
   fun:_ZN21ShortcutsProviderTest5SetUpEv
}
{
   bug_133167_a
   Memcheck:Uninitialized
   fun:vp8_encode_bool
   fun:pack_inter_mode_mvs
   fun:vp8_pack_bitstream
   fun:encode_frame_to_data_rate
   fun:vp8_get_compressed_data
   fun:vp8e_encode
   fun:vpx_codec_encode
   fun:_ZN8remoting10EncoderVp86EncodeE13scoped_refptrINS_11CaptureDataEEbRKN4base8CallbackIFv10scoped_ptrINS_11VideoPacketEEEEE
   fun:_ZN8remoting14ScreenRecorder8DoEncodeE13scoped_refptrINS_11CaptureDataEE
}
{
   bug_133167_b
   Memcheck:Uninitialized
   ...
   fun:vp8_tokenize_mb
   fun:vp8cx_encode_inter_macroblock
}
{
   bug_133167_c
   Memcheck:Uninitialized
   fun:vp8_dequant_idct_add_uv_block_sse2
   fun:vp8cx_encode_inter_macroblock
}
{
   bug_134717
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN2ui15InputMethodIBus13CreateContextEv
   fun:_ZN2ui15InputMethodIBus4InitEb
}

{
   bug_138032
   Memcheck:Unaddressable
   fun:_ZN7WebCore22WorkerScriptControllerD1Ev
   fun:_ZN3WTF14deleteOwnedPtrIN7WebCore22WorkerScriptControllerEEEvPT_
   fun:_ZN3WTF6OwnPtrIN7WebCore22WorkerScriptControllerEE5clearEv
   fun:_ZN7WebCore13WorkerContext11clearScriptEv
   fun:_ZN7WebCore30WorkerThreadShutdownFinishTask11performTaskEPNS_22ScriptExecutionContextE
   fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskERKS0_PNS_22ScriptExecutionContextE
   ...
   fun:_ZN7WebCore13WorkerRunLoop3runEPNS_13WorkerContextE
   fun:_ZN7WebCore12WorkerThread12runEventLoopEv
   fun:_ZN7WebCore21DedicatedWorkerThread12runEventLoopEv
   fun:_ZN7WebCore12WorkerThread12workerThreadEv
   fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
}
{
   bug_138045
   Memcheck:Unaddressable
   ...
   fun:_ZSteqIcEN9__gnu_cxx11__enable_ifIXsrSt9__is_charIT_E7__valueEbE6__typeERKSbIS3_St11char_traitsIS3_ESaIS3_EESC_
   fun:_ZL12getDirectivePKN2pp5TokenE
   ...
   fun:_ZN2pp15DirectiveParser14parseDirectiveEPNS_5TokenE
   fun:_ZN2pp15DirectiveParser3lexEPNS_5TokenE
   fun:_ZN2pp13MacroExpander8getTokenEPNS_5TokenE
   fun:_ZN2pp13MacroExpander3lexEPNS_5TokenE
   fun:_ZN2pp12Preprocessor3lexEPNS_5TokenE
   fun:_ZL12string_inputPciPv
   fun:_ZL18yy_get_next_bufferPv
   fun:_Z5yylexP7YYSTYPEPv
   fun:_Z7yyparseP13TParseContext
   fun:_Z13glslang_parseP13TParseContext
   fun:_Z14PaParseStringsiPKPKcPKiP13TParseContext
   fun:_ZN9TCompiler7compileEPKPKcii
   fun:ShCompile
   fun:_ZN3gpu5gles216ShaderTranslator9TranslateEPKc
}
{
   bug_138058
   Memcheck:Uninitialized
   ...
   fun:_ZN7WebCore12WebVTTParser22constructTreeFromTokenEPNS_8DocumentE
   fun:_ZN7WebCore12WebVTTParser33createDocumentFragmentFromCueTextERKN3WTF6StringE
   fun:_ZN7WebCore12TextTrackCue12getCueAsHTMLEv
   fun:_ZN7WebCore12TextTrackCue17updateDisplayTreeEf
   fun:_ZN7WebCore16HTMLMediaElement25updateActiveTextTrackCuesEf
}
{
   bug_138060
   Memcheck:Uninitialized
   fun:_NPN_EvaluateHelper
   fun:_NPN_Evaluate
   fun:_ZN6WebKit11WebBindings8evaluateEP4_NPPP8NPObjectP9_NPStringP10_NPVariant
   fun:_ZL13executeScriptPK12PluginObjectPKc
   fun:NPP_Destroy
   fun:_ZN6webkit5npapi14PluginInstance11NPP_DestroyEv
   fun:_ZN6webkit5npapi21WebPluginDelegateImpl15DestroyInstanceEv
   fun:_ZN6webkit5npapi21WebPluginDelegateImplD0Ev
   fun:_ZN6webkit5npapi21WebPluginDelegateImpl15PluginDestroyedEv
   fun:_ZN6webkit5npapi13WebPluginImpl22TearDownPluginInstanceEPN6WebKit12WebURLLoaderE
   fun:_ZN6webkit5npapi13WebPluginImpl12SetContainerEPN6WebKit18WebPluginContainerE
   fun:_ZN6webkit5npapi13WebPluginImpl7destroyEv
   fun:_ZN6WebKit22WebPluginContainerImplD0Ev
   fun:_ZN3WTF10RefCountedIN7WebCore6WidgetEE5derefEv
   fun:_ZNSt4pairIN3WTF6RefPtrIN7WebCore6WidgetEEEPNS2_9FrameViewEED1Ev
   fun:_ZN3WTF9HashTableINS_6RefPtrIN7WebCore6WidgetEEESt4pairIS4_PNS2_9FrameViewEENS_18PairFirstExtractorIS8_EENS_7PtrHashIS4_EENS_14PairHashTraitsINS_10HashTraitsIS4_EENSE_IS7_EEEESF_E15deallocateTableEPS8_i
   fun:_ZN3WTF9HashTableINS_6RefPtrIN7WebCore6WidgetEEESt4pairIS4_PNS2_9FrameViewEENS_18PairFirstExtractorIS8_EENS_7PtrHashIS4_EENS_14PairHashTraitsINS_10HashTraitsIS4_EENSE_IS7_EEEESF_ED1Ev
   fun:_ZN3WTF7HashMapINS_6RefPtrIN7WebCore6WidgetEEEPNS2_9FrameViewENS_7PtrHashIS4_EENS_10HashTraitsIS4_EENS9_IS6_EEED1Ev
   fun:_ZN7WebCore12RenderWidget28resumeWidgetHierarchyUpdatesEv
   fun:_ZN7WebCore7Element6detachEv
   fun:_ZN7WebCore13ContainerNode14detachChildrenEv
   fun:_ZN7WebCore13ContainerNode6detachEv
}
{
   bug_138220_a
   Memcheck:Uninitialized
   fun:_ZNK7WebCore16HTMLInputElement8dataListEv
   fun:_ZNK7WebCore16HTMLInputElement4listEv
   fun:_ZN7WebCore21RenderSliderContainer6layoutEv
   fun:_ZN7WebCore11RenderBlock16layoutBlockChildEPNS_9RenderBoxERNS0_10MarginInfoERNS_20FractionalLayoutUnitES6_
   fun:_ZN7WebCore11RenderBlock19layoutBlockChildrenEbRNS_20FractionalLayoutUnitE
   fun:_ZN7WebCore11RenderBlock11layoutBlockEbNS_20FractionalLayoutUnitE
   fun:_ZN7WebCore11RenderBlock6layoutEv
   fun:_ZN7WebCore12RenderSlider6layoutEv
}
{
   bug_138220_b
   Memcheck:Uninitialized
   fun:_ZNK7WebCore16HTMLInputElement8dataListEv
   fun:_ZNK7WebCore16HTMLInputElement4listEv
   fun:_ZN7WebCore11RenderTheme16paintSliderTicksEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
   fun:_ZN7WebCore24RenderThemeChromiumLinux16paintSliderTrackEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
   fun:_ZN7WebCore11RenderTheme5paintEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
   fun:_ZN7WebCore9RenderBox19paintBoxDecorationsERNS_9PaintInfoERKNS_21FractionalLayoutPointE
   fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_21FractionalLayoutPointE
}
{
   bug_138233_a
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN3WTF10RefCountedIN7WebCore17ScriptProfileNodeEEnwEm
   fun:_ZN7WebCore17ScriptProfileNode6createEPKN2v814CpuProfileNodeE
   fun:_ZNK7WebCore13ScriptProfile4headEv
   fun:_ZN7WebCore23ScriptProfileV8InternalL14headAttrGetterEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
   fun:_ZN2v88internal8JSObject23GetPropertyWithCallbackEPNS0_6ObjectES3_PNS0_6StringE
   fun:_ZN2v88internal6Object11GetPropertyEPS1_PNS0_12LookupResultEPNS0_6StringEP18PropertyAttributes
   fun:_ZN2v88internal6LoadIC4LoadENS0_16InlineCacheStateENS0_6HandleINS0_6ObjectEEENS3_INS0_6StringEEE
   fun:_ZN2v88internal11LoadIC_MissENS0_9ArgumentsEPNS0_7IsolateE
}
{
   bug_138233_b
   Memcheck:Leak
   fun:malloc
   fun:_ZN3WTF10fastMallocEm
   fun:_ZN3WTF10RefCountedIN7WebCore17ScriptProfileNodeEEnwEm
   fun:_ZN7WebCore17ScriptProfileNode6createEPKN2v814CpuProfileNodeE
   fun:_ZNK7WebCore17ScriptProfileNode8childrenEv
   fun:_ZN7WebCore27ScriptProfileNodeV8InternalL16childrenCallbackERKN2v89ArgumentsE
}
{
   bug_138510
   Memcheck:Unaddressable
   fun:_ZN3WTF5DequeI10SavedEventLm0EE6appendIS1_EEvRKT_
   fun:_ZN11EventSender*
   fun:_ZN13CppBoundClass14MemberCallbackI11EventSenderE3runERKN3WTF6VectorI10CppVariantLm0EEEPS5_
   fun:_ZN13CppBoundClass6invokeEPvPK10_NPVariantmPS1_
   fun:_ZN11CppNPObject6invokeEP8NPObjectPvPK10_NPVariantjPS3_
   fun:_ZN7WebCoreL18npObjectInvokeImplERKN2v89ArgumentsENS_18InvokeFunctionTypeE
   fun:_ZN7WebCore21npObjectMethodHandlerERKN2v89ArgumentsE
   fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
   fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
}
{
   bug_138522
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore29v8StringToAtomicWebCoreStringEN2v86HandleINS0_6StringEEE
   fun:_ZN7WebCore28v8ValueToAtomicWebCoreStringEN2v86HandleINS0_5ValueEEE
   fun:_ZN7WebCore23WorkerContextV8InternalL24addEventListenerCallbackERKN2v89ArgumentsE
   fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
   fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
   ...
   fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
   fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
   fun:_ZN2v86Script3RunEv
   fun:_ZN7WebCore27WorkerContextExecutionProxy9runScriptEN2v86HandleINS1_6ScriptEEE
   fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKN3WTF6StringES4_RKNS1_12TextPositionEPNS_27WorkerContextExecutionStateE
   fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeEPNS_11ScriptValueE
   fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeE
   fun:_ZN7WebCore12WorkerThread12workerThreadEv
   fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
   fun:_ZN3WTFL16threadEntryPointEPv
   fun:_ZN3WTFL19wtfThreadEntryPointEPv
}
{
   bug_138712
   Memcheck:Uninitialized
   fun:_ZN7testing8internal11CmpHelperGEIddEENS_15AssertionResultEPKcS4_RKT_RKT0_
   fun:_ZN3gfx30JPEGCodec_EncodeDecodeRGB_Test8TestBodyEv
}
{
   bug_138720
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN4base22PosixDynamicThreadPool7AddTaskEPNS_11PendingTaskE
   fun:_ZN4base22PosixDynamicThreadPool8PostTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEE
   fun:_ZN4base12_GLOBAL__N_114WorkerPoolImpl8PostTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEEb
   fun:_ZN4base10WorkerPool8PostTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEEb
   fun:_ZN4base12_GLOBAL__N_126PostTaskAndReplyWorkerPool8PostTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEE
   fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
   fun:_ZN4base10WorkerPool16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_b
   fun:_ZN12_GLOBAL__N_122URLRequestExtensionJob5StartEv
   fun:_ZN3net10URLRequest8StartJobEPNS_13URLRequestJobE
   fun:_ZN3net10URLRequest5StartEv
   fun:_ZN12_GLOBAL__N_121ExtensionProtocolTest12StartRequestEPN3net10URLRequestEN12ResourceType4TypeE
   fun:_ZN12_GLOBAL__N_143ExtensionProtocolTest_IncognitoRequest_Test8TestBodyEv
}
{
   bug_139467
   Memcheck:Uninitialized
   fun:_ZNK7WebCore18AccessibilityTable9roleValueEv
   fun:_ZNK7WebCore25AccessibilityRenderObject20ariaLiveRegionStatusEv
   fun:_ZNK7WebCore19AccessibilityObject22supportsARIALiveRegionEv
   fun:_ZNK7WebCore19AccessibilityObject22supportsARIAAttributesEv
   fun:_ZN7WebCore25AccessibilityRenderObject26determineAccessibilityRoleEv
   fun:_ZN7WebCore23AccessibilityNodeObject4initEv
   fun:_ZN7WebCore25AccessibilityRenderObject4initEv
   fun:_ZN7WebCore18AccessibilityTable4initEv
   fun:_ZN7WebCore18AccessibilityTable6createEPNS_12RenderObjectE
}
{
   bug_139470
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore22ThreadableBlobRegistry17unregisterBlobURLERKNS_4KURLE
   ...
   fun:_ZN7WebCore15WrapperTypeInfo11derefObjectEPv
   fun:_ZN7WebCore7DOMData11derefObjectEPNS_15WrapperTypeInfoEPv
   fun:_ZN7WebCore7DOMData23WrapperMapObjectRemoverIvE15visitDOMWrapperEPNS_12DOMDataStoreEPvN2v810PersistentINS6_6ObjectEEE
   fun:_ZN7WebCore16WeakReferenceMapIvN2v86ObjectEE5visitEPNS_12DOMDataStoreEPNS_24AbstractWeakReferenceMapIvS2_E7VisitorE
   fun:_ZN7WebCore7DOMData27removeObjectsFromWrapperMapIvEEvPNS_12DOMDataStoreERNS_24AbstractWeakReferenceMapIT_N2v86ObjectEEE
   fun:_ZN7WebCore19removeAllDOMObjectsEv
   fun:_ZN7WebCore22WorkerScriptControllerD1Ev
   fun:_ZN3WTF14deleteOwnedPtrIN7WebCore22WorkerScriptControllerEEEvPT_
   fun:_ZN3WTF6OwnPtrIN7WebCore22WorkerScriptControllerEE5clearEv
   fun:_ZN7WebCore13WorkerContext11clearScriptEv
   fun:_ZN7WebCore30WorkerThreadShutdownFinishTask11performTaskEPNS_22ScriptExecutionContextE
   fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskERKS0_PNS_22ScriptExecutionContextE
   fun:_ZN7WebCore13WorkerRunLoop9runInModeEPNS_13WorkerContextERKNS_13ModePredicateENS0_8WaitModeE
   fun:_ZN7WebCore13WorkerRunLoop3runEPNS_13WorkerContextE
   fun:_ZN7WebCore12WorkerThread12runEventLoopEv
   fun:_ZN7WebCore21DedicatedWorkerThread12runEventLoopEv
}
{
   bug_139662
   Memcheck:Uninitialized
   fun:qcms_transform_data_rgba_out_lut_sse2
   fun:qcms_transform_data_type
   fun:_ZN7WebCore16JPEGImageDecoder15outputScanlinesEv
   fun:_ZN7WebCore15JPEGImageReader6decodeERKNS_12SharedBufferEb
}
{
   bug_139664
   Memcheck:Uninitialized
   fun:_ZN4skia12_GLOBAL__N_18ClampTo8Ei
   fun:_ZN4skia12_GLOBAL__N_120ConvolveHorizontallyILb1EEEvPKhRKNS_19ConvolutionFilter1DEPh
   fun:_ZN4skia14BGRAConvolve2DEPKhibRKNS_19ConvolutionFilter1DES4_iPhb
   fun:_ZN4skia15ImageOperations11ResizeBasicERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
   fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
   fun:_ZNK7WebCore15NativeImageSkia13resizedBitmapERK7SkIRectiiS3_
}
{
   bug_139853
   Memcheck:Unaddressable
   fun:_ZN11SkGpuDeviceC1EP9GrContextP9GrTexture
   fun:_ZN7WebCoreL23createAcceleratedCanvas*
   fun:_ZN7WebCore45FrameBufferSkPictureCanvasLayerTextureUpdater17*
   fun:_ZN7WebCore45FrameBufferSkPictureCanvasLayerTextureUpdater7Texture10updateRectEPNS_18CCResourceProviderERKNS_7IntRectES6_
   fun:_ZN7WebCore12_GLOBAL__N_126UnthrottledTextureUploader13uploadTextureEPNS_19LayerTextureUpdater7TextureEPNS_18CCResourceProviderENS_7IntRectES7_
   fun:_ZN7WebCore16CCTextureUpdater6updateEPNS_18CCResourceProviderEPNS_13TextureCopierEPNS_15TextureUploaderEm
   fun:_ZN7WebCore19CCSingleThreadProxy8doCommitERNS_16CCTextureUpdaterE
   fun:_ZN7WebCore19CCSingleThreadProxy18commitAndCompositeEv
   fun:_ZN7WebCore19CCSingleThreadProxy20compositeAndReadbackEPvRKNS_7IntRectE
   fun:_ZN7WebCore15CCLayerTreeHost20compositeAndReadbackEPvRKNS_7IntRectE
   fun:_ZN6WebKit16WebLayerTreeView20compositeAndReadbackEPvRKNS_7WebRectE
   fun:_ZN6WebKit11WebViewImpl23doPixelReadbackToCanvasEP8SkCanvasRKN7WebCore7IntRectE
   fun:_ZN6WebKit11WebViewImpl5paintEP8SkCanvasRKNS_7WebRectE
   fun:_ZN11WebViewHost9paintRectERKN6WebKit7WebRectE
   fun:_ZN11WebViewHost22paintInvalidatedRegionEv
}
{
   bug_139996
   Memcheck:Leak
   fun:_Znw*
   fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
   fun:_ZN7WebCore23v8StringToWebCoreStringEN2v86HandleINS0_6StringEEE
   fun:_ZN7WebCore22v8ValueToWebCoreStringEN2v86HandleINS0_5ValueEEE
   fun:_ZNK7WebCore10Dictionary3getERKN3WTF6StringERS2_
   fun:_ZN7WebCore6V8Blob19constructorCallbackERKN2v89ArgumentsE
   fun:_ZN2v88internalL19HandleApiCallHelperILb1EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
   fun:_ZN2v88internalL30Builtin_HandleApiCallConstructENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
}
{
   bug_139998
   Memcheck:Leak
   fun:*alloc
   ...
   fun:_mesa_symbol_table_add_symbol
   fun:_ZN17glsl_symbol_table12add_variableEPKcP11ir_variable
   fun:_ZL21populate_symbol_tableP9gl_shader
   fun:_ZL23link_intrastage_shadersP14__GLcontextRecP17gl_shader_programPP9gl_shaderj
   fun:_Z12link_shadersP14__GLcontextRecP17gl_shader_program
   fun:_mesa_glsl_link_shader
   fun:link_program
   fun:_mesa_LinkProgramARB
   fun:glLinkProgram
   fun:_ZN3gpu5gles214ProgramManager11ProgramInfo4LinkEPNS0_13ShaderManagerEPNS0_16ShaderTranslatorES6_PNS0_11FeatureInfoE
   fun:_ZN3gpu5gles216GLES2DecoderImpl13DoLinkProgramEj
   fun:_ZN3gpu5gles216GLES2DecoderImpl17HandleLinkProgramEjRKNS0_11LinkProgramE
   fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
   fun:_ZN3gpu13CommandParser14ProcessCommandEv
   fun:_ZN3gpu12GpuScheduler10PutChangedEv
   fun:_ZN6webkit3gpu18GLInProcessContext12PumpCommandsEv
}
{
   bug_140196
   Memcheck:Uninitialized
   fun:_ZNK12SkDescriptor6equalsERKS_
   fun:_ZN12SkGlyphCache10VisitCacheEPK12SkDescriptorPFbPKS_PvES5_
   ...
   fun:_ZNK7SkPaint14descriptorProcEPK8SkMatrixPFvPK12SkDescriptorPvES6_b
}
{
   bug_140628
   Memcheck:Leak
   ...
   fun:_ZN15ExtensionAction16RunIconAnimationEi
   fun:_ZN15ExtensionAction13SetAppearanceEiNS_10AppearanceE
}

#-----------------------------------------------------------------------
# 4. These only occur on our Google workstations

{
   bug_todo_getdelim
   Memcheck:Leak
   fun:malloc
   fun:getdelim
   ...
   fun:call_init
   fun:_dl_init
}
{
   bug_todo_getdelim2
   Memcheck:Leak
   fun:malloc
   fun:getdelim
   obj:/lib/libselinux.so.1
   obj:/lib/libselinux.so.1
   obj:/lib/libselinux.so.1
}
{
   bug_todo_grep
   Memcheck:Leak
   fun:malloc
   obj:/bin/grep
   obj:/bin/grep
}