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
|
# There are three kinds of suppressions in this file.
# 1. third party stuff we have no control over
#
# 2. intentional unit test errors, or stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing
#
# 3. Suppressions for real chromium bugs that are not yet fixed.
# These should all be in chromium's bug tracking system (but a few aren't yet).
# Periodically we should sweep this file and the bug tracker clean by
# running overnight and removing outdated bugs/suppressions.
#-----------------------------------------------------------------------
# 1. third party stuff we have no control over
{
Uninitialized value in deflate
Memcheck:Cond
...
fun:MOZ_Z_deflate
}
{
gtk developers don't like cleaning up one-time leaks. See http://mail.gnome.org/archives/gtk-devel-list/2004-April/msg00230.html
Memcheck:Leak
...
fun:gtk_init_check
}
{
Fontconfig leak?
Memcheck:Leak
...
fun:XML_ParseBuffer
fun:FcConfigParseAndLoad
}
{
bug_9245_FcConfigAppFontAddFile_leak
Memcheck:Leak
...
fun:FcConfigAppFontAddFile
}
{
# See also http://www.gnome.org/~johan/gtk.suppression
# (which has a smattering of similar pango suppressions)
pango_font_leak_todo
Memcheck:Leak
...
fun:FcFontRenderPrepare
obj:*
fun:pango_font_map_load_fontset
}
{
pango_font_leak_todo_2
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_strdup
fun:pango_script_get_sample_language
...
fun:pango_font_get_metrics
}
{
pango_font_leak_todo_3
Memcheck:Leak
...
fun:FcFontRenderPrepare
obj:*
obj:*
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
obj:*
fun:pango_context_get_metrics
}
{
# Fontconfig leak, seen in shard 16 of 20 of ui_tests
# See https://bugs.freedesktop.org/show_bug.cgi?id=8428
# and http://www.gnome.org/~johan/gtk.suppression
fontconfig_bug_8428
Memcheck:Leak
...
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcPatternObjectAddWithBinding
}
{
# Another permutation of previous leak.
fontconfig_bug_8428_2
Memcheck:Leak
...
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcPatternObjectAdd
}
{
bug_18590
Memcheck:Leak
...
fun:malloc
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigValues
fun:FcConfigSubstituteWithPat
fun:FcConfigSubstitute
}
{
bug_46177_a
Memcheck:Leak
...
fun:FcCharSetOperate
fun:FcFontSetSort
fun:FcFontSort
...
fun:pango_layout_get_pixel_size
}
{
bug_46177_b
Memcheck:Leak
...
fun:FcCharSetFindLeafCreate
fun:FcCharSetAddLeaf
fun:FcCharSetOperate
fun:FcFontSetSort
fun:FcFontSort
...
fun:pango_layout_get_iter
}
{
bug_46177_c
Memcheck:Leak
...
fun:FcCharSetFindLeafCreate
fun:FcCharSetAddLeaf
fun:FcCharSetOperate
fun:FcFontSetSort
fun:FcFontSort
...
fun:pango_layout_line_get_extents
}
{
dlopen invalid read, probably a bug in glibc. TODO(dkegel): file glibc bug
Memcheck:Value4
...
fun:dlopen@@GLIBC_2.1
fun:PR_LoadLibraryWithFlags
}
{
# glibc has a bug when it has to retry dns lookup?
# http://sourceware.org/bugzilla/show_bug.cgi?id=10391
glibc_bug_10391
Memcheck:Cond
...
fun:getaddrinfo
}
{
glibc leak. See also http://sources.redhat.com/bugzilla/show_bug.cgi?id=2451
Memcheck:Leak
fun:malloc
fun:_dl_map_object_from_fd
}
{
Pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug.
Memcheck:Leak
...
fun:NSS_NoDB_Init
}
{
Another pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug. Shows up under --show-reachable=yes.
Memcheck:Leak
...
fun:SECMOD_LoadUserModule
}
{
Pure NSS leak, does not involve glibc.
Memcheck:Leak
...
fun:SECMOD_AddNewModule
}
{
bug_12614
Memcheck:Leak
fun:?alloc
...
fun:PR_LoadLibraryWithFlags
...
fun:SECMOD_LoadModule
}
{
Error in ICU
Memcheck:Overlap
fun:memcpy
fun:init_resb_result
}
{
libc_dynamiclinker_foo
Memcheck:Cond
obj:/lib*/ld-2.*.so
obj:/lib*/ld-2.*.so
}
{
libc_dynamiclinker_bar
Memcheck:Addr4
obj:/lib*/ld-2.*.so
obj:/lib*/ld-2.*.so
}
{
FIXME epoll uninitialized data 1
Memcheck:Param
epoll_ctl(epfd)
fun:syscall
fun:event_add
}
{
FIXME epoll uninitialized data 2
Memcheck:Param
epoll_ctl(epfd)
fun:syscall
fun:event_del
}
{
FIXME epoll uninitialized data 3
Memcheck:Param
epoll_wait(epfd)
fun:syscall
fun:event_base_loop
}
{
# "The section of the SQLite library identified works exactly as it should."
# http://www.sqlite.org/cvstrac/tktview?tn=536,39
# http://www.sqlite.org/cvstrac/tktview?tn=694,39
# http://www.sqlite.org/cvstrac/tktview?tn=964,39
# This looks like a case where an entire page was allocated, the header and
# perhaps some data was written, but the entire buffer was not written to.
# The SQLite authors aren't very interested in adding code to clear buffers
# for no reason other than pleasing valgrind, but a patch might be accepted
# under a macro like SQLITE_SECURE_DELETE which could be construed to apply
# to cases like this. (Note that we compile with SQLITE_SECURE_DELETE.)
bug_20653a
Memcheck:Param
write(buf)
...
fun:sqlite3OsWrite
fun:pager_write_pagelist
}
{
bug_20653b
Memcheck:Param
write(buf)
...
fun:*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
}
{
bug_16161
Memcheck:Leak
fun:malloc
fun:g_malloc
...
fun:gtk_clipboard_set_text
fun:_ZN23AutocompleteEditViewGtk20SavePrimarySelectionERKSs
}
{
# Maybe this is a widget caught in the middle of being destroyed?
bug_19369
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_datalist_id_set_data_full
fun:g_object_freeze_notify
fun:gtk_widget_unparent
fun:gtk_bin_remove
fun:g_cclosure_marshal_VOID__OBJECT
fun:g_type_class_meta_marshal
fun:g_closure_invoke
fun:signal_emit_unlocked_R
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gtk_container_remove
fun:gtk_widget_dispose
fun:g_object_run_dispose
fun:gtk_object_destroy
}
{
# Totem plugin leaks when we load it.
bug_21326
Memcheck:Leak
...
fun:_ZN5NPAPI9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo
}
{
# NSS bug https://bugzilla.mozilla.org/show_bug.cgi?id=518443
https://bugzilla.mozilla.org/show_bug.cgi?id=518443
Memcheck:Leak
fun:calloc
...
fun:PORT_ZAlloc_Util
fun:PORT_NewArena_Util
fun:PK11_ImportAndReturnPrivateKey
}
{
bug_23314
Memcheck:Addr2
fun:sqlite3PcacheClearSyncFlags
fun:syncJournal
fun:sqlite3PagerCommitPhaseOne
fun:sqlite3BtreeCommitPhaseOne
}
{
bug_23314b
Memcheck:Addr4
fun:sqlite3PcacheClearSyncFlags
fun:syncJournal
fun:sqlite3PagerCommitPhaseOne
fun:sqlite3BtreeCommitPhaseOne
}
{
# Valgrind doesn't grok clone quite yet on x64,
# see https://bugs.kde.org/show_bug.cgi?id=117564
valgrind_bug_117564
Memcheck:Param
clone(child_tidptr)
fun:clone
fun:_ZN7testing8internal13ExecDeathTest10AssumeRoleEv
}
{
http://sources.redhat.com/bugzilla/show_bug.cgi?id=5171
Memcheck:Leak
fun:calloc
fun:allocate_dtv
fun:_dl_allocate_tls
fun:pthread_create@@GLIBC_2.1
}
{
leak_in_ps
Memcheck:Leak
fun:malloc
fun:nss_parse_service_list
...
obj:/bin/ps
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149a
Memcheck:Addr1
...
fun:_ZN4base11VDSOSupport4InitEv
...
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN4base11VDSOSupport12kInvalidBaseE
...
fun:__libc_csu_init
fun:(below main)
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149b
Memcheck:Addr2
...
fun:_ZN4base11VDSOSupport4InitEv
...
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN4base11VDSOSupport12kInvalidBaseE
...
fun:__libc_csu_init
fun:(below main)
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149c
Memcheck:Addr4
...
fun:_ZN4base11VDSOSupport4InitEv
...
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN4base11VDSOSupport12kInvalidBaseE
...
fun:__libc_csu_init
fun:(below main)
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149d
Memcheck:Addr1
...
fun:_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE
...
fun:_Z41__static_initialization_and_destruction_0ii
...
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149e
Memcheck:Addr2
...
fun:_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE
...
fun:_Z41__static_initialization_and_destruction_0ii
...
}
{
# Valgrind issues with tcmalloc's VDSOSupport module
bug_28149f
Memcheck:Addr4
...
fun:_ZNK4base11VDSOSupport12LookupSymbolEPKcS2_iPNS0_10SymbolInfoE
...
fun:_Z41__static_initialization_and_destruction_0ii
...
}
{
bug_30110
Memcheck:Leak
fun:_Znw*
fun:_ZN13TCMallocGuardC1Ev
}
# zlib-1.2.x uses uninitialised memory in some tricky way which
# apparently is harmless (it must amount to a vectorised while-loop,
# nothing else makes sense). Fools Memcheck though. See the mentioned
# URL for details.
# Valgrind already suppresses deflate-related errors. These rules
# filter "*flate", capturing issues with both deflate and inflate.
{
zlib-1.2.x trickyness (1a): See http://www.zlib.net/zlib_faq.html#faq36
Memcheck:Cond
obj:/*lib*/libz.so.1.2.*
...
obj:/*lib*/libz.so.1.2.*
fun:*flate
}
{
zlib-1.2.x trickyness (1b): See http://www.zlib.net/zlib_faq.html#faq36
Memcheck:Cond
obj:/*lib*/libz.so.1.2.*
fun:*flate
}
{
zlib-1.2.x trickyness (2a): See http://www.zlib.net/zlib_faq.html#faq36
Memcheck:Value8
obj:/*lib*/libz.so.1.2.*
...
obj:/*lib*/libz.so.1.2.*
fun:*flate
}
{
zlib-1.2.x trickyness (2b): See http://www.zlib.net/zlib_faq.html#faq36
Memcheck:Value8
obj:/*lib*/libz.so.1.2.*
fun:*flate
}
{
zlib-1.2.x trickyness (3a): See http://www.zlib.net/zlib_faq.html#faq36
Memcheck:Value4
obj:/*lib*/libz.so.1.2.*
...
obj:/*lib*/libz.so.1.2.*
fun:*flate
}
{
zlib-1.2.x trickyness (3b): See http://www.zlib.net/zlib_faq.html#faq36
Memcheck:Value4
obj:/*lib*/libz.so.1.2.*
fun:*flate
}
{
# zlib is smarter than we are:
# http://www.zlib.net/zlib_faq.html#faq36
zlib_conditional_jump_performance_a
Memcheck:Value4
...
fun:inflate
fun:_ZN4spdy10SpdyFramer26DecompressFrameWithZStreamERKNS_9SpdyFrameEP10z_stream_s
fun:_ZN4spdy10SpdyFramer22DecompressControlFrameERKNS_16SpdyControlFrameE
fun:_ZN4spdy10SpdyFramer15DecompressFrameERKNS_9SpdyFrameE
}
{
# zlib is smarter than we are:
# http://www.zlib.net/zlib_faq.html#faq36
zlib_conditional_jump_performance_b
Memcheck:Value8
...
fun:inflate
fun:_ZN4spdy10SpdyFramer15DecompressFrameEPKNS_9SpdyFrameE
}
{
bug_30667
Memcheck:Cond
...
fun:inflate
fun:_ZN4spdy10SpdyFramer26DecompressFrameWithZStreamERKNS_9SpdyFrameEP10z_stream_s
fun:_ZN4spdy10SpdyFramer22DecompressControlFrameERKNS_16SpdyControlFrameE
fun:_ZN4spdy10SpdyFramer15DecompressFrameERKNS_9SpdyFrameE
}
#-- end of zlib filters
{
bug_33394
Memcheck:Leak
fun:calloc
fun:PR_Calloc
fun:PR_NewLock
fun:_PR_UnixInit
fun:_PR_ImplicitInitialization
...
fun:_ZN4base14EnsureNSPRInitEv
}
{
bug_33394_b
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
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
fun:gtk_entry_realize
fun:g_cclosure_marshal_VOID__VOID
fun:g_type_class_meta_marshal
fun:g_closure_invoke
fun:signal_emit_unlocked_R
fun:g_signal_emit_valist
fun:g_signal_emit
fun:gtk_widget_realize
fun:gtk_widget_set_parent
fun:gtk_fixed_put
fun:gtk_fixed_add
fun:g_cclosure_marshal_VOID__OBJECT
fun:g_type_class_meta_marshal
fun:g_closure_invoke
fun:signal_emit_unlocked_R
fun:g_signal_emit_valist
}
{
bug_51327
Memcheck:Cond
fun:DecodeItem
...
fun:SEC_QuickDERDecodeItem_Util
...
fun:lg_PutMetaData
fun:sftkdb_ChangePassword
fun:NSC_InitPIN
fun:PK11_InitPin
}
{
bug_51332a
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
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_51330
Memcheck:Leak
...
fun:p12u_DigestOpen
...
fun:SEC_PKCS12DecoderUpdate
}
{
bug_51328a
Memcheck:Leak
...
fun:sec_pkcs12_decoder_asafes_notify
fun:sec_asn1d_notify_before
fun:SEC_ASN1DecoderUpdate_Util
fun:sec_pkcs12_decoder_asafes_callback
fun:sec_pkcs7_decoder_work_data
fun:SEC_ASN1DecoderUpdate_Util
fun:SEC_PKCS7DecoderUpdate
fun:sec_pkcs12_decode_asafes_cinfo_update
fun:SEC_ASN1DecoderUpdate_Util
fun:SEC_PKCS12DecoderUpdate
}
{
bug_51328b
Memcheck:Leak
...
fun:PORT_NewArena_Util
fun:SEC_PKCS7DecoderStart
fun:sec_pkcs12_decoder_pfx_notify_proc
fun:sec_asn1d_notify_before
fun:SEC_ASN1DecoderUpdate_Util
fun:SEC_PKCS12DecoderUpdate
}
#-----------------------------------------------------------------------
# 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:_ZN31ToolsSanityTest_MemoryLeak_Test8TestBodyEv
}
{
Memcheck sanity test 02 (malloc/read left).
Memcheck:Addr1
fun:_Z29ReadValueOutOfArrayBoundsLeftPc
fun:_Z14MakeSomeErrorsPc*
fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
Memcheck sanity test 03 (malloc/read right).
Memcheck:Addr1
fun:_Z30ReadValueOutOfArrayBoundsRightPc*
fun:_Z14MakeSomeErrorsPc*
fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
Memcheck sanity test 04 (malloc/write left).
Memcheck:Addr1
fun:_Z30WriteValueOutOfArrayBoundsLeftPc
fun:_Z14MakeSomeErrorsPc*
fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
Memcheck sanity test 05 (malloc/write right).
Memcheck:Addr1
fun:_Z31WriteValueOutOfArrayBoundsRightPc*
fun:_Z14MakeSomeErrorsPc*
fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
Memcheck sanity test 06 (new/read left).
Memcheck:Addr1
fun:_Z29ReadValueOutOfArrayBoundsLeftPc
fun:_Z14MakeSomeErrorsPc*
fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
Memcheck sanity test 07 (new/read right).
Memcheck:Addr1
fun:_Z30ReadValueOutOfArrayBoundsRightPc*
fun:_Z14MakeSomeErrorsPc*
fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
Memcheck sanity test 08 (new/write left).
Memcheck:Addr1
fun:_Z30WriteValueOutOfArrayBoundsLeftPc
fun:_Z14MakeSomeErrorsPc*
fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
Memcheck sanity test 09 (new/write right).
Memcheck:Addr1
fun:_Z31WriteValueOutOfArrayBoundsRightPc*
fun:_Z14MakeSomeErrorsPc*
fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
Memcheck sanity test 10 (write after free).
Memcheck:Addr1
fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
}
{
Memcheck sanity test 11 (write after delete).
Memcheck:Addr1
fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
}
{
Memcheck sanity test 12 (array deleted without []).
Memcheck:Free
...
fun:_ZN46ToolsSanityTest_ArrayDeletedWithoutBraces_Test8TestBodyEv
}
{
Memcheck sanity test 13 (single element deleted with []).
Memcheck:Free
...
fun:_ZN51ToolsSanityTest_SingleElementDeletedWithBraces_Test8TestBodyEv
}
{
logging::InitLogging never frees filename. It would be hard to free properly.
Memcheck:Leak
...
fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateENS_20OldFileDeletionStateE
}
{
# See comment on struct CheckOpString
logging::MakeCheckOpString result not freed because app is aborting
Memcheck:Leak
fun:_Znw*
fun:_ZN7logging17MakeCheckOpStringIiiEEPSsRKT_RKT0_PKc
}
{
Linux tests don't bother to undo net::TestServer::LoadTestRootCert().
Memcheck:Leak
...
fun:_ZN3net10TestServer16LoadTestRootCertEv
}
{
# uitest's ResourceDispatcherTest.CrossSiteAfterCrash crashes on purpose
Intentional_crash
Memcheck:Addr4
fun:_ZN12AboutHandler10AboutCrashEv
}
{
# Minor commandline options leak in v8
# See http://code.google.com/p/v8/issues/detail?id=275
v8_bug_275
Memcheck:Leak
fun:_Znaj
...
fun:_ZN2v88internal8FlagList18SetFlagsFromStringEPKci
}
{
# Non-joinable thread doesn't clean up all state on program exit
# very common in ui tests
bug_16096
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendEPKcj
fun:*StringAppendVTISsEEvPT_PKNS2_10value_typeEPc
fun:_ZN4base13StringAppendVEPSsPKcPc
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
Memcheck:Leak
...
fun:_ZN7WebCore8SVGNames4initEv
}
{
intentional_ChromeThreadTest_NotReleasedIfTargetThreadNonExistent_Test_leak
Memcheck:Leak
fun:_Znw*
fun:_ZN58ChromeThreadTest_NotReleasedIfTargetThreadNonExistent_Test8TestBodyEv
}
{
# A callback object that may or may not be called on exit.
# See comments in ProxyConfigServiceLinux::Delegate::PostDestroyTask (proxy_config_service_linux.cc)
intentional_NewRunnableMethod_ProxyConfigServiceLinux_Delegate_CancelableTask_Leak
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodIN3net23ProxyConfigServiceLinux8DelegateEMS2_FvvEEP14CancelableTaskPT_T0_
fun:_ZN3net23ProxyConfigServiceLinux8Delegate15PostDestroyTaskEv
fun:_ZN3net23ProxyConfigServiceLinuxD0Ev
}
{
# Since this object is deleted on the file thread, and the file thread may be
# gone by the time we want to delete the object, it can leak on shutdown. It
# should be harmless though.
bug_28862
Memcheck:Leak
fun:_Znw*
fun:_ZN11ProfileImpl26ReinitializeSpellCheckHostEb
fun:_ZN24BrowserRenderProcessHost31OnSpellCheckerRequestDictionaryEv
fun:_ZN3IPC7Message8DispatchI24BrowserRenderProcessHostEEbPKS0_PT_MS5_FvvE
}
{
# AudioRendererHost is deleted in IO thread, which may or may not be called on exit.
intentional_BrowserRenderProcessHost_Init_Leak
Memcheck:Leak
fun:_Znw*
...
fun:_ZN24BrowserRenderProcessHost4InitEbP23URLRequestContextGetter
fun:_ZN14RenderViewHost16CreateRenderViewEP23URLRequestContextGetter
}
{
# Async callback leak on exit in metrics_service.cc
intentional_MetricsService_GetPluginListTask_Run_Leak
Memcheck:Leak
fun:_Znw*
fun:_ZN14MetricsService17GetPluginListTask3RunEv
}
{
# Async deletion leak on exit in ChromeThread.
# This fails once in a while in LocaleTest.
intentional_ChromeThread_DeleteSoon_ExtensionMessageService_Leak
Memcheck:Leak
fun:_Znw*
fun:_ZN12ChromeThread10DeleteSoonI23ExtensionMessageServiceEEbNS_2IDERKN15tracked_objects8LocationEPT_
fun:_ZN12ChromeThread14DeleteOnThreadILNS_2IDE0EE8DestructI23ExtensionMessageServiceEEvPT_
}
{
# This is an on demand initialization which is done and then intentionally
# kept around (not freed) while the process is running.
intentional_WebCore_XMLNames_init_leak
Memcheck:Leak
...
fun:_ZN7WebCore8XMLNames4initEv
...
}
{
# Intentional crash test
intentional_RendererCrashTest
Memcheck:Addr4
fun:_Z33HandleRendererErrorTestParametersRK11CommandLine
fun:_Z12RendererMainRK18MainFunctionParams
}
{
# The InvalidRead error in rc4_wordconv is intentional.
# https://bugzilla.mozilla.org/show_bug.cgi?id=341127
bug_43113
Memcheck:Addr4
fun:rc4_wordconv
fun:RC4_Encrypt
}
{
# Valgrind gets confused by fork() and reports false positive.
bug_46343_a
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorIiE8allocateEjPKv
fun:_ZNSt12_Vector_baseIiSaIiEE11_M_allocateEj
fun:_ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi
fun:_ZNSt6vectorIiSaIiEE9push_backERKi
fun:_ZN10ZygoteHost12ForkRendererERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6_EE
fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISsSsESaIS3_EEiP11CommandLine
fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
{
bug_46343_b
Memcheck:Leak
...
fun:realloc
fun:_ZN6Pickle6ResizeEj
fun:_ZN6Pickle10BeginWriteEj
fun:_ZN6Pickle10WriteBytesEPKvi
fun:_ZN6Pickle8WriteIntEi
fun:_ZN6Pickle11WriteStringERKSs
fun:_ZN10ZygoteHost12ForkRendererERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6_EE
fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISsSsESaIS3_EEiP11CommandLine
fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
{
bug_46343_c
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt4pairIjiEE8allocateEjPKv
fun:_ZNSt12_Vector_baseISt4pairIjiESaIS1_EE11_M_allocateEj
fun:_ZNSt6vectorISt4pairIjiESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_
fun:_ZNSt6vectorISt4pairIjiESaIS1_EE9push_backERKS1_
fun:_ZN20ChildProcessLauncher7Context14LaunchInternalEbRKSt6vectorISt4pairISsSsESaIS3_EEiP11CommandLine
fun:_Z16DispatchToMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt4pairISsSsESaIS4_EEiP11CommandLineEbS6_iSA_EvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
fun:_ZN14RunnableMethodIN20ChildProcessLauncher7ContextEMS1_FvbRKSt6vectorISt4pairISsSsESaIS4_EEiP11CommandLineE6Tuple4IbS6_iSA_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
#-----------------------------------------------------------------------
# 3. Suppressions for real chromium bugs that are not yet fixed.
# These should all be in chromium's bug tracking system (but a few aren't yet).
{
# Chromium flakily leaks tasks at shutdown, see
# http://crbug.com/6532
# http://codereview.chromium.org/20067
# http://codereview.chromium.org/42083
# To reproduce, run ipc tests
# This is the -O0 case
# In Purify, they don't even try to free them anymore.
# For now, in Valgrind, we'll add suppressions to ignore these leaks.
bug_6532
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvvEEP14CancelableTaskPT_T0_
}
{
# See http://crbug.com/6532
# This is the -O1 case
bug_6532b
Memcheck:Leak
...
fun:_ZN3IPC12ChannelProxy7Context14OnChannelErrorEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
}
{
# V8 (or test shell) leak? See http://crbug.com/9458
bug_9458
Memcheck:Leak
...
fun:_NPN_RegisterObject
fun:_Z25createV8ObjectForNPObjectP8NPObjectS0_
}
{
# webkit leak? See http://crbug.com/9503
bug_9503
Memcheck:Leak
...
fun:_ZN19TestWebViewDelegate24UpdateSelectionClipboardEb
}
{
# See http://crbug.com/11139
bug_11139
Memcheck:Leak
fun:_Znw*
fun:_ZN14ProcessWatcher23EnsureProcessTerminatedEi
}
{
bug_11838
Memcheck:Cond
fun:strlen
...
fun:__xmlRaiseError
...
fun:_ZN16Toolbar5Importer17LocateNextOpenTagEP9XmlReader
fun:_ZN16Toolbar5Importer27LocateNextTagWithStopByNameEP9XmlReaderRKSsS3_
fun:_ZN16Toolbar5Importer24ParseBookmarksFromReaderEP9XmlReaderPSt6vectorIN13ProfileWriter13BookmarkEntryESaIS4_EE
fun:_ZN39Toolbar5ImporterTest_BookmarkParse_Test8TestBodyEv
}
{
# See http://crbug.com/11213
bug_11213
Memcheck:Leak
...
fun:_ZN7WebCore14ResourceHandle6createERKNS_15ResourceRequestEPNS_20ResourceHandleClientEPNS_5FrameEbbb
fun:_ZN7WebCore14ResourceLoader4loadERKNS_15ResourceRequestE
fun:_ZN7WebCore17SubresourceLoader6createEPNS_5FrameEPNS_23SubresourceLoaderClientERKNS_15ResourceRequestEbbb
fun:_ZN7WebCore6Loader4Host20servePendingRequestsERN3WTF5DequeIPNS_7RequestEEERb
}
{
# very common in ui tests
bug_16089
Memcheck:Leak
fun:*
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN3net12HostResolver3Job5StartEv
}
{
# ditto, but tweaked to fire on bots, more robust against optimizer changes?
bug_16089b
Memcheck:Leak
fun:_Znw*
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN18chrome_browser_net9DnsMaster24PreLockedScheduleLookupsEv
}
{
# ditto, but tweaked for cat hit by URLFetcherTest.SameThreadsTest on bot
bug_16089c
Memcheck:Leak
...
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN3net13TCPConnectJob13DoResolveHostEv
}
{
# ditto, but tweak to match the chromeos's stack.
bug_16089d
Memcheck:Leak
fun:*
...
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN3net16HostResolverImpl3Job5StartEv
}
{
# ditto, but for IPv6 support (?)
bug_16089e
Memcheck:Leak
fun:*
...
fun:_ZN4base22LinuxDynamicThreadPool8PostTaskEP4Task
...
fun:_ZN3net16HostResolverImpl16ProbeIPv6SupportEv
}
{
# very common in ui tests
bug_16091
Memcheck:Leak
...
fun:_ZN11MessageLoop22AddDestructionObserverEPNS_19DestructionObserverE
...
fun:_ZN3IPC11SyncChannel11SyncContext15OnChannelOpenedEv
}
{
# very common in ui tests
bug_16092
Memcheck:Leak
fun:*
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16092b
Memcheck:Leak
...
fun:_ZNSt11_Deque_baseIN11MessageLoop11PendingTaskESaIS1_EE17_M_initialize_mapEj
...
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16092c
Memcheck:Leak
...
fun:_ZNSt14priority_queueIN11MessageLoop11PendingTaskESt6vectorIS1_SaIS1_EESt4lessIS1_EEC1ERKS6_RKS4_
fun:_ZN11MessageLoopC1ENS_4TypeE
fun:_ZN4base6Thread10ThreadMainEv
}
{
# very common in ui tests
bug_16093
Memcheck:Leak
...
fun:getaddrinfo
}
{
# very common in ui tests
bug_16095
Memcheck:Leak
...
fun:_ZN11MessageLoop21AddToDelayedWorkQueueERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
}
{
# Somewhat common in ui tests. See also bug 9245.
bug_16102
Memcheck:Leak
...
fun:realloc
fun:FcPatternObjectInsertElt
fun:FcConfigPatternAdd
fun:FcConfigSubstituteWithPat
fun:FcFontRenderPrepare
}
{
bug_16128
Memcheck:Leak
fun:_Znw*
...
fun:_ZN3IPC11SyncChannel*Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
...
fun:_ZN11ChildThread4InitEv
}
{
bug_16156
Memcheck:Leak
...
fun:gtk_im_context_set_cursor_location
...
fun:gtk_widget_size_allocate
}
{
bug_16326
Memcheck:Leak
fun:_Znw*
...
fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
fun:_ZN7WebCore22ResourceHandleInternal5startEv
}
{
bug_16577
Memcheck:Leak
fun:_Znw*
fun:_ZN12RenderThread22InformHostOfCacheStatsEv
}
{
# Webkit leak in WebCore::HTMLNames::init() ?
bug_16579
Memcheck:Leak
...
fun:_ZN7WebCore9HTMLNames4initEv
}
{
bug_16583
Memcheck:Leak
...
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_slice_alloc0
fun:g_type_create_instance
fun:*
fun:g_object_newv
fun:g_object_new_valist
}
{
bug_16584
Memcheck:Leak
fun:_Znw*
...
fun:_ZN7WebCore10CSSRuleSet12addToRuleSetEPNS_16AtomicStringImplERN3WTF7HashMapIS2_PNS_15CSSRuleDataListENS3_7PtrHashIS2_EENS3_10HashTraitsIS2_EENS9_IS6_EEEEPNS_12CSSStyleRuleEPNS_11CSSSelectorE
fun:_ZN7WebCore10CSSRuleSet7addRuleEPNS_12CSSStyleRuleEPNS_11CSSSelectorE
fun:_ZN7WebCore10CSSRuleSet17addRulesFromSheetEPNS_13CSSStyleSheetERKNS_19MediaQueryEvaluatorEPNS_16CSSStyleSelectorE
...
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentERKNS_6StringEPNS_14StyleSheetListEPNS_13CSSStyleSheetEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
}
{
bug_17291
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocE*
...
fun:_ZN2v88internal8JSObject23SetPropertyWithCallbackEPNS0_6ObjectEPNS0_6StringES3_PS1_
}
{
# also bug 17979. It's a nest of leaks.
bug_17385
Memcheck:Leak
fun:_Znw*
...
fun:_ZN3IPC12ChannelProxy7Context13CreateChannelERKSsRKNS_7Channel4ModeE
fun:_ZN3IPC12ChannelProxy4InitERKSsNS_7Channel4ModeEP11MessageLoopb
fun:_ZN3IPC12ChannelProxyC2ERKSsNS_7Channel4ModeEP11MessageLoopPNS0_7ContextEb
...
fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
}
{
bug_17451
Memcheck:Leak
fun:_Znw*
...
fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
...
fun:_ZN11WebViewImpl13DownloadImageEiRK4GURLi
fun:_ZN10RenderView17OnDownloadFavIconEiRK4GURLi
}
{
bug_17451b
Memcheck:Leak
fun:_Znw*
...
fun:_ZN11webkit_glue15ResourceFetcher5StartEPN6WebKit8WebFrameE
...
fun:_ZN11WebViewImpl13DownloadImageEiRK4GURLi
fun:_ZN10RenderView17OnDownloadFavIconEiRK4GURLi
}
{
bug_17540
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
fun:_ZN16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
fun:_ZN3IPC7Channel11ChannelImpl7ConnectEv
fun:_ZN3IPC7Channel7ConnectEv
fun:_ZN3IPC12ChannelProxy7Context15OnChannelOpenedEv
}
{
# Originally filed as http://crbug.com/6547, but that was closed
# Found by running ui tests over and over
bug_18664
Memcheck:Leak
fun:_Znw*
fun:_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_19546a
Memcheck:Leak
fun:_Znw*
fun:_ZN19SafeBrowsingService5StartEv
fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop
fun:_ZN22ResourceDispatcherHost10InitializeEv
fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
fun:_ZN24BrowserRenderProcessHost4InitEv
}
{
bug_19546b
Memcheck:Leak
fun:_Znw*
fun:_ZN19SafeBrowsingService14OnIOInitializeEP11MessageLoopRKSsS3_
fun:_ZN14RunnableMethodI19SafeBrowsingServiceMS0_FvP11MessageLoopRKSsS4_E6Tuple3IS2_SsSsEE3RunEv
}
{
bug_19546c
Memcheck:Leak
...
fun:_ZN19SafeBrowsingService5StartEv
fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop
fun:_ZN22ResourceDispatcherHost10InitializeEv
fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
fun:_ZN17ExtensionsService4InitEv
fun:_ZN11ProfileImpl14InitExtensionsEv
fun:_Z11BrowserMainRK18MainFunctionParams
}
{
bug_19775_a
Memcheck:Leak
...
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
...
fun:sqlite3VdbeExec
fun:sqlite3Step
fun:sqlite3_step
fun:sqlite3_exec
fun:_ZN3sql10Connection7ExecuteEPKc
fun:_ZN7history11URLDatabase18CreateMainURLIndexEv
}
{
bug_19775_b
Memcheck:Leak
...
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
fun:sqlite3_malloc
fun:pcache1Create
fun:sqlite3PcacheFetch
fun:sqlite3PagerAcquire2
fun:sqlite3PagerAcquire
fun:btreeGetPage
fun:lockBtree
fun:sqlite3BtreeBeginTrans
fun:sqlite3InitOne
fun:sqlite3Init
fun:sqlite3ReadSchema
fun:sqlite3Pragma
fun:yy_reduce
fun:sqlite3Parser
fun:sqlite3RunParser
fun:sqlite3Prepare
fun:sqlite3LockAndPrepare
}
{
bug_19775_c
Memcheck:Leak
...
fun:openDatabase
fun:sqlite3_open
fun:_ZN3sql10Connection12OpenInternalERKSs
fun:_ZN3sql10Connection12OpenInMemoryEv
fun:_ZN7history16InMemoryDatabase6InitDBEv
fun:_ZN7history16InMemoryDatabase12InitFromDiskERK8FilePath
}
{
bug_19775_e
Memcheck:Leak
...
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
fun:sqlite3DbMallocRaw
fun:sqlite3DbMallocZero
fun:sqlite3StartTable
fun:yy_reduce
fun:sqlite3Parser
fun:sqlite3RunParser
fun:sqlite3Prepare
fun:sqlite3LockAndPrepare
fun:sqlite3_prepare
fun:sqlite3_exec
fun:sqlite3InitCallback
fun:sqlite3_exec
fun:sqlite3InitOne
fun:sqlite3Init
fun:sqlite3ReadSchema
fun:sqlite3CreateIndex
fun:yy_reduce
}
{
bug_19775_f
Memcheck:Leak
...
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
fun:sqlite3ParserAlloc
fun:sqlite3RunParser
fun:sqlite3Prepare
fun:sqlite3LockAndPrepare
fun:sqlite3_prepare
fun:sqlite3_exec
fun:sqlite3InitCallback
fun:sqlite3InitOne
fun:sqlite3Init
fun:sqlite3ReadSchema
fun:sqlite3CreateIndex
fun:yy_reduce
fun:sqlite3Parser
fun:sqlite3RunParser
fun:sqlite3Prepare
fun:sqlite3LockAndPrepare
fun:sqlite3_prepare
}
{
bug_20113
Memcheck:Leak
...
fun:malloc
fun:_ZN3WTF10fastMallocE*
...
fun:_ZN7WebCore16StorageNamespace23sessionStorageNamespaceEv
fun:_ZN7WebCore4Page14sessionStorageEb
fun:_ZNK7WebCore9DOMWindow14sessionStorageEv
fun:_ZN7WebCore17DOMWindowInternal*24sessionStorageAttrGetterEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
fun:_ZN2v88internal6Object23GetPropertyWithCallbackEPS1_S2_PNS0_6StringES2_
}
{
bug_20320
Memcheck:Leak
fun:malloc
fun:g_malloc
...
fun:gtk_accel_group_disconnect
fun:gtk_accel_group_disconnect_key
}
{
bug_20320b
Memcheck:Leak
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:handlers_find
fun:signal_handlers_foreach_matched_R
fun:g_signal_handlers_disconnect_matched
fun:gtk_accel_label_set_accel_widget
fun:gtk_accel_label_destroy
}
{
bug_20581
Memcheck:Leak
...
fun:btreeCreateTable
fun:sqlite3BtreeCreateTable
fun:sqlite3VdbeExec
fun:sqlite3Step
fun:sqlite3_step
fun:sqlite3_exec
}
{
bug_20616
Memcheck:Leak
...
fun:_ZN19SafeBrowsingService11GetDatabaseEv
fun:_ZN19SafeBrowsingService14OnDBInitializeEv
}
{
bug_20617
Memcheck:Leak
...
fun:_ZN18AutomationProvider30WaitForAppModalDialogToBeShownEPN3IPC7MessageE
}
{
bug_20641a
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodI19SafeBrowsingServiceMS0_FvP11MessageLoopRKSsS4_ES2_SsSsEP14CancelableTaskPT_T0_RKT1_RKT2_RKT3_
fun:_ZN19SafeBrowsingService5StartEv
fun:_ZN19SafeBrowsingService10InitializeEP11MessageLoop
}
{
bug_20641b
Memcheck:Leak
fun:_Znw*
fun:_ZN19SafeBrowsingService14OnIOInitializeEP11MessageLoopRKSsS3_
}
{
bug_20659
Memcheck:Leak
fun:_Znw*
fun:_ZN15tracked_objects10ThreadData12FindLifetimeERKNS_8LocationE
fun:_ZN15tracked_objects7Tracked13SetBirthPlaceERKNS_8LocationE
fun:_ZN11MessageLoop15PostTask_HelperERKN15tracked_objects8LocationEP4Taskxb
fun:_ZN11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx
fun:_ZN4base16BaseTimer_Helper19InitiateDelayedTaskEPNS0_9TimerTaskE
fun:_ZN4base9BaseTimerI27SafeBrowsingProtocolManagerLb0EE5StartENS_9TimeDeltaEPS1_MS1_FvvE
fun:_ZN27SafeBrowsingProtocolManager18ScheduleNextUpdateEb
fun:_ZN27SafeBrowsingProtocolManager10InitializeEv
}
# 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_21010a
Memcheck:Value4
fun:_ZN2v88internal10PagedSpace10FindObjectEPh
}
{
bug_21010b
Memcheck:Value4
fun:_ZN2v88internal18HeapObjectIterator17HasNextInNextPageEv
}
{
bug_22021
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocE*
...
fun:_ZN7WebCore19V8EventListenerList3addEPNS_15V8EventListenerE
}
{
bug_22098
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
fun:_ZN16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
fun:_ZN3IPC7Channel4SendEPNS_7MessageE
fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE
fun:_ZN3IPC8SendTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
fun:_ZN11MessageLoop3RunEv
fun:_ZN4base6Thread3RunEP11MessageLoop
fun:_ZN4base6Thread10ThreadMainEv
fun:_Z10ThreadFuncPv
fun:start_thread
}
{
# This appears to be the NDEBUG mode version of bug_16096 -- i.e. the
# intermediate call to StringAppendV() is optimized away
bug_22109
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendEPKcj
fun:*StringAppendVTISsEEvPT_PKNS2_10value_typeEPc
fun:_ZN4base12StringPrintfEPKcz
}
{
bug_22450
Memcheck:Leak
fun:_Znw*
fun:*DefaultClientSocketFactory21CreateTCPClientSocketERKNS_11AddressListEPNS_6NetLogE
fun:_ZN3net13TCPConnectJob12DoTCPConnectEv
fun:_ZN3net13TCPConnectJob6DoLoopEi
fun:_ZN3net13TCPConnectJob12OnIOCompleteEi
...
fun:_ZN3net16HostResolverImpl3Job16OnLookupCompleteEv
}
{
bug_22923
Memcheck:Leak
fun:_Znw*
...
fun:_ZN13WorkerService12CreateWorker*
fun:_ZN21ResourceMessageFilter14OnCreateWorker*
fun:_Z16DispatchToMethodI21ResourceMessageFilter*
}
{
bug_23104
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore9CSSParser23createFloatingValueListEv
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCore12parseUASheetERKNS_6StringE
fun:_ZN7WebCore12parseUASheetEPKcj
fun:_ZN7WebCore22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentEPNS_14StyleSheetListEPNS_13CSSStyleSheetES6_PKN3WTF6VectorINS7_6RefPtrIS5_EELj0EEEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
}
{
bug_23151
Memcheck:Addr4
...
fun:_ZN7WebCore23V8AbstractEventListener11handleEventEPNS_5EventE
fun:_ZN7WebCore11EventTarget18fireEventListenersEPNS_5EventE
fun:_ZN7WebCore11EventTarget13dispatchEventEN3WTF10PassRefPtrINS_5EventEEE
fun:_ZN7WebCore14XMLHttpRequest28callReadyStateChangeListenerEv
}
{
bug_23310
Memcheck:Leak
fun:_Znw*
fun:_ZN7history14HistoryBackend12SetPageTitleERK4GURLRKSbIwSt11char_traitsIwESaIwEE
fun:_Z16DispatchToMethodIN7history14HistoryBackendEMS1_FvRK4GURLRKSbIwSt11char_traitsIwESaIwEEES2_S8_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN14RunnableMethodIN7history14HistoryBackendEMS1_FvRK4GURLRKSbIwSt11char_traitsIwESaIwEEE6Tuple2IS2_S8_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
{
bug_23313
Memcheck:Leak
fun:_Znw*
...
fun:_ZNSt6vectorIN4skia19ConvolutionFilter1D14FilterInstanceESaIS2_EE9push_backERKS2_
fun:_ZN4skia19ConvolutionFilter1D9AddFilterEiPKsi
...
fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
}
{
bug_23416
Memcheck:Leak
fun:_Znw*
fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
fun:_ZN11webkit_glue15ResourceFetcher5StartEPN6WebKit8WebFrameE
fun:_ZN11webkit_glue15ResourceFetcherC2ERK4GURLPN6WebKit8WebFrameEP14CallbackRunnerI6Tuple2IRKNS4_14WebURLResponseERKSsEE
fun:_ZN11webkit_glue26ResourceFetcherWithTimeoutC1ERK4GURLPN6WebKit8WebFrameEiP14CallbackRunnerI6Tuple2IRKNS4_14WebURLResponseERKSsEE
fun:_ZN11webkit_glue27AltErrorPageResourceFetcherC1ERK4GURLPN6WebKit8WebFrameERKNS4_11WebURLErrorEP14CallbackRunnerI6Tuple3IS6_S9_RKSsEE
}
{
bug_23918
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendERKSs
fun:_ZN12StatsCounterC1ERKSs
fun:_ZN12WebFrameImplC1EPN6WebKit14WebFrameClientE
fun:_ZN11WebViewImpl19initializeMainFrameEPN6WebKit14WebFrameClientE
fun:_ZN10RenderView4InitEiiRK19RendererPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewEiRK19RendererPreferencesRK14WebPreferencesi
fun:_Z16DispatchToMethodI12RenderThreadMS0_FviRK19RendererPreferencesRK14WebPreferencesiEiS1_S4_iEvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
fun:_ZN3IPC16MessageWithTupleI6Tuple4Ii19RendererPreferences14WebPreferencesiEE8DispatchI12RenderThreadMS7_FviRKS2_RKS3_iEEEbPKNS_7MessageEPT_T0_
fun:_ZN12RenderThread24OnControlMessageReceivedERKN3IPC7MessageE
fun:_ZN11ChildThread17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
}
{
bug_27313
Memcheck:Leak
...
fun:_ZN24SkScalerContext_FreeTypeC1EPK12SkDescriptor
fun:_ZN10SkFontHost19CreateScalerContextEPK12SkDescriptor
fun:_ZN15SkScalerContext6CreateEPK12SkDescriptor
fun:_ZN12SkGlyphCacheC1EPK12SkDescriptor
fun:_ZN12SkGlyphCache10VisitCacheEPK12SkDescriptorPFbPKS_PvES5_
fun:_Z19FontMetricsDescProcPK12SkDescriptorPv
fun:_ZNK7SkPaint14descriptorProcEPK8SkMatrixPFvPK12SkDescriptorPvES6_
fun:_ZNK7SkPaint14getFontMetricsEPNS_11FontMetricsEf
fun:_ZN7WebCore14SimpleFontData12platformInitEv
fun:_ZN7WebCore14SimpleFontDataC1ERKNS_16FontPlatformDataEbbPNS_11SVGFontDataE
}
{
bug_27317
Memcheck:Leak
...
fun:_ZN6WebKit17WebDataSourceImpl6createERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
fun:_ZN6WebKit21FrameLoaderClientImpl20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPNS_11WebViewImplE
fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
fun:_ZN10RenderView4InitEiiRK19RendererPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewEiRK19RendererPreferencesRK14WebPreferencesi
}
{
# See comment in app_launcher.cc
app_launcher_leak
Memcheck:Leak
...
fun:_ZN8chromeos11AppLauncherC1Ev
}
# The following three suppressions are related to the workers code.
{
bug_27837
Memcheck:Leak
fun:_Znw*
fun:_ZN19WebSharedWorkerStub9OnConnectEii
fun:_Z16DispatchToMethodI19WebSharedWorkerStubMS0_FviiEiiEvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN3IPC16MessageWithTupleI6Tuple2IiiEE8DispatchI19WebSharedWorkerStubMS5_FviiEEEbPKNS_7MessageEPT_T0_
fun:_ZN19WebSharedWorkerStub17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN13MessageRouter12RouteMessageERKN3IPC7MessageE
fun:_ZN13MessageRouter17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN11ChildThread17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27838
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMessagePortChannelEEE
fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_15WebSharedWorker15ConnectListenerE
fun:_ZN19WebSharedWorkerStub9OnConnectEii
fun:_Z16DispatchToMethodI19WebSharedWorkerStubMS0_FviiEiiEvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN3IPC16MessageWithTupleI6Tuple2IiiEE8DispatchI19WebSharedWorkerStubMS5_FviiEEEbPKNS_7MessageEPT_T0_
fun:_ZN19WebSharedWorkerStub17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN13MessageRouter12RouteMessageERKN3IPC7MessageE
fun:_ZN13MessageRouter17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN11ChildThread17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27936
Memcheck:Leak
fun:_Znw*
fun:_ZN7history20ExpireHistoryBackend28BroadcastDeleteNotificationsEPNS0_18DeleteDependenciesE
fun:_ZN7history20ExpireHistoryBackend21ArchiveSomeOldHistoryEN4base4TimeEPKNS_20ExpiringVisitsReaderEi
fun:_ZN7history20ExpireHistoryBackend18DoArchiveIterationEv
fun:_Z16DispatchToMethodIN7history20ExpireHistoryBackendEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN27ScopedRunnableMethodFactoryIN7history20ExpireHistoryBackendEE14RunnableMethodIMS1_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal7Factory12LookupSymbolENS0_6VectorIKcEE
fun:_ZN2v88internal24AstBuildingParserFactory12LookupSymbolEPKci
fun:_ZN2v88internal6Parser15ParseIdentifierEPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
fun:_ZN2v88internal6Parser21ParseMemberExpressionEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
fun:_ZN2v88internal6Parser20ParseUnaryExpressionEPb
fun:_ZN2v88internal6Parser21ParseBinaryExpressionEibPb
fun:_ZN2v88internal6Parser26ParseConditionalExpressionEbPb
fun:_ZN2v88internal6Parser25ParseAssignmentExpressionEbPb
fun:_ZN2v88internal6Parser15ParseExpressionEbPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal7Factory12LookupSymbolENS0_6VectorIKcEE
fun:_ZN2v88internal24AstBuildingParserFactory12LookupSymbolEPKci
fun:_ZN2v88internal6Parser15ParseIdentifierEPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
fun:_ZN2v88internal6Parser21ParseMemberExpressionEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
fun:_ZN2v88internal6Parser20ParseUnaryExpressionEPb
fun:_ZN2v88internal6Parser21ParseBinaryExpressionEibPb
fun:_ZN2v88internal6Parser26ParseConditionalExpressionEbPb
fun:_ZN2v88internal6Parser25ParseAssignmentExpressionEbPb
fun:_ZN2v88internal6Parser15ParseExpressionEbPb
fun:_ZN2v88internal6Parser34ParseExpressionOrLabelledStatementEPNS0_8ZoneListINS0_6HandleINS0_6StringEEEEEPb
fun:_ZN2v88internal6Parser14ParseStatementEPNS0_8ZoneListINS0_6HandleINS0_6StringEEEEEPb
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal7Factory12LookupSymbolENS0_6VectorIKcEE
fun:_ZN2v88internal24AstBuildingParserFactory12LookupSymbolEPKci
fun:_ZN2v88internal6Parser15ParseIdentifierEPb
fun:_ZN2v88internal6Parser22ParsePrimaryExpressionEPb
fun:_ZN2v88internal6Parser36ParseMemberWithNewPrefixesExpressionEPNS0_13PositionStackEPb
fun:_ZN2v88internal6Parser21ParseMemberExpressionEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
fun:_ZN2v88internal6Parser20ParseUnaryExpressionEPb
fun:_ZN2v88internal6Parser21ParseBinaryExpressionEibPb
fun:_ZN2v88internal6Parser26ParseConditionalExpressionEbPb
fun:_ZN2v88internal6Parser25ParseAssignmentExpressionEbPb
fun:_ZN2v88internal6Parser14ParseArgumentsEPb
fun:_ZN2v88internal6Parser27ParseLeftHandSideExpressionEPb
fun:_ZN2v88internal6Parser22ParsePostfixExpressionEPb
}
{
bug_27989
Memcheck:Leak
fun:_Znam
fun:_ZN2v88internalL8NewArrayIPNS0_6ObjectEEEPT_i
fun:_ZN2v88internal22HandleScopeImplementer18GetSpareOrNewBlockEv
fun:_ZN2v88internal11HandleScope6ExtendEv
fun:_ZN2v88internal11HandleScope12CreateHandleINS0_6StringEEEPPT_S5_
fun:_ZN2v88internal6HandleINS0_6StringEEC2EPS2_
fun:_ZN2v88internal6HandleINS0_6StringEEC1EPS2_
fun:_ZN2v88internal15FunctionLiteralC2ENS0_6HandleINS0_6StringEEEPNS0_5ScopeEPNS0_8ZoneListIPNS0_9StatementEEEiibNS2_INS0_10FixedArrayEEEiiib
fun:_ZN2v88internal15FunctionLiteralC1ENS0_6HandleINS0_6StringEEEPNS0_5ScopeEPNS0_8ZoneListIPNS0_9StatementEEEiibNS2_INS0_10FixedArrayEEEiiib
fun:_ZN2v88internal6Parser20ParseFunctionLiteralENS0_6HandleINS0_6StringEEEiNS1_19FunctionLiteralTypeEPb
fun:_ZN2v88internal6Parser24ParseFunctionDeclarationEPb
fun:_ZN2v88internal6Parser14ParseStatementEPNS0_8ZoneListINS0_6HandleINS0_6StringEEEEEPb
fun:_ZN2v88internal6Parser19ParseSourceElementsEPNS0_15ZoneListWrapperINS0_9StatementEEEiPb
fun:_ZN2v88internal6Parser12ParseProgramENS0_6HandleINS0_6StringEEEPN7unibrow15CharacterStreamEb
fun:_ZN2v88internal7MakeASTEbNS0_6HandleINS0_6ScriptEEEPNS_9ExtensionEPNS0_14ScriptDataImplE
fun:_ZN2v88internalL12MakeFunctionEbbNS0_8Compiler15ValidationStateENS0_6HandleINS0_6ScriptEEENS3_INS0_7ContextEEEPNS_9ExtensionEPNS0_14ScriptDataImplE
fun:_ZN2v88internal8Compiler7CompileENS0_6HandleINS0_6StringEEENS2_INS0_6ObjectEEEiiPNS_9ExtensionEPNS0_14ScriptDataImplE
fun:_ZN2v88internal5Debug21CompileDebuggerScriptEi
fun:_ZN2v88internal5Debug4LoadEv
fun:_ZN2v88internal13EnterDebuggerC2Ev
fun:_ZN2v88internal13EnterDebuggerC1Ev
fun:_ZN2v88internal8Debugger4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEPb
}
{
bug_27993
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIP24DOMStorageDispatcherHostEE8allocateEmPKv
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE14_M_create_nodeERKS1_
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE9_M_insertEPSt18_Rb_tree_node_baseS9_RKS1_
fun:_ZNSt8_Rb_treeIP24DOMStorageDispatcherHostS1_St9_IdentityIS1_ESt4lessIS1_ESaIS1_EE13insert_uniqueERKS1_
fun:_ZNSt3setIP24DOMStorageDispatcherHostSt4lessIS1_ESaIS1_EE6insertERKS1_
fun:_ZN17DOMStorageContext22RegisterDispatcherHostEP24DOMStorageDispatcherHost
fun:_ZN24DOMStorageDispatcherHost4InitEi
fun:_ZN21ResourceMessageFilter18OnChannelConnectedEi
fun:_ZN3IPC12ChannelProxy7Context18OnChannelConnectedEi
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_28026
Memcheck:Leak
fun:_Znw*
fun:_ZNK7WebCore11CSSSelector17extractPseudoTypeEv
fun:_ZNK7WebCore11CSSSelector10pseudoTypeEv
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCoreL12parseUASheetERKNS_6StringE
fun:_ZN7WebCoreL12parseUASheetEPKcj
fun:_ZN7WebCoreL22loadSimpleDefaultStyleEv
fun:_ZN7WebCore16CSSStyleSelectorC2EPNS_8DocumentEPNS_14StyleSheetListEPNS_13CSSStyleSheetES6_PKN3WTF6VectorINS7_6RefPtrIS5_EELm0EEEbb
fun:_ZN7WebCore16CSSStyleSelectorC1EPNS_8DocumentEPNS_14StyleSheetListEPNS_13CSSStyleSheetES6_PKN3WTF6VectorINS7_6RefPtrIS5_EELm0EEEbb
fun:_ZN7WebCore8Document6attachEv
fun:_ZN7WebCore5Frame11setDocumentEN3WTF10PassRefPtrINS_8DocumentEEE
fun:_ZN7WebCore11FrameLoader5beginERKNS_4KURLEbPNS_14SecurityOriginE
fun:_ZN7WebCore11FrameLoader4initEv
fun:_ZN7WebCore5Frame4initEv
fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPNS_11WebViewImplE
fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
fun:_ZN10RenderView4InitEliRK19RendererPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseliRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewElRK19RendererPreferencesRK14WebPreferencesi
fun:_Z16DispatchToMethodI12RenderThreadMS0_FvlRK19RendererPreferencesRK14WebPreferencesiElS1_S4_iEvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
}
{
bug_28027
Memcheck:Addr4
fun:_ZN3WTF17ChromiumThreading37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF16callOnMainThreadEPFvPvES0_
fun:_ZN7WebCore22ScriptExecutionContext20postTaskToMainThreadEN3WTF10PassOwnPtrINS0_4TaskEEE
fun:_ZN7WebCore8Document8postTaskEN3WTF10PassOwnPtrINS_22ScriptExecutionContext4TaskEEE
fun:_ZN6WebKit13WebWorkerBase16postTaskToLoaderEN3WTF10PassOwnPtrIN7WebCore22ScriptExecutionContext4TaskEEE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC2EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC1EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC2EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC1EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader6createEPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader25loadResourceSynchronouslyEPNS_13WorkerContextERKNS_15ResourceRequestERNS_22ThreadableLoaderClientERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore18WorkerScriptLoader17loadSynchronouslyEPNS_22ScriptExecutionContextERKNS_4KURLENS_24CrossOriginRequestPolicyE
fun:_ZN7WebCore13WorkerContext13importScriptsERKN3WTF6VectorINS_6StringELm0EEERKS3_iRi
fun:_ZN7WebCore8V8Custom36v8WorkerContextImportScriptsCallbackERKN2v89ArgumentsE
fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEiPPPS5_Pb
}
{
bug_28027
Memcheck:Addr4
fun:_ZN3WTF17ChromiumThreading37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF37scheduleDispatchFunctionsOnMainThreadEv
fun:_ZN3WTF16callOnMainThreadEPFvPvES0_
fun:_ZN7WebCore8Document8postTaskEN3WTF10PassOwnPtrINS_22ScriptExecutionContext4TaskEEE
fun:_ZN6WebKit13WebWorkerBase16postTaskToLoaderEN3WTF10PassOwnPtrIN7WebCore22ScriptExecutionContext4TaskEEE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC2EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader16MainThreadBridgeC1EN3WTF10PassRefPtrINS_29ThreadableLoaderClientWrapperEEERNS_17WorkerLoaderProxyERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC2EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoaderC1EPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader6createEPNS_13WorkerContextEPNS_22ThreadableLoaderClientERKNS_6StringERKNS_15ResourceRequestERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore22WorkerThreadableLoader25loadResourceSynchronouslyEPNS_13WorkerContextERKNS_15ResourceRequestERNS_22ThreadableLoaderClientERKNS_23ThreadableLoaderOptionsE
fun:_ZN7WebCore18WorkerScriptLoader17loadSynchronouslyEPNS_22ScriptExecutionContextERKNS_4KURLENS_24CrossOriginRequestPolicyE
fun:_ZN7WebCore13WorkerContext13importScriptsERKN3WTF6VectorINS_6StringELm0EEERKS3_iRi
fun:_ZN7WebCore8V8Custom36v8WorkerContextImportScriptsCallbackERKN2v89ArgumentsE
fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEiPPPS5_Pb
fun:_ZN2v86Script3RunEv
}
{
bug_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:Cond
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
}
{
# This looks like a bug in how the arguments passed to signals are bundled
# in closure, or a bug in how valgrind detects the error. I modified gtk to
# always set the variables passed to the signal and still saw the error.
# https://bugzilla.gnome.org/show_bug.cgi?id=554686
tooltip_554686_2
Memcheck:Cond
...
fun:_ZNK5views4View7HitTestERKN3gfx5PointE
...
fun:_ZN5views17TooltipManagerGtk11ShowTooltipEiibP11_GtkTooltip
fun:_ZN5views9WidgetGtk14OnQueryTooltipEP10_GtkWidgetiiiP11_GtkTooltip
fun:_ZN5views9WidgetGtk19OnQueryTooltipThunkEP10_GtkWidgetiiiP11_GtkTooltipPv
fun:_gtk_marshal_BOOLEAN__INT_INT_BOOLEAN_OBJECT
fun:g_closure_invoke
...
fun:g_signal_emit_valist
fun:g_signal_emit_by_name
fun:gtk_tooltip_run_requery
fun:gtk_tooltip_show_tooltip
fun:tooltip_popup_timeout
fun:gdk_threads_dispatch
}
{
# See the description of tooltip_554686_2
tooltip_554686_3
Memcheck:Cond
fun:_ZNK3gfx4Rect8ContainsEii
fun:_ZNK3gfx4Rect8ContainsERKNS_5PointE
fun:_ZNK5views18NonClientFrameView7HitTestERKN3gfx5PointE
...
fun:_ZN5views13NonClientView15GetViewForPointERKN3gfx5PointE
fun:_ZN5views4View15GetViewForPointERKN3gfx5PointE
fun:_ZN5views17TooltipManagerGtk11ShowTooltipEiibP11_GtkTooltip
fun:_ZN5views9WidgetGtk14OnQueryTooltipEP10_GtkWidgetiiiP11_GtkTooltip
fun:_ZN5views9WidgetGtk19OnQueryTooltipThunkEP10_GtkWidgetiiiP11_GtkTooltipPv
fun:_gtk_marshal_BOOLEAN__INT_INT_BOOLEAN_OBJECT
fun:g_closure_invoke
...
fun:g_signal_emit_valist
fun:g_signal_emit_by_name
fun:gtk_tooltip_run_requery
fun:gtk_tooltip_show_tooltip
fun:tooltip_popup_timeout
fun:gdk_threads_dispatch
}
{
# See the description of tooltip_554686_2
tooltip_554686_4
Memcheck:Cond
fun:_ZNK8chromeos22NormalBrowserFrameView7HitTestERKN3gfx5PointE
fun:_ZN5views13NonClientView15GetViewForPointERKN3gfx5PointE
fun:_ZN5views4View15GetViewForPointERKN3gfx5PointE
fun:_ZN5views17TooltipManagerGtk11ShowTooltipEiibP11_GtkTooltip
fun:_ZN5views9WidgetGtk14OnQueryTooltipEP10_GtkWidgetiiiP11_GtkTooltip
fun:_ZN5views9WidgetGtk19OnQueryTooltipThunkEP10_GtkWidgetiiiP11_GtkTooltipPv
fun:_gtk_marshal_BOOLEAN__INT_INT_BOOLEAN_OBJECT
fun:g_closure_invoke
...
fun:g_signal_emit_valist
fun:g_signal_emit_by_name
fun:gtk_tooltip_run_requery
fun:gtk_tooltip_show_tooltip
fun:tooltip_popup_timeout
fun:gdk_threads_dispatch
}
# This task is created quite frequently and may leak on shutdown depending on
# ordering.
{
chromeos_network_task
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodIN8chromeos14NetworkLibraryEMS1_FviEiEP14CancelableTaskPT_T0_RKT1_
fun:_ZN8chromeos14NetworkLibrary24NetworkTrafficTimerFiredEv
fun:_Z16DispatchToMethodIN8chromeos14NetworkLibraryEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN4base9BaseTimerIN8chromeos14NetworkLibraryELb0EE9TimerTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_28633
Memcheck:Leak
fun:calloc
fun:__new_exitfn
fun:__cxa_atexit
}
{
bug_29069
Memcheck:Leak
fun:_Znw*
fun:_ZN16UserScriptMaster9StartScanEv
fun:_ZN16UserScriptMaster7ObserveE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN19NotificationService6NotifyE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN17ExtensionsService27OnLoadedInstalledExtensionsEv
...
fun:_ZN17ExtensionsService17LoadAllExtensionsEv
fun:_ZN17ExtensionsService4InitEv
}
{
bug_29069
Memcheck:Leak
fun:_Znw*
fun:_Z9SerializeRKSt6vectorI10UserScriptSaIS0_EE
fun:_ZN16UserScriptMaster14ScriptReloader7RunScanE8FilePathSt6vectorI10UserScriptSaIS3_EE
}
{
bug_29115
Memcheck:Leak
...
fun:_Z15sk_malloc_flagsjj
fun:_Z15sk_malloc_throwj
fun:_ZN7SkDeque9push_backEv
fun:_ZN8SkCanvas12internalSaveENS_9SaveFlagsE
fun:_ZN8SkCanvas4saveENS_9SaveFlagsE
fun:_ZN19PlatformContextSkia4saveEv
fun:_ZN7WebCore15GraphicsContext17savePlatformStateEv
}
{
bug_29675
Memcheck:Leak
fun:_Znw*
fun:_ZN21BrowserMainPartsPosix24PostMainMessageLoopStartEv
fun:_ZN16BrowserMainParts20MainMessageLoopStartEv
fun:_Z11BrowserMainRK18MainFunctionParams
}
{
bug_30346
Memcheck:Leak
fun:_Znw*
...
fun:_ZN13TCMallocGuardC1Ev
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE
}
{
bug_30346b
Memcheck:Addr2
...
fun:_ZSt22__get_temporary_bufferIPN7WebCore11RenderLayerEESt4pairIPT_iEiS5_
fun:_ZNSt17_Temporary_bufferIPPN7WebCore11RenderLayerES2_EC1ES3_S3_
fun:_ZN7WebCore11RenderLayer17updateZOrderListsEv
fun:_ZN7WebCore11RenderLayer24updateLayerListsIfNeededEv
fun:_ZN7WebCore11RenderLayer38updateCompositingAndLayerListsIfNeededEv
}
{
bug_30703a
Memcheck:Param
write(buf)
...
fun:zipCloseFileInZipRaw
fun:zipCloseFileInZip
fun:_Z13AddEntryToZipPvRK8FilePathS2_
}
{
bug_30703b
Memcheck:Cond
fun:deflate
fun:zipCloseFileInZipRaw
fun:zipCloseFileInZip
fun:_Z13AddEntryToZipPvRK8FilePathS2_
}
{
bug_30704a
Memcheck:Value4
fun:crc32
...
fun:png_write_row
fun:_ZN3gfx51_GLOBAL__N_gfx_codec_png_codec.cc_00000000_*
fun:_ZN3gfx8PNGCodec6EncodeEPKhNS0_11ColorFormatEiiibPSt6vectorIhSaIhEE
fun:_ZN3gfx8PNGCodec18EncodeBGRASkBitmapERK8SkBitmapbPSt6vectorIhSaIhEE
}
{
bug_30704b
Memcheck:Value8
fun:crc32
...
fun:png_write_row
fun:_ZN3gfx51_GLOBAL__N_gfx_codec_png_codec.cc_00000000_*
fun:_ZN3gfx8PNGCodec6EncodeEPKhNS0_11ColorFormatEiiibPSt6vectorIhSaIhEE
fun:_ZN3gfx8PNGCodec18EncodeBGRASkBitmapERK8SkBitmapbPSt6vectorIhSaIhEE
}
{
bug_30704c
Memcheck:Param
write(buf)
...
fun:_ZN26SandboxedExtensionUnpacker17RewriteImageFilesEv
}
{
bug_30870
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeI4GURLEE8allocateEjPKv
fun:_ZNSt8_Rb_treeI4GURLS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeI4GURLS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE14_M_create_nodeERKS0_
fun:_ZNSt8_Rb_treeI4GURLS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE9_M_insertEPSt18_Rb_tree_node_baseS8_RKS0_
fun:_ZNSt8_Rb_treeI4GURLS0_St9_IdentityIS0_ESt4lessIS0_ESaIS0_EE16_M_insert_uniqueERKS0_
fun:_ZNSt3setI4GURLSt4lessIS0_ESaIS0_EE6insertERKS0_
fun:_ZN7history20ExpireHistoryBackend28BroadcastDeleteNotificationsEPNS0_18DeleteDependenciesE
fun:_ZN7history20ExpireHistoryBackend21ArchiveSomeOldHistoryEN4base4TimeEPKNS_20ExpiringVisitsReaderEi
fun:_ZN7history20ExpireHistoryBackend18DoArchiveIterationEv
fun:_Z16DispatchToMethodIN7history20ExpireHistoryBackendEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN27ScopedRunnableMethodFactoryIN7history20ExpireHistoryBackendEE14RunnableMethodIMS1_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_32085
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorIN21NotificationRegistrar6RecordEE8allocateEjPKv
fun:_ZNSt12_Vector_baseIN21NotificationRegistrar6RecordESaIS1_EE11_M_allocateEj
fun:_ZNSt6vectorIN21NotificationRegistrar6RecordESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_
fun:_ZNSt6vectorIN21NotificationRegistrar6RecordESaIS1_EE9push_backERKS1_
fun:_ZN21NotificationRegistrar3AddEP20NotificationObserver16NotificationTypeRK18NotificationSource
...
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base16MessagePumpForUI17RunWithDispatcherEPNS_11MessagePump8DelegateEPNS0_10DispatcherE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
fun:_ZN16MessageLoopForUI3RunEPN4base16MessagePumpForUI10DispatcherE
}
{
bug_32084
Memcheck:Leak
fun:_Znw*
fun:_ZN12browser_sync8sessions18SyncSessionContextC1EPNS_23ServerConnectionManagerEPN8syncable16DirectoryManagerEPNS_24ModelSafeWorkerRegistrarE
fun:_ZN8sync_api11SyncManager12SyncInternal4InitERK8FilePathRKSsiPKcS8_bPNS_23HttpPostProviderFactoryESA_PN12browser_sync24ModelSafeWorkerRegistrarEbS8_S6_
fun:_ZN8sync_api11SyncManager4InitERK8FilePathPKciS5_S5_bPNS_23HttpPostProviderFactoryES7_PN12browser_sync24ModelSafeWorkerRegistrarEbS5_S5_
...
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
}
{
bug_32088
Memcheck:Leak
fun:calloc
fun:PR_Calloc
fun:error_get_my_stack
fun:nss_ClearErrorStack
}
{
bug_32140
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore10HTMLParser10createHeadEv
fun:_ZN7WebCore10HTMLParser11handleErrorEPNS_4NodeEbRKNS_12AtomicStringEi
fun:_ZN7WebCore10HTMLParser10insertNodeEPNS_4NodeEb
fun:_ZN7WebCore10HTMLParser11handleErrorEPNS_4NodeEbRKNS_12AtomicStringEi
fun:_ZN7WebCore10HTMLParser10insertNodeEPNS_4NodeEb
fun:_ZN7WebCore10HTMLParser30insertNodeAfterLimitBlockDepthEPNS_4NodeEb
fun:_ZN7WebCore10HTMLParser10parseTokenEPNS_5TokenE
fun:_ZN7WebCore13HTMLTokenizer12processTokenEv
fun:_ZN7WebCore13HTMLTokenizer5writeERKNS_15SegmentedStringEb
fun:_ZN7WebCore8Document5writeERKNS_15SegmentedStringEPS0_
fun:_ZN7WebCore8Document5writeERKNS_6StringEPS0_
fun:_ZN7WebCore14V8HTMLDocument13writeCallbackERKN2v89ArgumentsE
fun:_ZN2v88internal21Builtin_HandleApiCallENS0_9ArgumentsE
}
{
bug_32141
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore4Text6createEPNS_8DocumentERKNS_6StringE
fun:_ZN7WebCore4Text21createWithLengthLimitEPNS_8DocumentERKNS_6StringERjj
fun:_ZN7WebCore10HTMLParser10parseTokenEPNS_5TokenE
fun:_ZN7WebCore13HTMLTokenizer12processTokenEv
fun:_ZN7WebCore13HTMLTokenizer5writeERKNS_15SegmentedStringEb
fun:_ZN7WebCore8Document5writeERKNS_15SegmentedStringEPS0_
fun:_ZN7WebCore8Document5writeERKNS_6StringEPS0_
fun:_ZN7WebCore14V8HTMLDocument13writeCallbackERKN2v89ArgumentsE
fun:_ZN2v88internal21Builtin_HandleApiCallENS0_9ArgumentsE
}
{
bug_32273
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
fun:_ZN3IPC11SyncChannel15SendWithTimeoutEPNS_7MessageEi
fun:_ZN3IPC11SyncChannel4SendEPNS_7MessageE
fun:_ZN11ChildThread4SendEPN3IPC7MessageE
fun:_ZN12RenderThread4SendEPN3IPC7MessageE
fun:_ZN12RenderWidget4SendEPN3IPC7MessageE
fun:_ZN12RenderWidget16DoDeferredUpdateEv
fun:_ZN12RenderWidget20CallDoDeferredUpdateEv
fun:_Z16DispatchToMethodI12RenderWidgetMS0_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodI12RenderWidgetMS0_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_32273_a
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
fun:_ZN3IPC11SyncChannel15SendWithTimeoutEPNS_7MessageEi
fun:_ZN3IPC11SyncChannel4SendEPNS_7MessageE
fun:_ZN24BrowserRenderProcessHost4SendEPN3IPC7MessageE
fun:_ZN16RenderWidgetHost4SendEPN3IPC7MessageE
fun:_ZN14RenderViewHost27ExecuteJavascriptInWebFrameERKSbIwSt11char_traitsIwESaIwEES5_
fun:_ZN5DOMUI17ExecuteJavascriptERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN5DOMUI22CallJavascriptFunctionERKSbIwSt11char_traitsIwESaIwEERK5Value
fun:_ZN20ShownSectionsHandler7ObserveE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN11PrefService13FireObserversEPKw
fun:_ZN11PrefService22FireObserversIfChangedEPKwPK5Value
fun:_ZN11PrefService10SetIntegerEPKwi
fun:_ZN20ShownSectionsHandler26SetFirstAppLauncherRunPrefEP11PrefService
fun:_ZN16NTPResourceCache16CreateNewTabHTMLEv
fun:_ZN16NTPResourceCache13GetNewTabHTMLEb
fun:_ZN8NewTabUI16NewTabHTMLSource16StartDataRequestERKSsbi
fun:_Z16DispatchToMethodIN20ChromeURLDataManager10DataSourceEMS1_FvRKSsbiESsbiEvPT_T0_RK6Tuple3IT1_T2_T3_E
fun:_ZN14RunnableMethodIN20ChromeURLDataManager10DataSourceEMS1_FvRKSsbiE6Tuple3ISsbiEE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
}
{
bug_32299
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN7WebCore10StringImpl19createUninitializedEjRPt
fun:_ZN7WebCore10StringImpl6createEPKcj
fun:_ZN7WebCore10StringImpl6createEPKc
fun:_ZN7WebCore6StringC1EPKc
fun:_ZN18ToolsAgentDelegateC2Ev
fun:_ZN22ToolsAgentDelegateStubC1EPN11DevToolsRpc8DelegateE
fun:_ZN20WebDevToolsAgentImplC1EPN6WebKit11WebViewImplEPNS0_22WebDevToolsAgentClientE
fun:_ZN6WebKit16WebDevToolsAgent6createEPNS_7WebViewEPNS_22WebDevToolsAgentClientE
fun:_ZN10RenderView4InitEiiRK19RendererPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEi
fun:_ZN12RenderThread15OnCreateNewViewEiRK19RendererPreferencesRK14WebPreferencesi
fun:_Z16DispatchToMethodI12RenderThreadMS0_FviRK19RendererPreferencesRK14WebPreferencesiEiS1_S4_iEvPT_T0_RK6Tuple4IT1_T2_T3_T4_E
fun:_ZN3IPC16MessageWithTupleI6Tuple4Ii19RendererPreferences14WebPreferencesiEE8DispatchI12RenderThreadMS7_FviRKS2_RKS3_iEEEbPKNS_7MessageEPT_T0_
fun:_ZN12RenderThread24OnControlMessageReceivedERKN3IPC7MessageE
fun:_ZN11ChildThread17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
}
{
bug_32355
Memcheck:Addr1
fun:NPP_DestroyStream
fun:_ZN5NPAPI14PluginInstance17NPP_DestroyStreamEP9_NPStreams
fun:_ZN5NPAPI12PluginStream5CloseEs
fun:_ZN5NPAPI15PluginStreamUrl5CloseEs
fun:_ZN5NPAPI15PluginStreamUrl16DidFinishLoadingEv
fun:_ZN11webkit_glue13WebPluginImpl16didFinishLoadingEPN6WebKit12WebURLLoaderE
fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnCompletedRequestERK16URLRequestStatusRKSs
fun:_ZN11webkit_glue16WebURLLoaderImpl7Context13HandleDataURLEv
fun:_Z16DispatchToMethodIN11webkit_glue16WebURLLoaderImpl7ContextEMS2_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodIN11webkit_glue16WebURLLoaderImpl7ContextEMS2_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base16MessagePumpForUI17RunWithDispatcherEPNS_11MessagePump8DelegateEPNS0_10DispatcherE
fun:_ZN4base16MessagePumpForUI3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_32353
Memcheck:Leak
fun:_Znw*
fun:_ZN7WebCore28createFontCustomPlatformDataEPNS_12SharedBufferE
fun:_ZN7WebCore10CachedFont20ensureCustomFontDataEv
fun:_ZN7WebCore17CSSFontFaceSource11getFontDataERKNS_15FontDescriptionEbbPNS_15CSSFontSelectorE
fun:_ZN7WebCore11CSSFontFace11getFontDataERKNS_15FontDescriptionEbb
fun:_ZN7WebCore20CSSSegmentedFontFace11getFontDataERKNS_15FontDescriptionE
fun:_ZN7WebCore15CSSFontSelector11getFontDataERKNS_15FontDescriptionERKNS_12AtomicStringE
fun:_ZN7WebCore9FontCache11getFontDataERKNS_4FontERiPNS_12FontSelectorE
fun:_ZNK7WebCore16FontFallbackList10fontDataAtEPKNS_4FontEj
fun:_ZNK7WebCore16FontFallbackList15primaryFontDataEPKNS_4FontE
fun:_ZNK7WebCore16FontFallbackList14determinePitchEPKNS_4FontE
fun:_ZNK7WebCore16FontFallbackList12isFixedPitchEPKNS_4FontE
fun:_ZNK7WebCore4Font12isFixedPitchEv
fun:_ZN7WebCore11RenderBlock17findNextLineBreakERNS_12BidiResolverINS_14InlineIteratorENS_7BidiRun*ClearE
fun:_ZN7WebCore11RenderBlock20layoutInlineChildrenEbRiS1_
fun:_ZN7WebCore11RenderBlock11layoutBlockEb
fun:_ZN7WebCore11RenderBlock6layoutEv
fun:_ZN7WebCore11RenderBlock16layoutBlockChildEPNS_9RenderBoxERNS0_10MarginInfoERiS5_
fun:_ZN7WebCore11RenderBlock19layoutBlockChildrenEbRi
fun:_ZN7WebCore11RenderBlock11layoutBlockEb
fun:_ZN7WebCore11RenderBlock6layoutEv
fun:_ZN7WebCore11RenderBlock16layoutBlockChildEPNS_9RenderBoxERNS0_10MarginInfoERiS5_
}
{
bug_32356
Memcheck:Leak
fun:_Znw*
fun:_ZN5media18FFmpegVideoDecoder13CreateFactoryEv
fun:_ZN11webkit_glue18WebMediaPlayerImplC1EPN6WebKit20WebMediaPlayerClientEPN5media23FilterFactoryCollectionEPNS_30WebVideoRendererFactoryFactoryE
fun:_ZN19TestWebViewDelegate17createMediaPlayerEPN6WebKit8WebFrameEPNS0_20WebMediaPlayerClientE
fun:_ZN6WebKit20createWebMediaPlayerEPNS_20WebMediaPlayerClientEPN7WebCore5FrameE
fun:_ZN6WebKit24WebMediaPlayerClientImpl4loadERKN7WebCore6StringE
fun:_ZN7WebCore11MediaPlayer4loadERKNS_6StringERKNS_11ContentTypeE
fun:_ZN7WebCore16HTMLMediaElement12loadResourceERKNS_4KURLERNS_11ContentTypeE
fun:_ZN7WebCore16HTMLMediaElement19selectMediaResourceEv
fun:_ZN7WebCore16HTMLMediaElement12loadInternalEv
fun:_ZN7WebCore16HTMLMediaElement14loadTimerFiredEPNS_5TimerIS0_EE
fun:_ZN7WebCore5TimerINS_16HTMLMediaElementEE5firedEv
fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
fun:_ZN11webkit_glue16WebKitClientImpl9DoTimeoutEv
fun:_Z16DispatchToMethodIN11webkit_glue16WebKitClientImplEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN4base9BaseTimerIN11webkit_glue16WebKitClientImplELb0EE9TimerTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
}
{
bug_32359
Memcheck:Leak
fun:malloc
fun:_Z14pluginAllocateP4_NPPP7NPClass
fun:_NPN_CreateObject
fun:_ZN6WebKit11WebBindings12createObjectEP4_NPPP7NPClass
fun:_Z12pluginInvokeP8NPObjectPvPK10_NPVariantjPS2_
fun:_Z18npObjectInvokeImplRKN2v89ArgumentsE18InvokeFunctionType
fun:_Z21npObjectMethodHandlerRKN2v89ArgumentsE
fun:_ZN2v88internal21Builtin_HandleApiCallENS0_9ArgumentsE
obj:*
}
{
bug_32360
Memcheck:Leak
fun:memalign
fun:posix_memalign
fun:av_malloc
fun:av_mallocz
fun:vorbis_header
fun:ogg_packet
fun:ogg_get_headers
fun:ogg_read_header
fun:av_open_input_stream
fun:av_open_input_file
fun:av_open_input_file
fun:_ZN5media13FFmpegDemuxer14InitializeTaskEPNS_10DataSourceEP14CallbackRunnerI6Tuple0E
fun:_Z16DispatchToMethodIN5media13FFmpegDemuxerEMS1_FvPNS0_10DataSourceEP14CallbackRunnerI6Tuple0EES3_S7_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN14RunnableMethodIN5media13FFmpegDemuxerEMS1_FvPNS0_10DataSourceEP14CallbackRunnerI6Tuple0EE6Tuple2IS3_S7_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_32366
Memcheck:Leak
fun:_Znw*
fun:_Z11NewCallbackIN5media12PipelineImplEEP14CallbackRunnerI6Tuple0EPT_MS6_FvvE
fun:_ZN5media12PipelineImpl25FilterStateTransitionTaskEv
fun:_Z16DispatchToMethodIN5media12PipelineImplEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodIN5media12PipelineImplEMS1_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_32623
Memcheck:Leak
fun:_Znw*
fun:_ZN3net15X509Certificate16CreateFromHandle*
fun:_ZN3net18SSLClientSocketNSS16UpdateServerCertEv
fun:_ZN3net18SSLClientSocketNSS17HandshakeCallbackEP10PRFileDescPv
...
fun:ssl3_HandleHandshakeMessage
fun:ssl3_HandleHandshake
fun:ssl3_HandleRecord
fun:ssl3_GatherCompleteHandshake
fun:SSL_ForceHandshake
fun:_ZN3net18SSLClientSocketNSS11DoHandshakeEv
fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
}
{
bug_32624_a
Memcheck:Leak
fun:malloc
fun:PR_Malloc
fun:PKIX_PL_Malloc
fun:PKIX_PL_Object_Alloc
fun:PKIX_PL_OID_Create
fun:CERT_PKIXOIDFromNSSOid
fun:cert_PKIXMakeOIDList
fun:cert_pkixSetParam
fun:CERT_PKIXVerifyCert
...
fun:_ZNK3net15X509Certificate8VerifyEVEv
fun:_ZNK3net15X509Certificate6VerifyERKSsiPNS_16CertVerifyResultE
fun:_ZN3net12CertVerifier7Request8DoVerifyEv
fun:_Z16DispatchToMethodIN3net12CertVerifier7RequestEMS2_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodIN3net12CertVerifier7RequestEMS2_FvvE6Tuple0E3RunEv
...
fun:_Z10ThreadFuncPv
fun:start_thread
fun:clone
}
{
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:PR_Malloc
fun:PORT_Alloc_Util
...
fun:PK11_InitPin
}
{
bug_33394
Memcheck:Leak
fun:calloc
fun:PR_Calloc
...
fun:_PR_ImplicitInitialization
...
fun:_ZN4base14EnsureNSPRInitEv
}
{
bug_34554_a
Memcheck:Leak
fun:malloc
...
fun:_ZN7WebCore13MutationEvent6createERKNS_12AtomicStringEbN3WTF10PassRefPtrINS_4NodeEEERKNS_6StringESA_SA_t
fun:_ZN7WebCore4Node28dispatchSubtreeModifiedEventEv
}
{
bug_34554_b
Memcheck:Leak
fun:malloc
...
fun:_ZN7WebCore13MutationEvent6createERKN3WTF12AtomicStringEbNS1_10PassRefPtrINS_4NodeEEERKNS1_6StringESA_SA_t
fun:_ZN7WebCore4Node28dispatchSubtreeModifiedEventEv
}
{
bug_34570
Memcheck:Leak
fun:_Znw*
fun:_ZN17URLRequestHttpJob7FactoryEP10URLRequestRKSs
fun:_ZNK20URLRequestJobManager9CreateJobEP10URLRequest
fun:_ZN10URLRequest5StartEv
fun:_ZN49URLRequestTest_CancelTest_DuringCookiePolicy_Test8TestBodyEv
}
{
bug_35182
Memcheck:Addr1
fun:_ZN8SkCanvas19updateDeviceCMCacheEv
fun:_ZN10SkDrawIterC1EP8SkCanvasb
fun:_ZN8SkCanvas9LayerIterC1EPS_b
fun:_ZNK4skia14PlatformCanvas20getTopPlatformDeviceEv
fun:_ZN9TestShell9DumpImageEPN4skia14PlatformCanvasERKSbIwSt11char_traitsIwESaIwEERKSs
fun:_ZN9TestShell4DumpEPS_
fun:_ZN9TestShell12TestFinishedEv
fun:_ZN20LayoutTestController9WorkQueue15ProcessWorkSoonEv
fun:_ZN20LayoutTestController18LocationChangeDoneEv
}
{
bug_35318
Memcheck:Param
write(buf)
obj:*
fun:_ZN3net10FileStream5WriteEPKciP14CallbackRunnerI6Tuple1IiEE
fun:_ZN12DownloadFile16AppendDataToFileEPKci
fun:_ZN19DownloadFileManager14UpdateDownloadEiP14DownloadBuffer
fun:_Z16DispatchToMethodI19DownloadFileManagerMS0_FviP14DownloadBufferEiS2_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN14RunnableMethodI19DownloadFileManagerMS0_FviP14DownloadBufferE6Tuple2IiS2_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_36062
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore17DOMImplementation6createEv
fun:_ZNK7WebCore8Document14implementationEv
fun:_ZN7WebCore10V8Document28implementationAccessorGetterEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
fun:_ZN2v88internal6Object23GetPropertyWithCallbackEPS1_S2_PNS0_6StringES2_
obj:*
}
{
bug_37439
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore12V8DOMWrapper20wrapNativeNodeFilterEN2v86HandleINS1_5ValueEEE
...
fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_6ObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_00000000_*BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
}
{
bug_38231
Memcheck:Leak
fun:_Znaj
fun:_ZN2v88internal8NewArrayIPPNS0_6ObjectEEEPT_i
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
}
{
bug_38231
Memcheck:Leak
fun:_Znaj
fun:_ZN2v88internal8NewArrayIPPNS0_6ObjectEEEPT_i
obj:*
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
}
{
bug_38138
Memcheck:Param
write(buf)
obj:*
fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
...
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_38254
Memcheck:Cond
fun:_ZNK5views4View7HitTestERKN3gfx5PointE
fun:_ZN5views4View15GetViewForPointERKN3gfx5PointE
fun:_ZN5views17TooltipManagerGtk11ShowTooltipEiibP11_GtkTooltip
fun:_ZN5views9WidgetGtk14OnQueryTooltipEP10_GtkWidgetiiiP11_GtkTooltip
fun:_ZN5views9WidgetGtk19OnQueryTooltipThunkEP10_GtkWidgetiiiP11_GtkTooltipPv
fun:_gtk_marshal_BOOLEAN__INT_INT_BOOLEAN_OBJECT
fun:g_closure_invoke
fun:signal_emit_unlocked_R
fun:g_signal_emit_valist
fun:g_signal_emit_by_name
fun:gtk_tooltip_run_requery
fun:gtk_tooltip_show_tooltip
}
{
bug_30633_39325
Memcheck:Leak
fun:_Znw*
...
fun:_ZN29ChromeURLRequestContextGetter14CreateOriginalEP7ProfileRK8FilePathS4_i
fun:_ZN11ProfileImpl17GetRequestContextEv
fun:_ZN19SafeBrowsingService5StartEv
fun:_ZN19SafeBrowsingService10InitializeEv
fun:_ZN22ResourceDispatcherHost10InitializeEv
fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
fun:_ZN17ExtensionsService4InitEv
}
{
bug_39353
Memcheck:Leak
fun:malloc
...
fun:_ZN3WTF7fastNewIN7WebCore11CSSSelectorEEEPT_v
fun:_ZN7WebCore9CSSParser22createFloatingSelectorEv
fun:_Z10cssyyparsePv
fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
fun:_ZN7WebCore13CSSStyleSheet11parseStringERKNS_6StringEb
fun:_ZN7WebCore12StyleElement11createSheetEPNS_7ElementERKNS_6StringE
fun:_ZN7WebCore12StyleElement7processEPNS_7ElementE
fun:_ZN7WebCore16HTMLStyleElement21finishParsingChildrenEv
...
}
{
bug_39373
Memcheck:Cond
fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE13_M_insert_intIlEES3_S3_RSt8ios_basecT_
fun:_ZNKSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE6do_putES3_RSt8ios_basecl
fun:_ZNSo9_M_insertIlEERSoT_
fun:_ZNSolsEi
fun:_ZN18AudioDeviceContext10InitializeEP18AudioMessageFilterPK27_NPDeviceContextAudioConfigP21_NPDeviceContextAudio
fun:_ZN23WebPluginDelegatePepper28DeviceAudioInitializeContextEPK27_NPDeviceContextAudioConfigP21_NPDeviceContextAudio
...
}
{
bug_39963
Memcheck:Leak
fun:_Znw*
fun:_ZN77_GLOBAL__N_chrome_browser_net_chrome_url_request_context.cc_00000000_*ChromeCookieMonsterDelegateC1EP7Profile
fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
...
fun:_ZN11ProfileImpl36RegisterExtensionWithRequestContextsEP9Extension
fun:_ZN17ExtensionsService21NotifyExtensionLoadedEP9Extension
fun:_ZN17ExtensionsService17OnExtensionLoadedEP9Extensionb
fun:_ZN17ExtensionsService23LoadComponentExtensionsEv
fun:_ZN17ExtensionsService17LoadAllExtensionsEv
fun:_ZN17ExtensionsService4InitEv
fun:_ZN11ProfileImpl14InitExtensionsEv
}
{
bug_40499
Memcheck:Leak
fun:_Znw*
fun:_ZN19UserScriptSlaveTest9SerializeERK10UserScript
}
{
bug_40877
Memcheck:Leak
fun:_Znw*
fun:_ZN25ActiveNotificationTracker20RegisterNotificationERKN6WebKit15WebNotificationE
fun:_ZN53ActiveNotificationTrackerTest_TestLookupAndClear_Test8TestBodyEv
}
{
bug_41177
Memcheck:Leak
fun:_Znw*
fun:_ZN10SkXfermode6CreateENS_4ModeE
fun:_ZN7SkPaint15setXfermodeModeEN10SkXfermode4ModeE
fun:_ZNK19PlatformContextSkia16setupPaintCommonEP7SkPaint
fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceE
fun:_ZN7WebCore20RenderBoxModelObject22paintFillLayerExtendedERKNS_12RenderObject9PaintInfoERKNS_5ColorEPKNS_9FillLayerEiiiiPNS_13InlineFlowBoxENS_17CompositeOperatorEPS1_
fun:_ZN7WebCore9RenderBox14paintFillLayerERKNS_12RenderObject9PaintInfoERKNS_5ColorEPKNS_9FillLayerEiiiiNS_17CompositeOperatorEPS1_
fun:_ZN7WebCore9RenderBox15paintFillLayersERKNS_12RenderObject9PaintInfoERKNS_5ColorEPKNS_9FillLayerEiiiiNS_17CompositeOperatorEPS1_
fun:_ZN7WebCore9RenderBox23paintRootBoxDecorationsERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore9RenderBox19paintBoxDecorationsERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderBlock5paintERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderLayer10paintLayerEPS0_PNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectEPN3WTF7HashMapIPNS_24OverlapTestRequestClientES4_NS9_7PtrHashISC_EENS9_10HashTraitsISC_EENSF_IS4_EEEEj
fun:_ZN7WebCore11RenderLayer10paintLayerEPS0_PNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectEPN3WTF7HashMapIPNS_24OverlapTestRequestClientES4_NS9_7PtrHashISC_EENS9_10HashTraitsISC_EENSF_IS4_EEEEj
fun:_ZN7WebCore11RenderLayer5paintEPNS_15GraphicsContextERKNS_7IntRectEjPNS_12RenderObjectE
fun:_ZN7WebCore9FrameView13paintContentsEPNS_15GraphicsContextERKNS_7IntRectE
fun:_ZN7WebCore10ScrollView5paintEPNS_15GraphicsContextERKNS_7IntRectE
fun:_ZN6WebKit12WebFrameImpl16paintWithContextERN7WebCore15GraphicsContextERKNS_7WebRectE
fun:_ZN6WebKit12WebFrameImpl5paintEPN4skia14PlatformCanvasERKNS_7WebRectE
fun:_ZN6WebKit11WebViewImpl5paintEPN4skia14PlatformCanvasERKNS_7WebRectE
fun:_Z19PaintViewIntoCanvasPN6WebKit7WebViewERN4skia14PlatformCanvasE
fun:_ZN10RenderView16CaptureThumbnailEPN6WebKit7WebViewEiiP8SkBitmapP14ThumbnailScore
}
{
bug_41186
Memcheck:Addr1
fun:_ZNK16GtkThemeProvider11UseGtkThemeEv
fun:_ZN12browser_sync53_GLOBAL__N__ZN12browser_sync22kCurrentThemeClientTagE14UseSystemThemeEP7Profile
fun:_ZN12browser_sync33GetThemeSpecificsFromCurrentThemeEP7ProfilePN7sync_pb14ThemeSpecificsE
fun:_ZN12browser_sync44SetCurrentThemeFromThemeSpecificsIfNecessaryERKN7sync_pb14ThemeSpecificsEP7Profile
}
{
bug_42185
Memcheck:Leak
fun:_Znw*
fun:_Z28AutoFillProfileFromStatementRKN3sql9StatementE
fun:_ZN11WebDatabase19GetAutoFillProfilesEPSt6vectorIP15AutoFillProfileSaIS2_EE
fun:_ZN14WebDataService23GetAutoFillProfilesImplEPNS_14WebDataRequestE
}
{
bug_42185
Memcheck:Leak
fun:_Znw*
...
fun:_ZN72_GLOBAL__N_chrome_browser_autofill_autofill_profile.cc_00000000_DBC6D82516InitPersonalInfoEPSt3mapIN12AutoFillType14FieldTypeGroupEP9FormGroupSt4lessIS2_ESaISt4pairIKS2_S4_EEE
fun:_ZN15AutoFillProfileC1ERKSbItN4base20string16_char_traitsESaItEEi
fun:_Z28AutoFillProfileFromStatementRKN3sql9StatementE
fun:_ZN11WebDatabase19GetAutoFillProfilesEPSt6vectorIP15AutoFillProfileSaIS2_EE
fun:_ZN14WebDataService23GetAutoFillProfilesImplEPNS_14WebDataRequestE
fun:_Z16DispatchToMethodI14WebDataServiceMS0_FvPNS0_14WebDataRequestEES2_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodI14WebDataServiceMS0_FvPNS0_14WebDataRequestEE6Tuple1IS2_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_42389
Memcheck:Leak
...
fun:malloc
fun:g_malloc
...
fun:gdk_pixbuf_loader_write
fun:_ZN10IconLoader9ParseIconEv
}
{
bug_42590
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMalloc*
fun:_ZN7WebCore10StringImpl19createUninitializedEjRPt
fun:_ZN7WebCore10StringImpl6createEPKcj
fun:_ZN7WebCore10StringImpl6createEPKc
fun:_ZN3WTF17CStringTranslator9translateERPN7WebCore10StringImplERKPKcj
fun:_ZN3WTF24HashSetTranslatorAdapterIPN7WebCore10StringImplENS_10HashTraitsIS3_EEPKcNS_17CStringTranslatorEE9translateERS3_RKS7_SC_j
...
}
{
bug_42842
Memcheck:Leak
fun:_Znw*
fun:_ZN19TestWebViewDelegate12createWorkerEPN6WebKit8WebFrameEPNS0_15WebWorkerClientE
fun:_ZN6WebKit19WebWorkerClientImpl24createWorkerContextProxyEPN7WebCore6WorkerE
fun:_ZN7WebCore18WorkerContextProxy6createEPNS_6WorkerE
fun:_ZN7WebCore6WorkerC1ERKNS_6StringEPNS_22ScriptExecutionContextERi
fun:_ZN7WebCore6Worker6createERKNS_6StringEPNS_22ScriptExecutionContextERi
fun:_ZN7WebCore8V8Worker19constructorCallbackERKN2v89ArgumentsE
fun:_ZN2v88internal19HandleApiCallHelperILb1EEEPNS0_6ObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_00000000_2CCEFB9216BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
obj:*
}
{
bug_42866
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN7WebCore12Notification6createERKNS_20NotificationContentsEPNS_22ScriptExecutionContextERiPNS_21NotificationPresenterE
fun:_ZN7WebCore18NotificationCenter18createNotificationERKNS_6StringES3_S3_Ri
fun:_ZN7WebCore20V8NotificationCenter26createNotificationCallbackERKN2v89ArgumentsE
fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_6ObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_00000000_2CCEFB9216BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
obj:*
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
}
{
bug_42880
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSt3setIiSt4lessIiESaIiEEEEE8allocateEmPKv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3setIiSt4lessIiESaIiEEESt10_Select1stIS7_ES3_ISsESaIS7_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3setIiSt4lessIiESaIiEEESt10_Select1stIS7_ES3_ISsESaIS7_EE14_M_create_nodeERKS7_
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3setIiSt4lessIiESaIiEEESt10_Select1stIS7_ES3_ISsESaIS7_EE9_M_insertEPSt18_Rb_tree_node_baseSE_RKS7_
...
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSt3setIiSt4lessIiESaIiEEESt10_Select1stIS7_ES3_ISsESaIS7_EE13insert_uniqueESt17_Rb_tree_iteratorIS7_ERKS7_
fun:_ZNSt3mapISsSt3setIiSt4lessIiESaIiEES1_ISsESaISt4pairIKSsS4_EEE6insertESt17_Rb_tree_iteratorIS8_ERKS8_
fun:_ZNSt3mapISsSt3setIiSt4lessIiESaIiEES1_ISsESaISt4pairIKSsS4_EEEixERS7_
fun:_ZN23ExtensionMessageService24DispatchEventToRenderersERKSsS1_bRK4GURL
fun:_ZL13DispatchEventP7ProfilePKcSs
}
{
bug_42896
Memcheck:Addr4
fun:_ZNK12TransportDIB6handleEv
fun:_ZN18ThumbnailGenerator15AskForThumbnailEP16RenderWidgetHostP14CallbackRunnerI6Tuple1IRK8SkBitmapEEN3gfx4SizeE
fun:_ZN8chromeos15BrowserListener13ConfigureCellEPNS_18WmOverviewSnapshotEP11TabContents
fun:_ZN8chromeos15BrowserListener33ConfigureNextUnconfiguredSnapshotEv
fun:_ZN8chromeos20WmOverviewController33ConfigureNextUnconfiguredSnapshotEv
fun:_Z16DispatchToMethodIN8chromeos20WmOverviewControllerEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN4base9BaseTimerIN8chromeos20WmOverviewControllerELb1EE9TimerTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop13DoDelayedWorkEPN4base4TimeE
...
}
{
bug_42897
Memcheck:Leak
fun:malloc
fun:realloc
fun:_ZN6Pickle6ResizeEj
fun:_ZN6PickleC2Ei
fun:_ZN3IPC7MessageC2EijNS0_13PriorityValueE
fun:_ZN3IPC16MessageWithTupleI6Tuple1IiEEC2EijRKS1_IRKiE
fun:_ZN26AppCacheMsg_UnregisterHostC1ERKi
fun:_ZN20AppCacheBackendProxy14UnregisterHostEi
fun:_ZN8appcache27WebApplicationCacheHostImplD2Ev
fun:_ZN35RendererWebApplicationCacheHostImplD0Ev
fun:_ZN3WTF14deleteOwnedPtrIN6WebKit23WebApplicationCacheHostEEEvPT_
fun:_ZN3WTF6OwnPtrIN6WebKit23WebApplicationCacheHostEED1Ev
fun:_ZN7WebCore28ApplicationCacheHostInternalD0Ev
fun:_ZN3WTF14deleteOwnedPtrIN7WebCore28ApplicationCacheHostInternalEEEvPT_
fun:_ZN3WTF6OwnPtrIN7WebCore28ApplicationCacheHostInternalEED1Ev
fun:_ZN7WebCore20ApplicationCacheHostD1Ev
fun:_ZN3WTF14deleteOwnedPtrIN7WebCore20ApplicationCacheHostEEEvPT_
fun:_ZN3WTF6OwnPtrIN7WebCore20ApplicationCacheHostEED1Ev
fun:_ZN7WebCore14DocumentLoaderD2Ev
fun:_ZN6WebKit17WebDataSourceImplD0Ev
fun:_ZN3WTF10RefCountedIN7WebCore14DocumentLoaderEE5derefEv
fun:_ZN3WTF6RefPtrIN7WebCore14DocumentLoaderEED1Ev
}
{
bug_42941
Memcheck:Addr4
fun:_ZN22TestShellDevToolsAgent11GetWebAgentEv
fun:_ZN22TestShellDevToolsAgent22evaluateInWebInspectorElRKSs
fun:_ZN20LayoutTestController22evaluateInWebInspectorERKSt6vectorI10CppVariantSaIS1_EEPS1_
fun:_Z16DispatchToMethodI20LayoutTestControllerMS0_FvRKSt6vectorI10CppVariantSaIS2_EEPS2_ES6_S7_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN12CallbackImplI20LayoutTestControllerMS0_FvRKSt6vectorI10CppVariantSaIS2_EEPS2_E6Tuple2IS6_S7_EE13RunWithParamsERKSB_
fun:_ZN14CallbackRunnerI6Tuple2IRKSt6vectorI10CppVariantSaIS2_EEPS2_EE3RunIS4_S7_EEvRKT_RKT0_
fun:_ZN13CppBoundClass6InvokeEPvPK10_NPVariantjPS1_
fun:_ZN11CppNPObject6invokeEP8NPObjectPvPK10_NPVariantjPS3_
fun:_Z18npObjectInvokeImplRKN2v89ArgumentsE18InvokeFunctionType
fun:_Z21npObjectMethodHandlerRKN2v89ArgumentsE
fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_6ObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_00000000_2CCEFB9216BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
fun:_ZN7WebCore14ChromiumBridge13memoryUsageMBEv
}
{
bug_42942
Memcheck:Leak
fun:_Znw*
fun:_ZN3sql10Connection18GetUniqueStatementEPKc
fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
fun:_ZN3sql9MetaTable19PrepareGetStatementEPNS_9StatementEPKc
fun:_ZN3sql9MetaTable8GetValueEPKcPi
fun:_ZN3sql9MetaTable26GetCompatibleVersionNumberEv
fun:_ZN27SQLitePersistentCookieStore21EnsureDatabaseVersionEPN3sql10ConnectionE
fun:_ZN27SQLitePersistentCookieStore4LoadEPSt6vectorISt4pairISsPN3net13CookieMonster15CanonicalCookieEESaIS6_EE
fun:_ZN3net13CookieMonster9InitStoreEv
fun:_ZN3net13CookieMonster15InitIfNecessaryEv
fun:_ZN3net13CookieMonster27FindCookiesForHostAndDomainERK4GURLRKNS_13CookieOptionsEPSt6vectorIPNS0_15CanonicalCookieESaIS9_EE
fun:_ZN3net13CookieMonster21GetCookiesWithOptionsERK4GURLRKNS_13CookieOptionsE
fun:_ZN17URLRequestHttpJob24OnCanGetCookiesCompletedEi
fun:_ZN17URLRequestHttpJob23AddCookieHeaderAndStartEv
fun:_ZN17URLRequestHttpJob5StartEv
fun:_ZN10URLRequest8StartJobEP13URLRequestJob
fun:_ZN10URLRequest5StartEv
fun:_ZN10URLFetcher4Core15StartURLRequestEv
fun:_Z16DispatchToMethodIN10URLFetcher4CoreEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodIN10URLFetcher4CoreEMS1_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
}
{
bug_42958_a
Memcheck:Leak
fun:malloc
...
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_NPN_RegisterObject
fun:_ZN7WebCore16ScriptController20windowScriptNPObjectEv
fun:_ZNK6WebKit12WebFrameImpl12windowObjectEv
fun:_ZN11webkit_glue13WebPluginImpl23GetWindowScriptNPObjectEv
fun:NPN_GetValue
}
{
bug_42958_b
Memcheck:Leak
fun:malloc
...
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_NPN_RegisterObject
fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
fun:_ZN7WebCore16ScriptController18bindToWindowObjectEPNS_5FrameERKNS_6StringEP8NPObject
fun:_ZN6WebKit12WebFrameImpl18bindToWindowObjectERKNS_9WebStringEP8NPObject
fun:_ZN13CppBoundClass16BindToJavascriptEPN6WebKit8WebFrameERKSbIwSt11char_traitsIwESaIwEE
}
{
bug_42958_c
Memcheck:Leak
fun:malloc
...
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_NPN_RegisterObject
fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
fun:_ZN7WebCore16ScriptController29createScriptInstanceForWidgetEPNS_6WidgetE
fun:_ZNK7WebCore17HTMLPlugInElement11getInstanceEv
}
{
bug_43451
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
obj:/usr/lib/libstdc++.so.6.0.9
fun:_ZNSsC1EPKcRKSaIcE
fun:_ZN17RenderProcessImplC1Ev
fun:_Z12RendererMainRK18MainFunctionParams
}
{
bug_43471
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorIPN11MessageLoop19DestructionObserverEE8allocateEjPKv
fun:_ZNSt12_Vector_baseIPN11MessageLoop19DestructionObserverESaIS2_EE11_M_allocateEj
fun:_ZNSt6vectorIPN11MessageLoop19DestructionObserverESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_
fun:_ZNSt6vectorIPN11MessageLoop19DestructionObserverESaIS2_EE9push_backERKS2_
fun:_ZN16ObserverListBaseIN11MessageLoop19DestructionObserverEE11AddObserverEPS1_
fun:_ZN11MessageLoop22AddDestructionObserverEPNS_19DestructionObserverE
}
{
bug_43613a
Memcheck:Cond
fun:_ZN8syncable11EntryKernel11clear_dirtyEPSt3setIxSt4lessIxESaIxEE
fun:_ZN8syncable10ZeroFieldsEPNS_11EntryKernelEi
fun:_ZN8syncable12MutableEntry4InitEPNS_16WriteTransactionERKNS_2IdERKSs
fun:_ZN8syncable12MutableEntryC1EPNS_16WriteTransactionENS_6CreateERKNS_2IdERKSs
fun:_ZN8sync_api9WriteNode14InitByCreationEN8syncable9ModelTypeERKNS_8BaseNodeEPS4_
...
fun:_ZN12browser_sync23BookmarkModelAssociator28SyncModelHasUserCreatedNodesEPb
fun:_ZN12browser_sync26BookmarkDataTypeController9AssociateEv
fun:_ZN12browser_sync26BookmarkDataTypeController5StartEP14CallbackRunnerI6Tuple1INS_18DataTypeController11StartResultEEE
fun:_ZN12browser_sync19DataTypeManagerImpl13StartNextTypeEv
fun:_ZN12browser_sync19DataTypeManagerImpl7ObserveE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN19NotificationService6NotifyE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZNK13NotifyActionPIN16NotificationType4TypeEE10gmock_ImplIFvvEE17gmock_PerformImplIN7testing8internal12ExcessiveArgES9_S9_S9_S9_S9_S9_S9_S9_S9_EEvRKNSt3tr15tupleINSA_10_NullClassESC_SC_SC_SC_SC_SC_SC_SC_SC_EET_T0_T1_T2_T3_T4_T5_T6_T7_T8_
...
}
{
bug_43613b
Memcheck:Cond
fun:_ZN8syncable11EntryKernel11clear_dirtyEPSt3setIxSt4lessIxESaIxEE
fun:_ZN8syncable11UnpackEntryEP12SQLStatementPPNS_11EntryKernelE
fun:_ZN8syncable21DirectoryBackingStore11LoadEntriesEPSt3setIPNS_11EntryKernelENS_9LessFieldINS_15MetahandleFieldELS5_0EEESaIS3_EE
fun:_ZN8syncable21DirectoryBackingStore4LoadEPSt3setIPNS_11EntryKernelENS_9LessFieldINS_15MetahandleFieldELS5_0EEESaIS3_EEPSt3mapINS_20ExtendedAttributeKeyENS_22ExtendedAttributeValueESt4lessISB_ESaISt4pairIKSB_SC_EEEPNS_9Directory14KernelLoadInfoE
fun:_ZN8syncable9Directory8OpenImplERK8FilePathRKSs
fun:_ZN8syncable9Directory4OpenERK8FilePathRKSs
fun:_ZN8syncable16DirectoryManager8OpenImplERKSsRK8FilePathPb
fun:_ZN8syncable16DirectoryManager4OpenERKSs
...
}
{
bug_43914
Memcheck:Leak
fun:_Znw*
fun:_ZN17FilebrowseHandler4InitEv
fun:_ZN12FileBrowseUIC1EP11TabContents
fun:_Z8NewDOMUII12FileBrowseUIEP5DOMUIP11TabContentsRK4GURL
fun:_ZN12DOMUIFactory17CreateDOMUIForURLEP11TabContentsRK4GURL
fun:_ZN11TabContents27CreateDOMUIForRenderManagerERK4GURL
fun:_ZN21RenderViewHostManager30UpdateRendererStateForNavigateERK15NavigationEntry
fun:_ZN21RenderViewHostManager8NavigateERK15NavigationEntry
}
{
bug_44341
Memcheck:Cond
fun:memcpy
fun:fill_window
fun:deflate_slow
fun:deflate
fun:ssl3_DeflateCompress
fun:ssl3_CompressMACEncryptRecord
fun:ssl3_SendRecord
fun:SSL3_SendAlert
fun:ssl_SecureClose
fun:ssl_Close
fun:PR_Close
fun:_ZN3net18SSLClientSocketNSS10DisconnectEv
...
}
{
bug_44341
Memcheck:Value4
fun:memcpy
fun:fill_window
fun:deflate_slow
fun:deflate
fun:ssl3_DeflateCompress
fun:ssl3_CompressMACEncryptRecord
fun:ssl3_SendRecord
fun:SSL3_SendAlert
fun:ssl_SecureClose
fun:ssl_Close
fun:PR_Close
fun:_ZN3net18SSLClientSocketNSS10DisconnectEv
...
}
{
bug_44341
Memcheck:Value4
fun:rijndael_encryptBlock128
fun:rijndael_encryptCBC
...
fun:_ZN3net18SSLClientSocketNSS14DoPayloadWriteEv
...
}
{
bug_44341
Memcheck:Cond
fun:memcpy
fun:fill_window
fun:deflate_slow
...
fun:_ZN3net18SSLClientSocketNSS14DoPayloadWriteEv
...
}
{
bug_44341
Memcheck:Value4
fun:memcpy
fun:fill_window
fun:deflate_slow
...
fun:_ZN3net18SSLClientSocketNSS14DoPayloadWriteEv
...
}
{
bug_44966
Memcheck:Addr8
fun:event_del
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher26StopWatchingFileDescriptorEv
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcherD1Ev
fun:_ZN61MessageLoopTest_FileDescriptorWatcherOutlivesMessageLoop_Test8TestBodyEv
}
{
bug_44966
Memcheck:Addr4
fun:event_del
...
fun:*FileDescriptorWatcherOutlivesMessageLoop_Test8TestBodyEv
}
{
bug_45133
Memcheck:Leak
fun:_Znw*
...
fun:_ZN23ExtensionMessageService24DispatchEventToRenderersERKSsS1_bRK4GURL
fun:_Z13DispatchEventP7ProfilePKcSs
fun:_ZN27ExtensionBrowserEventRouter13TabSelectedAtEP11TabContentsS1_ib
fun:_ZN13TabStripModel26ChangeSelectedContentsFromEP11TabContentsib
fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbbb
fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbb
fun:_ZN13TabStripModel14AddTabContentsEP11TabContentsibjb
fun:_ZN7Browser13AddTabWithURLERK4GURLS2_jiiP12SiteInstanceRKSs
fun:_ZN11BrowserInit17LaunchWithProfile17OpenTabsInBrowserEP7BrowserbRKSt6vectorINS0_3TabESaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vectorI4GURLSaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile17ProcessLaunchURLsEbRKSt6vectorI4GURLSaIS2_EE
fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7Profileb
fun:_ZN11BrowserInit13LaunchBrowserERK11CommandLineP7ProfileRKSbIwSt11char_traitsIwESaIwEEbPi
fun:_ZN11BrowserInit18ProcessCmdLineImplERK11CommandLineRKSbIwSt11char_traitsIwESaIwEEbP7ProfilePiPS_
}
{
bug_45210
Memcheck:Leak
fun:malloc
obj:/usr/lib/libcairo.so.2.17.3
obj:/usr/lib/libcairo.so.2.17.3
fun:_ZN4skia20BitmapPlatformDevice6CreateEiibPh
fun:_ZN4skia14PlatformCanvas10initializeEiibPh
fun:_ZN12TransportDIB17GetPlatformCanvasEii
fun:_ZN17RenderProcessImpl16GetDrawingCanvasEPP12TransportDIBRKN3gfx4RectE
fun:_ZN12RenderWidget16DoDeferredUpdateEv
fun:_ZN12RenderWidget20CallDoDeferredUpdateEv
fun:_Z16DispatchToMethodI12RenderWidgetMS0_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodI12RenderWidgetMS0_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
{
bug_45254_InitExtensions_Leak
Memcheck:Leak
fun:_Znw*
fun:_ZN11ProfileImpl14InitExtensionsEv
fun:_ZN14ProfileManager10AddProfileEP7Profileb
fun:_ZN14ProfileManager10GetProfileERK8FilePathb
...
fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath
...
fun:_Z11BrowserMainRK18MainFunctionParams
fun:ChromeMain
fun:main
}
{
Bug_45301_UnknownOwner
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE
fun:_ZN3IPC16MessageWithReplyI6Tuple3I4GURLSsSbIwSt11char_traitsIwESaIwEEE6Tuple2IRNS_13ChannelHandleER13WebPluginInfoEE18DispatchDelayReplyI21ResourceMessageFilterMSG_FvRKS2_RKSsRKS6_PNS_7MessageEEEEbPKSN_PT_T0_
fun:_ZN21ResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE
fun:_ZN3IPC11SyncChannel11SyncContext17OnMessageReceivedERKNS_7MessageE
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
...
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
}
{
bug_45345
Memcheck:Leak
fun:_Znw*
fun:_ZN4base17LoadNativeLibraryERK8FilePath
fun:_ZN5NPAPI9PluginLib4LoadEv
fun:_ZN5NPAPI9PluginLib13NP_InitializeEv
fun:_ZN21WebPluginDelegateImpl6CreateERK8FilePathRKSsy
fun:_ZN19TestWebViewDelegate20CreatePluginDelegateERK8FilePathRKSs
fun:_ZN11webkit_glue13WebPluginImpl10initializeEPN6WebKit18WebPluginContainerE
fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINS1_6StringELm0EEESF_RKSC_b
fun:_ZN7WebCore11FrameLoader10loadPluginEPNS_20RenderEmbeddedObjectERKNS_4KURLERKNS_6StringERKN3WTF6VectorIS6_Lm0EEESD_b
fun:_ZN7WebCore11FrameLoader13requestObjectEPNS_20RenderEmbeddedObjectERKNS_6StringERKNS_12AtomicStringES5_RKN3WTF6VectorIS3_Lm0EEESD_
fun:_ZN7WebCore20RenderEmbeddedObject12updateWidgetEb
fun:_ZN7WebCore9FrameView13updateWidgetsEv
fun:_ZN7WebCore9FrameView22performPostLayoutTasksEv
fun:_ZN7WebCore9FrameView6layoutEb
}
{
bug_46144
Memcheck:Leak
...
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN3WTF20ThreadIdentifierData10initializeEj
}
{
bug_46163
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_46162_a
Memcheck:Leak
...
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEE3setEPS1_
fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEcvPS1_Ev
fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEdeEv
fun:_ZN3WTF13wtfThreadDataEv
fun:_ZN7WebCore11stringTableEv
fun:_ZN7WebCore12AtomicString3addEPKc
fun:_ZN7WebCore12AtomicStringC1EPKc
fun:_ZN7WebCore12AtomicString4initEv
fun:_ZN6WebKit10initializeEPNS_12WebKitClientE
fun:_ZN12WebKitThread20InternalWebKitThread4InitEv
fun:_ZN4base6Thread10ThreadMainEv
}
{
bug_46162_b
Memcheck:Leak
...
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEE3setEPS1_
fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEcvPS1_Ev
fun:_ZN3WTF14ThreadSpecificINS_13WTFThreadDataEEdeEv
fun:_ZN3WTF13wtfThreadDataEv
fun:_ZN3WTF11stringTableEv
fun:_ZN3WTF12AtomicString3addEPKc
fun:_ZN3WTF12AtomicStringC1EPKc
fun:_ZN3WTF12AtomicString4initEv
fun:_ZN6WebKit10initializeEPNS_12WebKitClientE
fun:_ZN12WebKitThread20InternalWebKitThread4InitEv
fun:_ZN4base6Thread10ThreadMainEv
}
{
bug_46161
Memcheck:Leak
fun:_Znw*
fun:_ZN3net14DnsReloadTimer7ExpiredEv
fun:_ZN3net24DnsReloadTimerHasExpiredEv
fun:_ZN3net22SystemHostResolverProcERKSsNS_13AddressFamilyEiPNS_11AddressListEPi
fun:_ZN3net15ResolveAddrInfoEPNS_16HostResolverProcERKSsNS_13AddressFamilyEiPNS_11AddressListEPi
fun:_ZN3net16HostResolverImpl3Job8DoLookupEv
fun:_Z16DispatchToMethodIN3net16HostResolverImpl3JobEMS2_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodIN3net16HostResolverImpl3JobEMS2_FvvE6Tuple0E3RunEv
}
{
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:_ZN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankObserver21AttachToCurrentThreadEv
fun:_Z16DispatchToMethodIN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankObserverEMS1_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodIN57_GLOBAL__N_chrome_browser_jankometer.cc_*IOJankObserverEMS1_FvvE6Tuple0E3RunEv
}
{
bug_46331
Memcheck:Leak
fun:_Znw*
fun:_ZN12ChromeThread28GetMessageLoopProxyForThreadENS_2IDE
fun:_ZN29ChromeURLRequestContextGetter21GetIOMessageLoopProxyEv
fun:_ZN23URLRequestContextGetter10OnDestructEv
fun:_ZN29URLRequestContextGetterTraits8DestructEP23URLRequestContextGetter
fun:_ZN4base20RefCountedThreadSafeI23URLRequestContextGetter29URLRequestContextGetterTraitsE7ReleaseEv
fun:_ZN13scoped_refptrI23URLRequestContextGetterED1Ev
fun:_ZN27SafeBrowsingProtocolManagerD1Ev
fun:_ZN19SafeBrowsingService12OnIOShutdownEv
fun:_Z16DispatchToMethodI19SafeBrowsingServiceMS0_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodI19SafeBrowsingServiceMS0_FvvE6Tuple0E3RunEv
}
{
bug_46332
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendEPKcj
fun:_ZNSs6appendEPKc
fun:_ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_PKS3_
fun:_ZNK21URLRequestMockHTTPJob20GetResponseInfoConstEPN3net16HttpResponseInfoE
}
{
bug_46345
Memcheck:Leak
fun:_Znw*
fun:_ZN22ResourceDispatcherHost23CompleteResponseStartedEP10URLRequest
fun:_ZN22ResourceDispatcherHost17OnResponseStartedEP10URLRequest
fun:_ZN10URLRequest15ResponseStartedEv
fun:_ZN13URLRequestJob21NotifyHeadersCompleteEv
fun:_ZN17URLRequestFileJob10DidResolveEbRKN9file_util8FileInfoE
fun:_Z16DispatchToMethodI17URLRequestFileJobMS0_FvbRKN9file_util8FileInfoEEbS2_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN14RunnableMethodI17URLRequestFileJobMS0_FvbRKN9file_util8FileInfoEE6Tuple2IbS2_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
}
{
bug_46420
Memcheck:Addr4
fun:_Z25WillHandleBrowserAboutURLP4GURLP7Profile
fun:_ZN54BrowserAboutHandlerTest_WillHandleBrowserAboutURL_Test8TestBodyEv
}
{
bug_46558
Memcheck:Cond
fun:_ZN8chromeos11CrosLibraryD0Ev
fun:_ZN22DefaultSingletonTraitsIN8chromeos11CrosLibraryEE6DeleteEPS1_
fun:_ZN9SingletonIN8chromeos11CrosLibraryE22DefaultSingletonTraitsIS1_ES1_E6OnExitEPv
fun:_ZN4base13AtExitManager19ProcessCallbacksNowEv
fun:_ZN4base13AtExitManagerD1Ev
}
{
bug_46560
Memcheck:Leak
fun:_Znw*
fun:_ZN8chromeos11CrosLibrary18GetKeyboardLibraryEv
fun:_ZN8chromeos18LanguageMenuButtonC1EPNS_14StatusAreaHostE
fun:_ZN8chromeos14StatusAreaView4InitEv
fun:_ZN8chromeos21BrowserStatusAreaView4InitEv
fun:_ZN8chromeos11BrowserView4InitEv
fun:_ZN11BrowserView20ViewHierarchyChangedEbPN5views4ViewES2_
fun:_ZN5views4View24ViewHierarchyChangedImplEbbPS0_S1_
fun:_ZN5views4View25PropagateAddNotificationsEPS0_S1_
fun:_ZN5views4View12AddChildViewEiPS0_
fun:_ZN5views13NonClientView20ViewHierarchyChangedEbPNS_4ViewES2_
fun:_ZN5views4View24ViewHierarchyChangedImplEbbPS0_S1_
fun:_ZN5views4View25PropagateAddNotificationsEPS0_S1_
fun:_ZN5views4View12AddChildViewEiPS0_
fun:_ZN5views4View12AddChildViewEPS0_
fun:_ZN5views8RootView15SetContentsViewEPNS_4ViewE
fun:_ZN5views9WidgetGtk15SetContentsViewEPNS_4ViewE
fun:_ZN5views9WindowGtk4InitEP10_GtkWindowRKN3gfx4RectE
fun:_ZN15BrowserFrameGtk4InitEv
fun:_ZN8chromeos20BrowserFrameChromeos4InitEv
}
{
bug_46569
Memcheck:Leak
fun:_Znw*
fun:_ZN3net10FileStream12AsyncContext23OnBackgroundIOCompletedEi
fun:_Z16DispatchToMethodIN3net10FileStream12AsyncContextEMS2_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplIN3net10FileStream12AsyncContextEMS2_FviE6Tuple1IiEE13RunWithParamsERKS6_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
}
{
bug_46570_a
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
fun:_ZNSs4_Rep8_M_cloneERKSaIcEj
fun:_ZNSs7reserveEj
fun:_ZNSs6appendERKSs
fun:_ZNK8FilePath6AppendERKSs
fun:_ZN9file_util31CreateAndOpenFdForTemporaryFileE8FilePathPS0_
fun:_ZN9file_util31CreateAndOpenTemporaryFileInDirERK8FilePathPS0_
fun:_ZN9file_util31CreateAndOpenTemporaryShmemFileEP8FilePath
fun:_ZN4base12SharedMemory12CreateOrOpenERKSbIwSt11char_traitsIwESaIwEEij
fun:_ZN4base12SharedMemory6CreateERKSbIwSt11char_traitsIwESaIwEEbbj
fun:_ZN14SharedIOBuffer4InitEv
fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
...
fun:_ZN22ResourceDispatcherHost4ReadEP10URLRequestPi
fun:_ZN22ResourceDispatcherHost15OnReadCompletedEP10URLRequesti
fun:_ZN13URLRequestJob18NotifyReadCompleteEi
}
{
bug_46570_b
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
...
fun:_ZNSsC1EPKcRKSaIcE
fun:_ZN9file_util15GetShmemTempDirEP8FilePath
fun:_ZN9file_util31CreateAndOpenTemporaryShmemFileEP8FilePath
fun:_ZN4base12SharedMemory12CreateOrOpenERKSbIwSt11char_traitsIwESaIwEEij
fun:_ZN4base12SharedMemory6CreateERKSbIwSt11char_traitsIwESaIwEEbbj
fun:_ZN14SharedIOBuffer4InitEv
fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN22ResourceDispatcherHost4ReadEP10URLRequestPi
fun:_ZN22ResourceDispatcherHost15OnReadCompletedEP10URLRequesti
fun:_ZN13URLRequestJob18NotifyReadCompleteEi
fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory
fun:_ZN20ChromeURLDataManager13DataAvailableEi13scoped_refptrI16RefCountedMemoryE
fun:_Z16DispatchToMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCountedMemoryEEiS3_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN14RunnableMethodI20ChromeURLDataManagerMS0_Fvi13scoped_refptrI16RefCountedMemoryEE6Tuple2IiS3_EE3RunEv
}
{
bug_46570_c
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
...
fun:_ZNSsC1EPKcRKSaIcE
fun:_ZN9file_util15GetShmemTempDirEP8FilePath
fun:_ZN9file_util31CreateAndOpenTemporaryShmemFileEP8FilePath
fun:_ZN4base12SharedMemory12CreateOrOpenERKSbIwSt11char_traitsIwESaIwEEij
fun:_ZN4base12SharedMemory6CreateERKSbIwSt11char_traitsIwESaIwEEbbj
fun:_ZN14SharedIOBuffer4InitEv
fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN22OfflineResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
fun:_ZN22ResourceDispatcherHost4ReadEP10URLRequestPi
fun:_ZN22ResourceDispatcherHost12StartReadingEP10URLRequest
fun:_ZN22ResourceDispatcherHost17OnResponseStartedEP10URLRequest
fun:_ZN10URLRequest15ResponseStartedEv
fun:_ZN13URLRequestJob21NotifyHeadersCompleteEv
fun:_ZN17URLRequestHttpJob21NotifyHeadersCompleteEv
fun:_ZN17URLRequestHttpJob14SaveNextCookieEv
fun:_ZN17URLRequestHttpJob23OnCanSetCookieCompletedEi
fun:_ZN17URLRequestHttpJob14SaveNextCookieEv
}
{
bug_46570_d
Memcheck:Leak
fun:_Znw*
fun:_ZNSs4_Rep9_S_createEjjRKSaIcE
...
fun:_ZN31AutomationResourceMessageFilter17OnSetFilteredInetEb
fun:_Z16DispatchToMethodI31AutomationResourceMessageFilterMS0_FvbEbEvPT_T0_RK6Tuple1IT1_E
fun:_ZN3IPC16MessageWithTupleI6Tuple1IbEE8DispatchI31AutomationResourceMessageFilterMS5_FvbEEEbPKNS_7MessageEPT_T0_
fun:_ZN31AutomationResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE
fun:_ZN3IPC11SyncChannel11SyncContext17OnMessageReceivedERKNS_7MessageE
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
}
{
bug_46678
Memcheck:Leak
fun:_Znw*
fun:_Z11NewCallbackIN8remoting14SessionManagerEPNS0_11HostMessageEiEPN9Callback2IT0_T1_E4TypeEPT_MSA_FvS5_S6_E
fun:_ZN8remoting14SessionManager8DoEncodeE13scoped_refptrINS_11CaptureDataEE
fun:_Z16DispatchToMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0_11CaptureDataEEES4_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN8remoting14SessionManagerEMS1_Fv13scoped_refptrINS0_11CaptureDataEEE6Tuple1IS4_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
...
fun:_ZN8remoting38SessionManagerTest_OneRecordCycle_Test8TestBodyEv
}
{
bug_47331_part_1
Memcheck:Leak
fun:malloc
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
fun:sqlite3DbMallocRaw
fun:sqlite3DbMallocZero
fun:sqlite3StartTable
}
{
bug_47331_part_2
Memcheck:Leak
fun:malloc
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
fun:sqlite3HashInsert
fun:sqlite3EndTable
}
{
bug_47331_part_3
Memcheck:Leak
fun:malloc
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
fun:sqlite3_malloc
fun:pcache1ResizeHash
fun:pcache1Fetch
fun:sqlite3PcacheFetch
fun:sqlite3PagerAcquire2
fun:sqlite3PagerAcquire
fun:btreeGetPage
}
{
bug_47950
Memcheck:Leak
fun:_Znw*
...
fun:*CreateSpdyHeadersFromHttpRequestERKN3net15HttpRequestInfoEPSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE
}
{
bug_48130_a
Memcheck:Leak
fun:_Znw*
fun:*IdMapsC1Ev
...
fun:*IdMapsE22DefaultSingletonTraitsIS1_ES1_E3getEv
fun:_ZN8chromeos12input_method33GetInputMethodIdsFromLanguageCodeERKSsNS0_15InputMethodTypeEPSt6vectorISsSaISsEE
fun:_ZN8chromeos11Preferences4InitEP11PrefService
fun:_ZN11ProfileImplC1ERK8FilePath
fun:_ZN7Profile13CreateProfileERK8FilePath
fun:_ZN14ProfileManager13CreateProfileERK8FilePath
}
{
bug_48130_b
Memcheck:Leak
fun:_Znw*
...
fun:*AddInputMethodToMapsERKSsRKN8chromeos21InputMethodDescriptorE
...
fun:_ZN8chromeos12input_method33GetInputMethodIdsFromLanguageCodeERKSsNS0_15InputMethodTypeEPSt6vectorISsSaISsEE
fun:_ZN8chromeos11Preferences4InitEP11PrefService
fun:_ZN11ProfileImplC1ERK8FilePath
fun:_ZN7Profile13CreateProfileERK8FilePath
fun:_ZN14ProfileManager13CreateProfileERK8FilePath
}
{
bug_48130_c
Memcheck:Leak
fun:_Znw*
...
fun:*IdMapsC1Ev
...
fun:*IdMapsE22DefaultSingletonTraitsIS1_ES1_E3getEv
fun:_ZN8chromeos12input_method31GetInputMethodDisplayNameFromIdERKSs
fun:_ZN22LanguageOptionsHandler18GetInputMethodListEv
fun:_ZN22LanguageOptionsHandler18GetLocalizedValuesEP15DictionaryValue
fun:_ZN9OptionsUI23AddOptionsPageUIHandlerEP15DictionaryValueP20OptionsPageUIHandler
fun:_ZN9OptionsUIC1EP11TabContents
}
{
bug_48553
Memcheck:Leak
...
fun:malloc
fun:pa_xmalloc
obj:/usr/lib/libpulse.so.0.4.1
...
fun:_ZN8chromeos15PulseAudioMixer14PulseAudioInitEv
fun:_ZN8chromeos15PulseAudioMixer6DoInitEP14CallbackRunnerI6Tuple1IbEE
fun:_Z16DispatchToMethodIN8chromeos15PulseAudioMixerEMS1_FvP14CallbackRunnerI6Tuple1IbEEES6_EvPT_T0_RKS3_IT1_E
fun:_ZN14RunnableMethodIN8chromeos15PulseAudioMixerEMS1_FvP14CallbackRunnerI6Tuple1IbEEES3_IS6_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_48557_1
Memcheck:Leak
fun:_Znw*
fun:_ZN4base10SyncSocket10CreatePairEPPS0_
fun:_ZN15AudioSyncReader4InitEv
fun:_ZN17AudioRendererHost14OnCreateStreamERKN3IPC7MessageEiRK37ViewHostMsg_Audio_CreateStream_Paramsb
fun:_ZN21AudioRendererHostTest16CreateLowLatencyEv
fun:_ZN54AudioRendererHostTest_CreateLowLatencyAndShutdown_Test8TestBodyEv
}
{
bug_48557_2
Memcheck:Leak
fun:_Znw*
fun:_ZN4base10SyncSocket10CreatePairEPPS0_
fun:_ZN15AudioSyncReader4InitEv
fun:_ZN17AudioRendererHost14OnCreateStreamERKN3IPC7MessageEiRK37ViewHostMsg_Audio_CreateStream_Paramsb
fun:_ZN21AudioRendererHostTest16CreateLowLatencyEv
fun:_ZN51AudioRendererHostTest_CreateLowLatencyAndClose_Test8TestBodyEv
}
{
bug_49262
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIPN11PrefService10PreferenceEEE8allocateEjPKv
fun:_ZNSt8_Rb_treeIPN11PrefService10PreferenceES2_St9_IdentityIS2_ENS0_24PreferencePathComparatorESaIS2_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeIPN11PrefService10PreferenceES2_St9_IdentityIS2_ENS0_24PreferencePathComparatorESaIS2_EE14_M_create_nodeERKS2_
fun:_ZNSt8_Rb_treeIPN11PrefService10PreferenceES2_St9_IdentityIS2_ENS0_24PreferencePathComparatorESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseS9_RKS2_
fun:_ZNSt8_Rb_treeIPN11PrefService10PreferenceES2_St9_IdentityIS2_ENS0_24PreferencePathComparatorESaIS2_EE16_M_insert_uniqueERKS2_
fun:_ZNSt3setIPN11PrefService10PreferenceENS0_24PreferencePathComparatorESaIS2_EE6insertERKS2_
fun:_ZN11PrefService18RegisterPreferenceEPNS_10PreferenceE
}
{
bug_49266
Memcheck:Cond
fun:_ZN18ProfileSyncService7ObserveE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN19NotificationService6NotifyE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN12browser_sync19DataTypeManagerImpl10NotifyDoneENS_15DataTypeManager15ConfigureResultE
}
{
bug_49279
Memcheck:Leak
fun:_Znw*
...
fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
fun:_ZN12_GLOBAL__N_118FactoryForOriginalC2EP7ProfileRK8FilePathS5_i
fun:_ZN29ChromeURLRequestContextGetter14CreateOriginalEP7ProfileRK8FilePathS4_i
fun:_ZN11ProfileImpl17GetRequestContextEv
}
{
bug_50056
Memcheck:Leak
fun:_Znw*
fun:_Z11NewCallbackI22ContentSettingsHandlerPK5ValueEPN9Callback1IT0_E4TypeEPT_MS9_FvS5_E
fun:_ZN22ContentSettingsHandler16RegisterMessagesEv
fun:_ZN17DOMMessageHandler6AttachEP5DOMUI
fun:_ZN9OptionsUI23AddOptionsPageUIHandlerEP15DictionaryValueP20OptionsPageUIHandler
fun:_ZN9OptionsUIC1EP11TabContents
fun:_Z8NewDOMUII9OptionsUIEP5DOMUIP11TabContentsRK4GURL
}
{
bug_50252
Memcheck:Leak
fun:malloc
fun:realloc
...
fun:min_heap_reserve
fun:event_add
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_50304
Memcheck:Leak
...
fun:_ZN7history14HistoryBackend8InitImplEv
fun:_ZN7history14HistoryBackend4InitEb
fun:_Z16DispatchToMethodIN7history14HistoryBackendEMS1_FvbEbEvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN7history14HistoryBackendEMS1_FvbE6Tuple1IbEE3RunEv
}
{
bug_50630
Memcheck:Value4
fun:modp_b64_encode
fun:_ZN4base12Base64EncodeERKSsPSs
fun:_Z24ConvertSkBitmapToDataURLRK8SkBitmap
fun:_ZN22InternetOptionsHandler10GetNetworkERKSsRK8SkBitmapS1_bbib
...
fun:_ZN22InternetOptionsHandler18GetLocalizedValuesEP15DictionaryValue
fun:_ZN9OptionsUI23AddOptionsPageUIHandlerEP15DictionaryValueP20OptionsPageUIHandler
fun:_ZN9OptionsUIC1EP11TabContents
}
{
bug_50934
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsSsEEE8allocateEjPKv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE14_M_create_nodeERKS2_
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_
fun:_ZNSt8_Rb_treeISsSt4pairIKSsSsESt10_Select1stIS2_ESt4lessISsESaIS2_EE16_M_insert_uniqueESt17_Rb_tree_iteratorIS2_ERKS2_
fun:_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE6insertESt17_Rb_tree_iteratorIS4_ERKS4_
fun:_ZNSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEEixERS3_
fun:_ZN11CommandLine18AppendSwitchNativeERKSsS1_
fun:_ZN11CommandLine17AppendSwitchASCIIERKSsS1_
fun:_ZNK24BrowserRenderProcessHost25AppendRendererCommandLineEP11CommandLine
fun:_ZN24BrowserRenderProcessHost4InitEbP23URLRequestContextGetter
fun:_ZN14RenderViewHost16CreateRenderViewEP23URLRequestContextGetterRKSbItN4base20string16_char_traitsESaItEE
fun:_ZN11TabContents32CreateRenderViewForRenderManagerEP14RenderViewHost
fun:_ZN21RenderViewHostManager14InitRenderViewEP14RenderViewHostRK15NavigationEntry
fun:_ZN21RenderViewHostManager23CreatePendingRenderViewERK15NavigationEntryP12SiteInstance
fun:_ZN21RenderViewHostManager30UpdateRendererStateForNavigateERK15NavigationEntry
fun:_ZN21RenderViewHostManager8NavigateERK15NavigationEntry
fun:_ZN11TabContents22NavigateToPendingEntryEN20NavigationController10ReloadTypeE
fun:_ZN20NavigationController22NavigateToPendingEntryENS_10ReloadTypeE
fun:_ZN20NavigationController9LoadEntryEP15NavigationEntry
fun:_ZN20NavigationController7LoadURLERK4GURLS2_j
}
{
bug_50936
Memcheck:Leak
fun:_Znw*
...
fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
fun:*FactoryForOffTheRecordC*EP7Profile
...
fun:_ZN29ChromeURLRequestContextGetter18CreateOffTheRecordEP7Profile
...
fun:_ZN23OffTheRecordProfileImpl*Profile
fun:_ZN7Profile25CreateOffTheRecordProfileEv
fun:_ZN11ProfileImpl22GetOffTheRecordProfileEv
fun:_ZN7Browser18NewIncognitoWindowEv
fun:_ZN7Browser29ExecuteCommandWithDispositionEi21WindowOpenDisposition
fun:_ZN7Browser14ExecuteCommandEi
...
fun:_ZN3IPC16MessageWithReplyI6Tuple2IiiE6Tuple1IRbEE18DispatchDelayReplyI18AutomationProviderMS8_FviiPNS_7MessageEEEEbPKS9_PT_T0_
fun:_ZN18AutomationProvider17OnMessageReceivedERKN3IPC7MessageE
}
{
bug_50968
Memcheck:Leak
...
fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
fun:_Z16DispatchToMethodI14WebDataServiceMS0_FvvEEvPT_T0_RK6Tuple0
}
{
bug_51057_a
Memcheck:Leak
fun:_Znw*
...
fun:_ZN3net22HttpNetworkTransaction16DoInitConnectionEv
fun:_ZN3net22HttpNetworkTransaction6DoLoopEi
fun:_ZN3net22HttpNetworkTransaction5StartEPKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
fun:_ZN3net9HttpCache11Transaction13DoSendRequestEv
fun:_ZN3net9HttpCache11Transaction6DoLoopEi
fun:_ZN3net9HttpCache11Transaction12OnIOCompleteEi
fun:_Z16DispatchToMethodIN3net9HttpCache11TransactionEMS2_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplIN3net9HttpCache11TransactionEMS2_FviE6Tuple1IiEE13RunWithParamsERKS6_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net9HttpCache8WorkItem17NotifyTransactionEiPNS0_11ActiveEntryE
fun:_ZN3net9HttpCache16OnBackendCreatedEiPNS0_9PendingOpE
fun:_ZN3net9HttpCache12OnIOCompleteEiPNS0_9PendingOpE
fun:_ZN3net9HttpCache15BackendCallback13RunWithParamsERK6Tuple1IiE
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
}
{
bug_51057_b
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_51057_c
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsN3net8internal26ClientSocketPoolBaseHelper5GroupEEEE8allocateEjPKv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3net8internal26ClientSocketPoolBaseHelper5GroupEESt10_Select1stIS6_ESt4lessISsESaIS6_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3net8internal26ClientSocketPoolBaseHelper5GroupEESt10_Select1stIS6_ESt4lessISsESaIS6_EE14_M_create_nodeERKS6_
fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3net8internal26ClientSocketPoolBaseHelper5GroupEESt10_Select1stIS6_ESt4lessISsESaIS6_EE9_M_insertEPSt18_Rb_tree_node_baseSE_RKS6_
fun:_ZNSt8_Rb_treeISsSt4pairIKSsN3net8internal26ClientSocketPoolBaseHelper5GroupEESt10_Select1stIS6_ESt4lessISsESaIS6_EE16_M_insert_uniqueESt17_Rb_tree_iteratorIS6_ERKS6_
fun:_ZNSt3mapISsN3net8internal26ClientSocketPoolBaseHelper5GroupESt4lessISsESaISt4pairIKSsS3_EEE6insertESt17_Rb_tree_iteratorIS8_ERKS8_
fun:_ZNSt3mapISsN3net8internal26ClientSocketPoolBaseHelper5GroupESt4lessISsESaISt4pairIKSsS3_EEEixERS7_
fun:_ZN3net8internal26ClientSocketPoolBaseHelper13RequestSocketERKSsPKNS1_7RequestE
fun:_ZN3net20ClientSocketPoolBaseINS_15TCPSocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
fun:_ZN3net19TCPClientSocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
fun:_ZN3net18ClientSocketHandle4InitINS_15TCPSocketParamsENS_19TCPClientSocketPoolEEEiRKSsRK13scoped_refptrIT_ENS_15RequestPriorityEP14CallbackRunnerI6Tuple1IiEERKS6_IT0_ERKNS_11BoundNetLogE
fun:_ZN3net22HttpNetworkTransaction16DoInitConnectionEv
fun:_ZN3net22HttpNetworkTransaction6DoLoopEi
fun:_ZN3net22HttpNetworkTransaction5StartEPKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
fun:_ZN3net9HttpCache11Transaction13DoSendRequestEv
fun:_ZN3net9HttpCache11Transaction6DoLoopEi
fun:_ZN3net9HttpCache11Transaction12OnIOCompleteEi
fun:_Z16DispatchToMethodIN3net9HttpCache11TransactionEMS2_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplIN3net9HttpCache11TransactionEMS2_FviE6Tuple1IiEE13RunWithParamsERKS6_
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN3net9HttpCache8WorkItem17NotifyTransactionEiPNS0_11ActiveEntryE
}
{
bug_51058
Memcheck:Leak
fun:_Znw*
fun:_ZN17ImportDataHandler10InitializeEv
fun:_ZN9OptionsUI18InitializeHandlersEv
fun:_ZN18CoreOptionsHandler16HandleInitializeEPK5Value
fun:_Z16DispatchToMethodI18CoreOptionsHandlerMS0_FvPK5ValueES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN12CallbackImplI18CoreOptionsHandlerMS0_FvPK5ValueE6Tuple1IS3_EE13RunWithParamsERKS7_
fun:_ZN14CallbackRunnerI6Tuple1IPK5ValueEE3RunIPK9ListValueEEvRKT_
fun:_ZN5DOMUI19ProcessDOMUIMessageERKSsPK9ListValueRK4GURLib
fun:_ZN11TabContents19ProcessDOMUIMessageERKSsPK9ListValueRK4GURLib
fun:_ZN14RenderViewHost14OnMsgDOMUISendERK4GURLRKSsS4_
fun:_Z16DispatchToMethodI14RenderViewHostMS0_FvRK4GURLRKSsS5_ES1_SsSsEvPT_T0_RK6Tuple3IT1_T2_T3_E
fun:_ZN3IPC16MessageWithTupleI6Tuple3I4GURLSsSsEE8DispatchI14RenderViewHostMS6_FvRKS2_RKSsSA_EEEbPKNS_7MessageEPT_T0_
fun:_ZN14RenderViewHost17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN24BrowserRenderProcessHost17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
}
{
bug_51076_a
Memcheck:Leak
fun:malloc
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_slist_prepend
fun:g_object_init
fun:g_type_create_instance
fun:g_object_constructor
fun:g_object_newv
fun:g_object_new_valist
fun:g_object_new
fun:gtk_views_fixed_new
fun:_ZN5views9WidgetGtk15CreateGtkWidgetEP10_GtkWidgetRKN3gfx4RectE
fun:_ZN5views9WidgetGtk4InitEP10_GtkWidgetRKN3gfx4RectE
fun:_ZN17StatusBubbleViews4InitEv
fun:_ZN17StatusBubbleViews6SetURLERK4GURLRKSbIwSt11char_traitsIwESaIwEE
fun:_ZN7Browser15UpdateTargetURLEP11TabContentsRK4GURL
fun:_ZN11TabContents15UpdateTargetURLEiRK4GURL
fun:_ZN11TabContents30DidNavigateMainFramePostCommitERKN20NavigationController20LoadCommittedDetailsERK32ViewHostMsg_FrameNavigate_Params
fun:_ZN11TabContents11DidNavigateEP14RenderViewHostRK32ViewHostMsg_FrameNavigate_Params
fun:_ZN14RenderViewHost13OnMsgNavigateERKN3IPC7MessageE
fun:_ZN14RenderViewHost17OnMessageReceivedERKN3IPC7MessageE
}
{
bug_51076_b
Memcheck:Leak
fun:malloc
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_slist_prepend
fun:g_object_constructor
fun:g_object_newv
fun:g_object_new_valist
fun:g_object_new
fun:gtk_views_window_new
fun:_ZN5views9WidgetGtk15CreateGtkWidgetEP10_GtkWidgetRKN3gfx4RectE
fun:_ZN5views9WidgetGtk4InitEP10_GtkWidgetRKN3gfx4RectE
fun:_ZN17StatusBubbleViews4InitEv
fun:_ZN17StatusBubbleViews6SetURLERK4GURLRKSbIwSt11char_traitsIwESaIwEE
fun:_ZN7Browser15UpdateTargetURLEP11TabContentsRK4GURL
fun:_ZN11TabContents15UpdateTargetURLEiRK4GURL
fun:_ZN11TabContents30DidNavigateMainFramePostCommitERKN20NavigationController20LoadCommittedDetailsERK32ViewHostMsg_FrameNavigate_Params
fun:_ZN11TabContents11DidNavigateEP14RenderViewHostRK32ViewHostMsg_FrameNavigate_Params
fun:_ZN14RenderViewHost13OnMsgNavigateERKN3IPC7MessageE
fun:_ZN14RenderViewHost17OnMessageReceivedERKN3IPC7MessageE
}
{
bug_51076_c
Memcheck:Leak
...
fun:malloc
fun:g_malloc
fun:g_slice_alloc
fun:g_slice_alloc0
fun:g_list_alloc
fun:g_object_notify
fun:gtk_window_set_position
fun:_ZN5views9WidgetGtk15CreateGtkWidgetEP10_GtkWidgetRKN3gfx4RectE
fun:_ZN5views9WidgetGtk4InitEP10_GtkWidgetRKN3gfx4RectE
fun:_ZN17StatusBubbleViews4InitEv
fun:_ZN17StatusBubbleViews6SetURLERK4GURLRKSbIwSt11char_traitsIwESaIwEE
fun:_ZN7Browser15UpdateTargetURLEP11TabContentsRK4GURL
fun:_ZN11TabContents15UpdateTargetURLEiRK4GURL
fun:_ZN11TabContents30DidNavigateMainFramePostCommitERKN20NavigationController20LoadCommittedDetailsERK32ViewHostMsg_FrameNavigate_Params
fun:_ZN11TabContents11DidNavigateEP14RenderViewHostRK32ViewHostMsg_FrameNavigate_Params
fun:_ZN14RenderViewHost13OnMsgNavigateERKN3IPC7MessageE
fun:_ZN14RenderViewHost17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN24BrowserRenderProcessHost17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_Z16DispatchToMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEES3_EvPT_T0_RK6Tuple1IT1_E
fun:_ZN14RunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvRKNS0_7MessageEE6Tuple1IS3_EE3RunEv
}
{
bug_51153
Memcheck:Leak
...
fun:_ZN7history14HistoryBackend16GetFavIconForURLE13scoped_refptrI17CancelableRequestI14CallbackRunnerI6Tuple5IibS1_I16RefCountedMemoryEb4GURLEEEERKS7_
fun:_Z16DispatchToMethodIN7history14HistoryBackendEMS1_Fv13scoped_refptrI17CancelableRequestI14CallbackRunnerI6Tuple5IibS2_I16RefCountedMemoryEb4GURLEEEERKS8_ESC_S8_EvPT_T0_RK6Tuple2IT1_T2_E
fun:_ZN14RunnableMethodIN7history14HistoryBackendEMS1_Fv13scoped_refptrI17CancelableRequestI14CallbackRunnerI6Tuple5IibS2_I16RefCountedMemoryEb4GURLEEEERKS8_E6Tuple2ISC_S8_EE3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_51134_a
Memcheck:Leak
fun:_Znw*
fun:_ZN8chromeos24UserCrosSettingsProviderC1Ev
fun:_ZN8chromeos12CrosSettingsC1Ev
fun:_ZN22DefaultSingletonTraitsIN8chromeos12CrosSettingsEE3NewEv
}
{
bug_51134_b
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsP5ValueEEE8allocateEjPKv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsP5ValueESt10_Select1stIS4_ESt4lessISsESaIS4_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeISsSt4pairIKSsP5ValueESt10_Select1stIS4_ESt4lessISsESaIS4_EE14_M_create_nodeERKS4_
fun:_ZNSt8_Rb_treeISsSt4pairIKSsP5ValueESt10_Select1stIS4_ESt4lessISsESaIS4_EE9_M_insertEPSt18_Rb_tree_node_baseSC_RKS4_
fun:_ZNSt8_Rb_treeISsSt4pairIKSsP5ValueESt10_Select1stIS4_ESt4lessISsESaIS4_EE16_M_insert_uniqueESt17_Rb_tree_iteratorIS4_ERKS4_
fun:_ZNSt3mapISsP5ValueSt4lessISsESaISt4pairIKSsS1_EEE6insertESt17_Rb_tree_iteratorIS6_ERKS6_
fun:_ZNSt3mapISsP5ValueSt4lessISsESaISt4pairIKSsS1_EEEixERS5_
fun:_ZN15DictionaryValue23SetWithoutPathExpansionERKSsP5Value
fun:_ZN15DictionaryValue3SetERKSsP5Value
fun:_ZN15DictionaryValue3SetERKSbIwSt11char_traitsIwESaIwEEP5Value
fun:_ZN8chromeos24UserCrosSettingsProvider3SetERKSbIwSt11char_traitsIwESaIwEEP5Value
fun:_ZN8chromeos24UserCrosSettingsProviderC1Ev
fun:_ZN8chromeos12CrosSettingsC1Ev
fun:_ZN22DefaultSingletonTraitsIN8chromeos12CrosSettingsEE3NewEv
fun:_ZN9SingletonIN8chromeos12CrosSettingsE22DefaultSingletonTraitsIS1_ES1_E3getEv
fun:_ZN8chromeos12CrosSettings3GetEv
}
{
bug_51218
Memcheck:Leak
fun:_Znw*
fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE
fun:_ZN3IPC16MessageWithReplyI6Tuple3I4GURLSsSsE6Tuple2IRNS_13ChannelHandleER13WebPluginInfoEE18DispatchDelayReplyI21ResourceMessageFilterMSC_FvRKS2_RKSsSG_PNS_7MessageEEEEbPKSH_PT_T0_
fun:_ZN21ResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE
fun:_ZN3IPC11SyncChannel11SyncContext17OnMessageReceivedERKNS_7MessageE
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
}
{
bug_51379
Memcheck:Leak
fun:malloc
...
obj:/usr/lib/libpangocairo-1.0.so.0.2002.3
...
fun:_ZN3gfx10CanvasSkia13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiiii
fun:_ZN3gfx10CanvasSkia13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiii
}
{
bug_51579
Memcheck:Addr4
fun:_ZNK7WebCore21PlatformKeyboardEvent20nativeVirtualKeyCodeEv
fun:_ZN6WebKit23WebKeyboardEventBuilderC1ERKN7WebCore13KeyboardEventE
fun:_ZN6WebKit16EditorClientImpl27doTextFieldCommandFromEventEPN7WebCore7ElementEPNS1_13KeyboardEventE
}
{
bug_51581
Memcheck:Leak
fun:malloc
fun:_Z15sk_malloc_flagsjj
fun:_ZN8SkBitmap13HeapAllocator13allocPixelRefEPS_P12SkColorTable
fun:_ZN8SkBitmap11allocPixelsEPNS_9AllocatorEP12SkColorTable
fun:_ZN8SkBitmap11allocPixelsEP12SkColorTable
fun:_ZN18SkBitmapOperations18CreateMaskedBitmapERK8SkBitmapS2_
fun:_ZN3Tab24PaintActiveTabBackgroundEPN3gfx6CanvasE
fun:_ZN3Tab18PaintTabBackgroundEPN3gfx6CanvasE
fun:_ZN3Tab5PaintEPN3gfx6CanvasE
fun:_ZN5views4View12ProcessPaintEPN3gfx6CanvasE
fun:_ZN8TabStrip13PaintChildrenEPN3gfx6CanvasE
fun:_ZN5views4View12ProcessPaintEPN3gfx6CanvasE
fun:_ZN5views4View13PaintChildrenEPN3gfx6CanvasE
fun:_ZN5views4View12ProcessPaintEPN3gfx6CanvasE
fun:_ZN5views4View13PaintChildrenEPN3gfx6CanvasE
fun:_ZN5views4View12ProcessPaintEPN3gfx6CanvasE
fun:_ZN5views4View13PaintChildrenEPN3gfx6CanvasE
fun:_ZN5views4View12ProcessPaintEPN3gfx6CanvasE
fun:_ZN5views8RootView12ProcessPaintEPN3gfx6CanvasE
fun:_ZN5views8RootView7OnPaintEP15_GdkEventExpose
fun:_ZN5views9WidgetGtk7OnPaintEP10_GtkWidgetP15_GdkEventExpose
fun:_ZN5views9WidgetGtk12OnPaintThunkEP10_GtkWidgetP15_GdkEventExposePv
}
{
bug_51587
Memcheck:Cond
...
fun:_ZN29AccessibilityEventRouterViews11IsMenuEventEPN5views4ViewE16NotificationType
...
fun:_ZN5views16NativeControlGtk5FocusEv
}
{
bug_51590
Memcheck:Addr4
...
fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
}
{
bug_51590
Memcheck:Addr2
...
fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
}
{
bug_51590
Memcheck:Addr1
...
fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
}
{
bug_51770
Memcheck:Leak
fun:calloc
fun:_dlerror_run
fun:dlsym
fun:localtime_r
}
{
bug_51683
Memcheck:Leak
fun:malloc
fun:sqlite3MemMalloc
fun:mallocWithAlarm
fun:sqlite3Malloc
...
fun:yy_reduce
}
{
bug_51679
Memcheck:Leak
fun:_Znw*
...
fun:_ZN23ExtensionMessageService16AddEventListenerERKSsi
fun:_ZN24BrowserRenderProcessHost22OnExtensionAddListenerERKSs
fun:_Z16DispatchToMethodI24BrowserRenderProcessHostMS0_FvRKSsESsEvPT_T0_RK6Tuple1IT1_E
}
{
bug_51822
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEj
fun:_ZN3WTF13FastAllocBasenwEj
fun:_NPN_RegisterObject
fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
fun:_ZN7WebCore16ScriptController18bindToWindowObjectEPNS_5FrameERKN3WTF6StringEP8NPObject
fun:_ZN6WebKit12WebFrameImpl18bindToWindowObjectERKNS_9WebStringEP8NPObject
fun:_ZN13CppBoundClass16BindToJavascriptEPN6WebKit8WebFrameERKSbIwSt11char_traitsIwESaIwEE
...
fun:_ZN19TestWebViewDelegate20didClearWindowObjectEPN6WebKit8WebFrameE
fun:_ZN6WebKit21FrameLoaderClientImpl35dispatchDidClearWindowObjectInWorldEPN7WebCore15DOMWrapperWorldE
fun:_ZN7WebCore11FrameLoader35dispatchDidClearWindowObjectInWorldEPNS_15DOMWrapperWorldE
fun:_ZN7WebCore16V8DOMWindowShell19initContextIfNeededEv
fun:_ZN7WebCore7V8Proxy16mainWorldContextEv
fun:_ZN7WebCore7V8Proxy16mainWorldContextEPNS_5FrameE
fun:_ZN7WebCore16ScriptController18bindToWindowObjectEPNS_5FrameERKN3WTF6StringEP8NPObject
fun:_ZN6WebKit12WebFrameImpl18bindToWindowObjectERKNS_9WebStringEP8NPObject
fun:_ZN13CppBoundClass16BindToJavascriptEPN6WebKit8WebFrameERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN23AccessibilityController16BindToJavascriptEPN6WebKit8WebFrameERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN9TestShell21BindJSObjectsToWindowEPN6WebKit8WebFrameE
fun:_ZN19TestWebViewDelegate20didClearWindowObjectEPN6WebKit8WebFrameE
}
{
bug_52371_a
Memcheck:Leak
fun:_Znw*
fun:_ZN5Value17CreateStringValueERKSbItN4base20string16_char_traitsESaItEE
fun:_ZNK8chromeos22SystemSettingsProvider3GetERKSsPP5Value
fun:_ZNK8chromeos12CrosSettings3GetERKSsPP5Value
fun:_ZN8chromeos26CoreChromeOSOptionsHandler9FetchPrefERKSs
fun:_ZN18CoreOptionsHandler16HandleFetchPrefs*Value
}
{
bug_52371_b
Memcheck:Leak
fun:_Znw*
fun:_ZN8chromeos12CrosSettings19AddSettingsObserverEPKcP20NotificationObserver
fun:_ZN8chromeos26CoreChromeOSOptionsHandler11ObservePrefERKSs
fun:_ZN18CoreOptionsHandler18HandleObservePrefs*Value
}
{
bug_52387
Memcheck:Addr4
fun:_ZN12_GLOBAL__N_112CacheCreator10DoCallbackEi
fun:_ZN12_GLOBAL__N_112CacheCreator12OnIOCompleteEi
fun:_Z16DispatchToMethodIN12_GLOBAL__N_112CacheCreatorEMS1_FviEiEvPT_T0_RK6Tuple1IT1_E
...
fun:_ZN14CallbackRunnerI6Tuple1IiEE3RunIiEEvRKT_
fun:_ZN10disk_cache17InFlightBackendIO19OnOperationCompleteEPNS_12BackgroundIOEb
fun:_ZN10disk_cache10InFlightIO14InvokeCallbackEPNS_12BackgroundIOEb
fun:_ZN10disk_cache12BackgroundIO13OnIOSignalledEv
}
{
bug_52825
Memcheck:Addr4
fun:_ZNKSt8_Rb_treeIjSt4pairIKjP12ObserverListI20NotificationObserverLb0EEESt10_Select1stIS6_ESt4lessIjESaIS6_EE8_M_beginEv
fun:_ZNKSt8_Rb_treeIjSt4pairIKjP12ObserverListI20NotificationObserverLb0EEESt10_Select1stIS6_ESt4lessIjESaIS6_EE4findERS1_
fun:_ZNKSt3mapIjP12ObserverListI20NotificationObserverLb0EESt4lessIjESaISt4pairIKjS3_EEE4findERS7_
fun:_ZN19NotificationService6HasKeyERKSt3mapIjP12ObserverListI20NotificationObserverLb0EESt4lessIjESaISt4pairIKjS4_EEERK18NotificationSource
fun:_ZN19NotificationService6NotifyE16NotificationTypeRK18NotificationSourceRK19NotificationDetails
fun:_ZN23ChromeURLRequestContextD0Ev
...
fun:_ZN17URLRequestHttpJobD0Ev
}
{
bug_52831
Memcheck:Leak
fun:_Znw*
...
fun:*InotifyReaderTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_52834_a
Memcheck:Leak
fun:_Znw*
...
fun:_ZNK28MockRenderProcessHostFactory23CreateRenderProcessHostEP7Profile
fun:_ZN12SiteInstance10GetProcessEv
fun:_ZN14RenderViewHostC2EP12SiteInstanceP22RenderViewHostDelegateix
}
{
bug_52834_b
Memcheck:Leak
fun:_Znw*
...
fun:_ZN5IDMapIN3IPC7Channel8ListenerEL23IDMapOwnershipSemantics0EE9AddWithIDEPS2_i
fun:_ZN17RenderProcessHost6AttachEPN3IPC7Channel8ListenerEi
fun:_ZN16RenderWidgetHostC2EP17RenderProcessHosti
...
fun:_ZN26RenderWidgetFullscreenHostC1EP17RenderProcessHosti
}
{
bug_52836
Memcheck:Cond
...
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
fun:event_process_active
fun:event_base_loop
}
{
bug_52837
Memcheck:Leak
fun:_Znw*
...
fun:_ZNSt3mapISs8FilePathSt4lessISsESaISt4pairIKSsS0_EEE6insertESt17_Rb_tree_iteratorIS5_ERKS5_
fun:_ZNSt3mapISs8FilePathSt4lessISsESaISt4pairIKSsS0_EEEixERS4_
fun:_ZN17ExtensionsService15UnloadExtensionERKSs
fun:_ZN17ExtensionsService18UninstallExtensionERKSsb
fun:_ZN18AutomationProvider18UninstallExtensionEiPb
}
{
bug_52957
Memcheck:Addr4
fun:glGetString
fun:_ZN18gpu_info_collector19CollectGraphicsInfoER7GPUInfo
fun:_ZN9GpuThread18OnEstablishChannelEi
fun:_Z16DispatchToMethodI9GpuThreadMS0_FviEiEvPT_T0_RK6Tuple1IT1_E
fun:_ZN3IPC16MessageWithTupleI6Tuple1IiEE8DispatchI9GpuThreadMS5_FviEEEbPKNS_7MessageEPT_T0_
fun:_ZN9GpuThread24OnControlMessageReceivedERKN3IPC7MessageE
}
{
bug_53044
Memcheck:Leak
fun:malloc
...
fun:_ZN24mozilla_security_manager19nsPKCS12Blob_ImportEPKcjRKSbItN4base20string16_char_traitsESaItEE
}
|