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
|
# There are three kinds of suppressions in this file:
# 1. Third party stuff we have no control over.
#
# 2. Intentional unit test errors, stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing.
#
# 3. Suppressions for real chromium bugs that are not yet fixed.
# These should all be in chromium's bug tracking system.
# Periodically we should sweep this file and the bug tracker clean by
# running overnight and removing outdated bugs/suppressions.
#-----------------------------------------------------------------------
# 1. Third party stuff we have no control over.
{
FIXME mac kevent libevent probably needs valgrind hooks
Memcheck:Param
kevent(changelist)
fun:kevent
fun:event_base_new
}
{
# CoreAudio leak. See http://crbug.com/9351
bug_9351
Memcheck:Leak
...
fun:_ZN12HALCADClient19AddPropertyListenerEmPK26AudioObjectPropertyAddressPFlmmS2_PvES3_
fun:_ZN16HALDefaultDevice22InstallServerListenersEv
fun:_ZN16HALDefaultDevice10InitializeEv
fun:_ZN9HALSystem16CheckOutInstanceEv
}
{
# Mac test_shell_tests. See http://crbug.com/11134
# Doesn't happen on bots, but happens like crazy on the smo
# test machine 'caliban'. Don't delete just because it
# doesn't happen on the bots.
bug_11134
Memcheck:Value4
fun:vCMMVectorConvert8BitRGBToRGB
fun:_ZNK15CMMConvRGBToRGB7ConvertER8CMM8BitsP14CMMRuntimeInfomm
}
{
# Mac system library bug? See http://crbug.com/11327
bug_11327
Memcheck:Cond
fun:_ZN19AudioConverterChain5ResetEv
fun:AudioConverterReset
obj:/System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
}
{
# Mac system library bug? See http://crbug.com/11327
bug_11327b
Memcheck:Cond
fun:AUNetSendEntry
fun:AUNetSendEntry
obj:/System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
}
{
# Filed with Apple as rdar://6915060; see http://crbug.com/11270
bug_11270
Memcheck:Leak
fun:calloc
fun:CMSSetLabCLUT
}
{
# Mac leak in CMOpenOrNewAccess in unit_tests PlatformCanvas_SkLayer_Test,
# ToolbarControllerTest_FocusLocation_Test. See http://crbug.com/11333.
bug_11333
Memcheck:Leak
fun:malloc
fun:stdSmartNewPtr
fun:stdSmartNewHandle
fun:IOCreateAndOpen
fun:ScratchInit
fun:CMOpenOrNewAccess
}
{
# suddenly very common as of 6 aug 2009
bug_11333b
Memcheck:Leak
fun:malloc
fun:stdSmartNewPtr
fun:stdSmartNewHandle
fun:IOCreateAndOpen
fun:ScratchInit
fun:CMNewAccessFromAnother
}
{
# Tiny one-time leak, widely seen by valgind users; everyone suppresses this.
# See related discussion at http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39366
plugin_bundle_global_leak
Memcheck:Leak
fun:malloc
fun:__cxa_get_globals
fun:__cxa_allocate_exception
fun:_ZN4dyld4loadEPKcRKNS_11LoadContextE
fun:dlopen
fun:dlopen
fun:_CFBundleDlfcnCheckLoaded
}
{
# Nasty invalid write. Reported to Apple as rdar://7240303. Supposedly fixed
# in Snow Leopard; should be verified and removed if so.
bug_18189
Memcheck:Addr8
fun:sseCGSFill8by1
fun:argb32_mark_constshape
fun:argb32_mark
fun:ripl_BltShape
fun:ripc_Render
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
}
{
bug_18215
Memcheck:Cond
fun:_DPSNextEvent
fun:-[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]
fun:-[NSApplication run]
}
{
bug_18223
Memcheck:Cond
fun:_ZNK8Security12UnixPlusPlus17StaticForkMonitorclEv
fun:_ZN12ocspdGlobals10serverPortEv
}
{
# Filed with Apple as rdar://7255382
bug_20459a
Memcheck:Leak
...
fun:_CFRuntimeCreateInstance
fun:CFRunLoopSourceCreate
fun:CFMachPortCreateRunLoopSource
fun:_ZN8Security12MachPlusPlus10CFAutoPort6enableEv
fun:_ZN8Security14SecurityServer14ThreadNotifierC2Ev
}
{
# Also filed with Apple as rdar://7255382
bug_20459b
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFArrayInit
fun:CFArrayCreateMutableCopy
fun:_ZN8Security12KeychainCore5Trust8evaluateEv
}
{
# Invalid read
bug_20508a
Memcheck:Addr4
...
fun:ripc_DrawGlyphs
fun:draw_glyphs
fun:CGContextShowGlyphsWithAdvances
}
{
# Invalid read
bug_20508b
Memcheck:Addr4
fun:_eATSFontGetGlyphIDsForGlyphNames
fun:ATSFontGetGlyphIDsForGlyphNames
fun:ats_font_get_glyphs_for_glyph_names
fun:get_glyphs_for_glyph_names
}
# See description of bug_20653a/b in suppressions.txt.
{
bug_20653a_mac
Memcheck:Param
write(buf)
fun:write$UNIX2003
fun:pager_write_pagelist
}
{
bug_20653b_mac
Memcheck:Param
write(buf)
fun:write$UNIX2003
...
fun:pager_write
}
{
bug_32564
Memcheck:Free
fun:free
fun:_cache_free_block
fun:_cache_collect_free
fun:_cache_fill
}
# Unaddressable bytes passed to chmod_extended() and fchmod_extended() syscalls.
# Being discussed on valgrind-developers@lists.sf.net
# TODO(glider): update
{
chmod_extended_unaddressable
Memcheck:Param
chmod_extended(xsecurity)
fun:__chmod_extended
fun:chmodx_np
fun:copyfile
}
{
fchmod_extended_unaddressable
Memcheck:Param
fchmod_extended(xsecurity)
fun:__fchmod_extended
fun:fchmodx_np
fun:copyfile_internal
fun:copyfile
}
# See http://openradar.appspot.com/radar?id=574401
{
DKeyHas8Words_below_stack
Memcheck:Addr4
fun:DKeyHas8Words
}
# 2. Intentional unit test errors, stuff that is somehow a false positive
# in our own code, or stuff that is so trivial it's not worth fixing.
{
# Plugins are deliberately not unloaded (on shutdown) on the Mac, in order to
# prevent crashes for those that don't unload cleanly.
plugin_unload
Memcheck:Leak
fun:_Znw*
fun:_ZN4base17LoadNativeLibraryERK8FilePath
fun:_ZN5NPAPI9PluginLib4LoadEv
fun:_ZN5NPAPI9PluginLib13NP_InitializeEv
fun:_ZN21WebPluginDelegateImpl6CreateERK8FilePathRKSsy
fun:_ZN19TestWebViewDelegate20CreatePluginDelegateERK8FilePathRKSs
fun:_ZN11webkit_glue13WebPluginImpl10initializeEPN6WebKit18WebPluginContainerE
}
{
# Mac Sandbox test cases are registered in a global map. This code is only
# used in the unit test binary.
Mac_Sandbox_Intentional_Leak1
Memcheck:Leak
fun:_Znw*
fun:_ZN11sandboxtest8internal19RegisterSandboxTestIN12_GLOBAL__N_*
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__I__ZNSt3tr112_GLOBAL__N_16ignoreE
fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
fun:_ZN4dyld24initializeMainExecutableEv
}
{
# With our tweaks to get Chromium to link on Mac 10.5, we sometimes get
# this suppression instead.
Mac_Sandbox_Intentional_Leak3
Memcheck:Leak
fun:_Znw*
fun:_Z41__static_initialization_and_destruction_0ii
fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
fun:_ZN4dyld24initializeMainExecutableEv
}
{
# jrg thinks this is probably a bug in Cocoa but is harmless. We
# can hit it by using --homepage=about:blank, which triggers a
# location bar focus earlier than normal (earlier than when a
# window is shown). To "work around" the problem for valgrind, we
# could call for example call [NSWindow setInitialFirstResponder:]
# instead of [NSWindow makeFirstResponder:] if the window isn't
# visible. However, these contortions are ugly. since the
# needsDisplay region gets reset when the window is shown, it
# really doesn't matter what we do with it before then.
Mac_NSIsEmptyRect_Cond
Memcheck:Cond
fun:NSIsEmptyRect
fun:-[NSRegion isEmpty]
fun:-[NSRegion subtractRegion:]
fun:-[NSWindow _subtractFromNeedsDisplayRegion:]
...
fun:-[NSWindow makeKeyAndOrderFront:]
fun:_ZN18BrowserWindowCocoa4ShowEv
...
fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vectorI4GURLSaIS4_EE
...
fun:ChromeMain
fun:main
}
{
# Same as above -- touching a region we'll throw away soon.
Mac_NSUnionRect_Cond
Memcheck:Cond
fun:NSUnionRect
fun:-[NSRegion addRect:]
...
fun:-[AutocompleteTextField becomeFirstResponder]
fun:-[NSWindow makeFirstResponder:]
fun:_ZN23AutocompleteEditViewMac13FocusLocationEb
...
fun:_ZN13TabStripModel14AddTabContentsEP11TabContentsiji
}
# 3. Suppressions for real chromium bugs that are not yet fixed.
{
# Mac test_shell_tests, see http://crbug.com/9561
bug_9561
Memcheck:Leak
fun:malloc_zone_malloc
fun:ripc_GetClipState
fun:ripc_GetRenderingState
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorE
}
{
bug_17297
Memcheck:Leak
fun:malloc
...
fun:+[NSColor keyboardFocusIndicatorColor]
fun:+[NSColor colorWithCatalogName:colorName:]
fun:+[NSCatalogColor newWithCoder:zone:]
fun:-[NSColor initWithCoder:]
}
{
bug_18218
Memcheck:Leak
fun:malloc
fun:__addHandler2
fun:__NSFinalizeThreadData
fun:_pthread_tsd_cleanup
fun:_pthread_exit
fun:thread_start
}
{
bug_20504
Memcheck:Leak
fun:malloc_zone_calloc
fun:_internal_class_createInstanceFromZone
fun:+[NSObject allocWithZone:]
...
fun:-[NSCustomObject nibInstantiate]
fun:-[NSIBObjectData instantiateObject:]
fun:-[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:]
fun:-[NSNib instantiateNibWithExternalNameTable:]
fun:-[NSNib instantiateNibWithOwner:topLevelObjects:]
fun:_ZN19BrowserMainPartsMac23PreMainMessageLoopStartEv
}
{
bug_20582
Memcheck:Leak
fun:_Znw*
fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
fun:_ZN16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
}
{
bug_20814
Memcheck:Addr4
fun:_ZN10CLVContextC2EPKvm
fun:_Z26getAllCarbonLazyValues2000v
fun:CLVVisitValuesForKey
fun:INIT_ResourceManager
fun:CurResFile
...
fun:_ZN5NPAPI12_GLOBAL__N_117ReadSTRPluginInfoERK8FilePathP10__CFBundleP13WebPluginInfo
fun:_ZN5NPAPI9PluginLib17ReadWebPluginInfoERK8FilePathP13WebPluginInfo
}
{
bug_21280
Memcheck:Leak
fun:malloc_zone_malloc
...
fun:ATSFontLoadUnicodeCharacterSet
...
fun:__NSFontInstanceInfoInitializeMetricsInfo
...
fun:-[NSFont boundingRectForGlyph:]
}
{
bug_21280_b
Memcheck:Addr2
fun:CFRetain
fun:CFDictionarySetValue
fun:_ZNK9TBaseFont20SetAttributeInternalEPKvS1_
fun:_ZNK9TBaseFont16CopyCharacterSetEv
fun:-[__NSFontTypefaceInfo _nominalCharacterCoverage]
fun:-[__NSSharedFontInstanceInfo _characterCoverage]
fun:__NSFontInstanceInfoInitializeMetricsInfo
fun:-[__NSSharedFontInstanceInfo _numberOfGlyphs]
fun:-[NSFont boundingRectForGlyph:]
}
{
bug_21286
Memcheck:Leak
fun:_Znw*
fun:sendSimpleEventToSelf
fun:aeInitializeFromHIToolbox
fun:INIT_AppleEvents
}
{
bug_21479
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CFPasteboardCreate
fun:CFPasteboardCreateUnique
fun:+[NSPasteboard _pasteboardWithName:]
fun:+[NSPasteboard pasteboardWithUniqueName]
}
{
bug_21479
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CFPasteboardCreate
fun:+[NSPasteboard _pasteboardWithName:]
fun:-[FindPasteboard findPboard]
}
{
bug_22021
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMalloc*
...
fun:_ZN7WebCore19V8EventListenerList3addEPNS_15V8EventListenerE
}
{
bug_22544
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFArrayInit
fun:CFArrayCreateMutableCopy
fun:_ZN3net22MacTrustedCertificates27CopyTrustedCertificateArrayEv
fun:_ZNK3net15X509Certificate6VerifyERKSsiPNS_16CertVerifyResultE
}
{
bug_23416
Memcheck:Leak
fun:_Znw*
fun:_ZN11webkit_glue16WebURLLoaderImplC2Ev
...
fun:_ZN11webkit_glue20ImageResourceFetcherC1ERK4GURLPN6WebKit8WebFrameEiiP14CallbackRunnerI6Tuple2IPS0_RK8SkBitmapEE
fun:_ZN10RenderView13DownloadImageEiRK4GURLi
}
{
bug_25648
Memcheck:Leak
fun:malloc
fun:sqlite3MemMalloc
...
fun:yy_reduce
fun:sqlite3Parser
...
fun:_ZN7history15HistoryDatabase4InitERK8FilePathS3_
}
{
bug_25656
Memcheck:Addr4
...
fun:bestBtreeIndex
fun:sqlite3WhereBegin
fun:sqlite3Select
fun:yy_reduce
fun:sqlite3Parser
...
fun:_ZN7history14HistoryBackend*
}
{
bug_25661
Memcheck:Addr4
fun:_ZNK10scoped_ptrI11ChildThreadE3getEv
fun:_ZN12ChildProcess11main_threadEv
fun:_ZN11ChildThread7currentEv
fun:_ZN25WebMessagePortChannelImpl11postMessageERKN6WebKit9WebStringEPNS0_9WebVectorIPNS0_21WebMessagePortChannelEEE
fun:_ZN7WebCore26PlatformMessagePortChannel19postMessageToRemoteEN3WTF10PassOwnPtrINS_18MessagePortChannel9EventDataEEE
fun:_ZN7WebCore18MessagePortChannel19postMessageToRemoteEN3WTF10PassOwnPtrINS0_9EventDataEEE
fun:_ZN7WebCore11MessagePort11postMessageEN3WTF10PassRefPtrINS_21SerializedScriptValueEEEPKNS1_6VectorINS1_6RefPtrIS0_EELm1EEERi
fun:_ZN7WebCore8V8Custom32v8MessagePortPostMessageCallbackERKN2v89ArgumentsE
fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE
}
{
bug_27315
Memcheck:Leak
fun:_Znw*
fun:_ZNSt8_Rb_treeIlSt4pairIKlPN4llvm8PassInfoEESt10_Select1stIS5_ESt4lessIlESaIS5_EE9_M_insertEPSt18_Rb_tree_node_baseSD_RKS5_
fun:_ZNSt8_Rb_treeIlSt4pairIKlPN4llvm8PassInfoEESt10_Select1stIS5_ESt4lessIlESaIS5_EE13insert_uniqueERKS5_
fun:_ZN4llvm16RegisterPassBase12registerPassEv
fun:_Z41__static_initialization_and_destruction_0ii
fun:_ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj
fun:_ZN11ImageLoader15runInitializersERKNS_11LinkContextE
}
{
bug_27316
Memcheck:Leak
fun:_Znw*
fun:_Z17NewRunnableMethodI25WebMessagePortChannelImplMS0_FvRKN6WebKit9WebStringEPNS1_9WebVectorIPNS1_21WebMessagePortChannelEEEES2_S9_EP14CancelableTaskPT_T0_RKT1_RKT2_
fun:_ZN25WebMessagePortChannelImpl11postMessageERKN6WebKit9WebStringEPNS0_9WebVectorIPNS0_21WebMessagePortChannelEEE
fun:_ZN7WebCore26PlatformMessagePortChannel19postMessageToRemoteEN3WTF10PassOwnPtrINS_18MessagePortChannel9EventDataEEE
fun:_ZN7WebCore18MessagePortChannel19postMessageToRemoteEN3WTF10PassOwnPtrINS0_9EventDataEEE
fun:_ZN7WebCore11MessagePort11postMessageEN3WTF10PassRefPtrINS_21SerializedScriptValueEEEPKNS1_6VectorINS1_6RefPtrIS0_EELm1EEERi
fun:_ZN7WebCore8V8Custom32v8MessagePortPostMessageCallbackERKN2v89ArgumentsE
}
{
bug_27644
Memcheck:Leak
...
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_27991
Memcheck:Addr4
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base24MessagePumpCFRunLoopBase7RunWorkEv
fun:_ZN4base24MessagePumpCFRunLoopBase13RunWorkSourceEPv
fun:CFRunLoopRunSpecific
}
{
bug_28847a
Memcheck:Leak
fun:_Znw*
fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_traitsESaItEEiiPN3IPC7Message6SenderEi
fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16_char_traitsESaItEEiPi
}
{
bug_28847b
Memcheck:Leak
fun:_Znw*
fun:_ZN16ChildProcessHost6LaunchERKSt6vectorISt4pairISsSsESaIS2_EEP11CommandLine
fun:_ZN17WorkerProcessHost4InitEv
fun:_ZN13WorkerService12CreateWorkerERK4GURLbbRKSbItN4base20string16_char_traitsESaItEEiiPN3IPC7Message6SenderEi
fun:_ZN21ResourceMessageFilter14OnCreateWorkerERK4GURLbRKSbItN4base20string16_char_traitsESaItEEiPi
}
{
bug_29325
Memcheck:Leak
fun:_Znw*
fun:_ZN11ProfileImplC2ERK8FilePath
fun:_ZN11ProfileImplC1ERK8FilePath
fun:_ZN7Profile13CreateProfileERK8FilePath
fun:_ZN14ProfileManager13CreateProfileERK8FilePath
fun:_ZN14ProfileManager10GetProfileERK8FilePath
fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath
}
{
bug_28071
Memcheck:Addr4
fun:_ZN10CLVContextC2EPKvm
fun:_Z26getAllCarbonLazyValues2000v
fun:CLVVisitValuesForKey
fun:aeInstallLazyEventHandlers
fun:AEGetEventHandler
fun:AEGetSpecialHandler
fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl
fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh
fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_
fun:aeProcessAppleEvent
fun:AEProcessAppleEvent
}
{
bug_28072a
Memcheck:Leak
...
fun:CSBackupSetItemExcluded
fun:_ZN8mac_util22SetFileBackupExclusionERK8FilePathb
fun:_ZN7history15HistoryDatabase4InitERK8FilePathS3_
fun:_ZN7history14HistoryBackend8InitImplEv
fun:_ZN7history14HistoryBackend4InitEb
}
{
bug_28072b
Memcheck:Leak
fun:_Znw*
fun:_ZN7history14HistoryBackend8InitImplEv
fun:_ZN7history14HistoryBackend4InitEb
}
{
bug_28072c
Memcheck:Addr2
...
fun:CSBackupSetItemExcluded
fun:_ZN8mac_util22SetFileBackupExclusionERK8FilePathb
fun:_ZN7history15HistoryDatabase4InitERK8FilePathS3_
fun:_ZN7history14HistoryBackend8InitImplEv
fun:_ZN7history14HistoryBackend4InitEb
}
{
bug_28073
Memcheck:Addr4
fun:_ZN10CLVContextC2EPKvm
fun:_Z26getAllCarbonLazyValues2000v
fun:CLVVisitValuesForKey
fun:aeInstallLazyEventHandlers
fun:AEGetEventHandler
fun:AEGetSpecialHandler
fun:_Z35_findSysPreHIToolboxDispatchHandlermmPl
fun:_Z20aeDispatchAppleEventPK6AEDescPS_mPh
fun:_Z25dispatchEventAndSendReplyPK6AEDescPS_
fun:aeProcessAppleEvent
fun:AEProcessAppleEvent
}
{
# This may be category 1, but putting here for now and
# someone who knows better has to look into this.
bug_30264a
Memcheck:Value4
fun:_ZNK10CMMConvLut7ConvertER10CMMMinBitsP14CMMRuntimeInfomm
fun:_Z16CMMProcessBitmapP15CMMBitmapParams
fun:DoMatchBitmap
fun:CWMatchBitmap
fun:ConvertImageGeneric
fun:CMSColorWorldConvertData
fun:CMSTransformConvertData
fun:CGCMSInterfaceTransformConvertData
fun:CGColorTransformConvertData
fun:img_colormatch_read
fun:img_alphamerge_read
fun:img_data_lock
fun:CGSImageDataLock
fun:ripc_AcquireImage
fun:ripc_DrawImage
fun:CGContextDrawImage
fun:_ZN3gfx17CGImageToSkBitmapEP7CGImage
fun:_ZNK11webkit_glue12ImageDecoder6DecodeEPKhm
...
fun:_ZN17ExtensionUnpacker15AddDecodedImageERK8FilePath
fun:_ZN17ExtensionUnpacker3RunEv
fun:_ZN26SandboxedExtensionUnpacker5StartEv
}
{
# This may be category 1, but putting here for now and
# someone who knows better has to look into this.
bug_30264b
Memcheck:Cond
fun:_ZNK10CMMMtxOnly10ConvertMinE10CMM3x3Type10CMM3x1TypeR12CMMMinBuffermm
fun:_ZNK21CMMConvMatrixTemplateI10CMMMtxOnly22CMMConvGrayToRGBMatrixE7ConvertER10CMMMinBitsP14CMMRuntimeInfomm
fun:_Z16CMMProcessBitmapP15CMMBitmapParams
fun:DoMatchBitmap
fun:CWMatchBitmap
fun:ConvertImageGeneric
fun:CMSColorWorldConvertData
fun:CMSTransformConvertData
fun:CGCMSInterfaceTransformConvertData
fun:CGColorTransformConvertData
fun:img_colormatch_read
fun:img_alphamerge_read
fun:img_data_lock
fun:CGSImageDataLock
fun:ripc_AcquireImage
fun:ripc_DrawImage
fun:CGContextDrawImage
fun:_ZN3gfx17CGImageToSkBitmapEP7CGImage
fun:_ZNK11webkit_glue12ImageDecoder6DecodeEPKhm
...
fun:_ZN17ExtensionUnpacker15AddDecodedImageERK8FilePath
fun:_ZN17ExtensionUnpacker3RunEv
}
{
bug_30632a
Memcheck:Leak
fun:_Znw*
fun:_ZN13PluginService24FindOrStartPluginProcessERK8FilePath
}
{
bug_30632b
Memcheck:Leak
fun:_Znw*
...
fun:_ZN17PluginProcessHost4InitERK13WebPluginInfoRKSbIwSt11char_traitsIwESaIwEE
fun:_ZN13PluginService24FindOrStartPluginProcessERK8FilePath
}
{
bug_31634a
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFDictionaryInit
fun:CFDictionaryCreate
fun:classDescription
fun:classDescription
fun:classDescription
fun:propertyInfoForSelector
fun:CAObject_resolveInstanceMethod
fun:_class_resolveMethod
fun:_class_lookupMethodAndLoadCache
fun:objc_msgSend
fun:_ZN15StatusBubbleMac9SetStatusERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN7Browser13TabSelectedAtEP11TabContentsS1_ib
fun:_ZN13TabStripModel26ChangeSelectedContentsFromEP11TabContentsib
fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbb
fun:_ZN13TabStripModel14AddTabContentsEP11TabContentsibjb
fun:_ZN7Browser13AddTabWithURLERK4GURLS2_jbibP12SiteInstance
fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vectorI4GURLSaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7Profileb
fun:_ZN12_GLOBAL__N_113LaunchBrowserERK11CommandLineP7ProfileRKSbIwSt11char_traitsIwESaIwEEbPiP11BrowserInit
fun:_ZN11BrowserInit18ProcessCmdLineImplERK11CommandLineRKSbIwSt11char_traitsIwESaIwEEbP7ProfilePiPS_
}
{
bug_31634b
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFDictionaryInit
fun:CFDictionaryCreate
fun:classDescription
fun:propertyInfoForSelector
fun:CAObject_resolveInstanceMethod
fun:_class_resolveMethod
fun:_class_lookupMethodAndLoadCache
fun:objc_msgSend
fun:_ZN15StatusBubbleMac9SetStatusERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN7Browser13TabSelectedAtEP11TabContentsS1_ib
fun:_ZN13TabStripModel26ChangeSelectedContentsFromEP11TabContentsib
fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbb
fun:_ZN13TabStripModel14AddTabContentsEP11TabContentsibjb
fun:_ZN7Browser13AddTabWithURLERK4GURLS2_jbibP12SiteInstance
fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vectorI4GURLSaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7Profileb
fun:_ZN12_GLOBAL__N_113LaunchBrowserERK11CommandLineP7ProfileRKSbIwSt11char_traitsIwESaIwEEbPiP11BrowserInit
fun:_ZN11BrowserInit18ProcessCmdLineImplERK11CommandLineRKSbIwSt11char_traitsIwESaIwEEbP7ProfilePiPS_
fun:_ZN11BrowserInit5StartERK11CommandLineRKSbIwSt11char_traitsIwESaIwEEP7ProfilePi
fun:_Z11BrowserMainRK18MainFunctionParams
}
{
bug_31634c
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:__CFDictionaryInit
fun:CFDictionaryCreate
fun:classDescription
fun:classDescription
fun:propertyInfoForSelector
fun:CAObject_resolveInstanceMethod
fun:_class_resolveMethod
fun:_class_lookupMethodAndLoadCache
fun:objc_msgSend
fun:_ZN15StatusBubbleMac9SetStatusERKSbIwSt11char_traitsIwESaIwEE
fun:_ZN7Browser13TabSelectedAtEP11TabContentsS1_ib
fun:_ZN13TabStripModel26ChangeSelectedContentsFromEP11TabContentsib
fun:_ZN13TabStripModel19InsertTabContentsAtEiP11TabContentsbb
fun:_ZN13TabStripModel14AddTabContentsEP11TabContentsibjb
fun:_ZN7Browser13AddTabWithURLERK4GURLS2_jbibP12SiteInstance
fun:_ZN11BrowserInit17LaunchWithProfile17OpenURLsInBrowserEP7BrowserbRKSt6vectorI4GURLSaIS4_EE
fun:_ZN11BrowserInit17LaunchWithProfile6LaunchEP7Profileb
fun:_ZN12_GLOBAL__N_113LaunchBrowserERK11CommandLineP7ProfileRKSbIwSt11char_traitsIwESaIwEEbPiP11BrowserInit
fun:_ZN11BrowserInit18ProcessCmdLineImplERK11CommandLineRKSbIwSt11char_traitsIwESaIwEEbP7ProfilePiPS_
fun:_ZN11BrowserInit5StartERK11CommandLineRKSbIwSt11char_traitsIwESaIwEEP7ProfilePi
}
{
bug_31985
Memcheck:Leak
fun:_Znw*
fun:_ZN3net16HttpNetworkLayer10GetSessionEv
fun:_ZN3net16HttpNetworkLayer17CreateTransactionEP10scoped_ptrINS_15HttpTransactionEE
fun:_ZN3net9HttpCache11Transaction13DoSendRequestEv
fun:_ZN3net9HttpCache11Transaction6DoLoopEi
fun:_ZN3net9HttpCache11Transaction19BeginNetworkRequestEv
}
{
# This may be category 1, but putting it here for now and
# someone who knows better can move it later, if necessary.
bug_32393
Memcheck:Addr1
fun:__CFBinaryPlistGetTopLevelInfo
fun:__CFTryParseBinaryPlist
fun:_CFPropertyListCreateFromXMLData
fun:CFPropertyListCreateFromXMLData
fun:_DAUnserializeWithBytes
fun:_DASessionCallback
fun:__CFMachPortPerform
fun:CFRunLoopRunSpecific
}
{
bug_32644
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEm
fun:_ZN3WTF13FastAllocBasenwEm
fun:_ZN7WebCore32WorkerThreadableWebSocketChannelC2EPNS_13WorkerContextEPNS_22WebSocketChannelClientERKNS_6StringERKNS_4KURLES7_
fun:_ZN7WebCore32WorkerThreadableWebSocketChannelC1EPNS_13WorkerContextEPNS_22WebSocketChannelClientERKNS_6StringERKNS_4KURLES7_
fun:_ZN7WebCore32WorkerThreadableWebSocketChannel6createEPNS_13WorkerContextEPNS_22WebSocketChannelClientERKNS_6StringERKNS_4KURLES7_
fun:_ZN7WebCore26ThreadableWebSocketChannel6createEPNS_22ScriptExecutionContextEPNS_22WebSocketChannelClientERKNS_4KURLERKNS_6StringE
fun:_ZN7WebCore9WebSocket7connectERKNS_4KURLERKNS_6StringERi
fun:_ZN7WebCore9WebSocket7connectERKNS_4KURLERi
}
{
bug_32644
Memcheck:Leak
fun:malloc
fun:_ZN3WTF10fastMallocEm
fun:_ZN3WTF13FastAllocBasenwEm
fun:_ZN7WebCore32WorkerThreadableWebSocketChannelC2EPNS_13WorkerContextEPNS_22WebSocketChannelClientERKNS_6StringERKNS_4KURLES7_
fun:_ZN7WebCore32WorkerThreadableWebSocketChannelC1EPNS_13WorkerContextEPNS_22WebSocketChannelClientERKNS_6StringERKNS_4KURLES7_
fun:_ZN7WebCore32WorkerThreadableWebSocketChannel6createEPNS_13WorkerContextEPNS_22WebSocketChannelClientERKNS_6StringERKNS_4KURLES7_
fun:_ZN7WebCore26ThreadableWebSocketChannel6createEPNS_22ScriptExecutionContextEPNS_22WebSocketChannelClientERKNS_4KURLERKNS_6StringE
fun:_ZN7WebCore9WebSocket7connectERKNS_4KURLERKNS_6StringERi
fun:_ZN7WebCore9WebSocket7connectERKNS_4KURLERi
fun:_ZN7WebCore8V8Custom30v8WebSocketConstructorCallbackERKN2v89ArgumentsE
fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_9ArgumentsE
obj:*
obj:*
obj:*
obj:*
obj:*
obj:*
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEiPPPS5_Pb
fun:_ZN2v86Script3RunEv
fun:_ZN7WebCore27WorkerContextExecutionProxy9runScriptEN2v86HandleINS1_6ScriptEEE
fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKNS_6StringES3_iPNS_27WorkerContextExecutionStateE
}
{
bug_35164
Memcheck:Cond
...
fun:gl_context_init_client_state
fun:ogl_begin_rendering
fun:CARenderOGLRender
fun:view_draw
}
{
bug_35601
Memcheck:Cond
fun:rips_f_DrawRing
fun:rips_f_BltShape
fun:ripc_Render
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
fun:_ZN18FocusIndicationFix40currentOSHasSetFocusRingStyleInBitmapBugEv
fun:_ZN18FocusIndicationFix16swizzleFocusViewEv
fun:_ZN18FocusIndicationFix11ScopedFixerC2Ev
fun:_ZN18FocusIndicationFix11ScopedFixerC1Ev
fun:_ZN7WebCoreL11paintButtonENS_11ControlPartEjPNS_15GraphicsContextERKNS_7IntRectEfPNS_10ScrollViewE
fun:_ZNK7WebCore16ThemeChromiumMac5paintENS_11ControlPartEjPNS_15GraphicsContextERKNS_7IntRectEfPNS_10ScrollViewE
fun:_ZN7WebCore11RenderTheme5paintEPNS_12RenderObjectERKNS1_9PaintInfoERKNS_7IntRectE
fun:_ZN7WebCore9RenderBox19paintBoxDecorationsERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderBlock5paintERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore9InlineBox5paintERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore13InlineFlowBox5paintERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore13RootInlineBox5paintERNS_12RenderObject9PaintInfoEii
fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderBlock13paintContentsERNS_12RenderObject9PaintInfoEii
}
{
bug_35625
Memcheck:Leak
fun:malloc_zone_malloc
fun:_CFRuntimeCreateInstance
fun:CGTypeCreateInstanceWithAllocator
fun:CGTypeCreateInstance
fun:CGFunctionCreate
fun:CGGradientGetFunction
fun:CGContextDrawLinearGradient
...
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
}
{
bug_35955_maybe
Memcheck:Addr4
...
fun:_ZN2v88internal12Bootstrapper17CreateEnvironmentENS0_6HandleINS0_6ObjectEEENS_6HandleINS_14ObjectTemplateEEEPNS_22ExtensionConfigurationE
fun:_ZN2v87Context3NewEPNS_22ExtensionConfigurationENS_6HandleINS_14ObjectTemplateEEENS3_INS_5ValueEEE
fun:_ZN7WebCore27WorkerContextExecutionProxy19initContextIfNeededEv
fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKNS_6StringES3_iPNS_27WorkerContextExecutionStateE
fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeEPNS_11ScriptValueE
fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeE
fun:_ZN7WebCore12WorkerThread12workerThreadEv
fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
fun:_ZN3WTFL16threadEntryPointEPv
fun:_pthread_start
fun:thread_start
}
{
bug_36605
Memcheck:Leak
fun:malloc
fun:realloc
fun:new_sem_from_pool
fun:_pthread_cond_wait
fun:pthread_cond_wait$UNIX2003
fun:_ZN17ConditionVariable4WaitEv
fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
fun:_ZN4base13WaitableEvent4WaitEv
fun:_ZN4base6Thread16StartWithOptionsERKNS0_7OptionsE
fun:_ZN4base6Thread5StartEv
fun:_ZN14HistoryService4InitERK8FilePathP15BookmarkServiceb
fun:_ZN14TestingProfile20CreateHistoryServiceEbb
fun:_ZN12_GLOBAL__N_127HistoryContentsProviderTest5SetUpEv
}
{
bug_39282
Memcheck:Leak
fun:malloc_zone_calloc
fun:_internal_class_createInstanceFromZone
fun:NSAllocateObject
fun:+[NSProxy alloc]
fun:+[OCMockObject mockForClass:]
fun:_ZN43BookmarkFolderTargetTest_ReopenNotSame_Test8TestBodyEv
}
{
bug_39282
Memcheck:Leak
fun:malloc_zone_calloc
fun:_internal_class_createInstanceFromZone
fun:NSAllocateObject
fun:+[NSProxy alloc]
fun:-[OCMockObject getNewRecorder]
fun:-[OCMockObject stub]
fun:_ZN43BookmarkFolderTargetTest_ReopenNotSame_Test8TestBodyEv
}
{
bug_39282
Memcheck:Leak
fun:malloc_zone_calloc
fun:_internal_class_createInstanceFromZone
fun:NSAllocateObject
fun:+[NSProxy alloc]
fun:+[OCMockObject mockForClass:]
fun:_ZN40BookmarkFolderTargetTest_ReopenSame_Test8TestBodyEv
}
{
bug_39376
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKN3net9HostCache3KeyE13scoped_refptrINS4_5EntryEEEEE8allocateEmPKv
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE14_M_create_nodeERKS8_
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSG_RKS8_
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE13insert_uniqueERKS8_
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE13insert_uniqueESt17_Rb_tree_iteratorIS8_ERKS8_
fun:_ZNSt3mapIN3net9HostCache3KeyE13scoped_refptrINS1_5EntryEESt4lessIS2_ESaISt4pairIKS2_S5_EEE6insertESt17_Rb_tree_iteratorISA_ERKSA_
fun:_ZNSt3mapIN3net9HostCache3KeyE13scoped_refptrINS1_5EntryEESt4lessIS2_ESaISt4pairIKS2_S5_EEEixERS9_
fun:_ZN3net9HostCache3SetERKNS0_3KeyEiNS_11AddressListEN4base9TimeTicksE
fun:_ZN3net16HostResolverImpl13OnJobCompleteEPNS0_3JobEiRKNS_11AddressListE
fun:_ZN3net16HostResolverImpl3Job16OnLookupCompleteEv
}
{
bug_40429
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:+[NSObject allocWithZone:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSButtonCell initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSControl initWithCoder:]
fun:-[NSButton initWithCoder:]
fun:_decodeObjectBinary
fun:-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]
fun:-[NSArray(NSArray) initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSView initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSWindowTemplate initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
}
{
bug_40429b
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:+[NSObject allocWithZone:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSButtonCell initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSControl initWithCoder:]
fun:-[NSButton initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSNibConnector initWithCoder:]
fun:-[NSNibControlConnector initWithCoder:]
fun:_decodeObjectBinary
fun:-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]
fun:-[NSArray(NSArray) initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSIBObjectData initWithCoder:]
fun:_decodeObjectBinary
}
{
bug_40429c
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:+[NSObject allocWithZone:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSButtonCell initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSControl initWithCoder:]
fun:-[NSButton initWithCoder:]
fun:_decodeObjectBinary
fun:-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]
fun:-[NSArray(NSArray) initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSView initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSResponder initWithCoder:]
fun:-[NSView initWithCoder:]
}
{
bug_40585
Memcheck:Param
socketcall.sendmsg(msg.msg_iov[i])
fun:sendmsg$UNIX2003
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_40659
Memcheck:Leak
fun:_Znw*
...
fun:_ZN19extension_file_util13LoadExtensionERK8FilePathbPSs
fun:_ZN12CrxInstaller15CompleteInstallEv
fun:_Z16DispatchToMethodI12CrxInstallerMS0_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodI12CrxInstallerMS0_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_40661
Memcheck:Leak
fun:malloc_zone_malloc
fun:_ZN4base12_GLOBAL__N_134oom_killer_cfallocator_malloc_zoneElmPv
fun:_CFRuntimeCreateInstance
fun:__CFDictionaryInit
fun:CARenderOGLNew_
fun:view_state_new
fun:view_state_acquire
fun:view_draw
fun:CAViewDraw
fun:-[NSView _drawRect:clip:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:]
fun:-[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]
fun:-[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:]
fun:-[NSView displayIfNeeded]
fun:-[NSWindow displayIfNeeded]
fun:_handleWindowNeedsDisplay
fun:__CFRunLoopDoObservers
fun:CFRunLoopRunSpecific
fun:CFRunLoopRunInMode
fun:RunCurrentEventLoopInMode
}
{
bug_40877
Memcheck:Leak
fun:_Znw*
fun:_ZN25ActiveNotificationTracker20RegisterNotificationERKN6WebKit15WebNotificationE
fun:_ZN53ActiveNotificationTrackerTest_TestLookupAndClear_Test8TestBodyEv
}
{
bug_40879
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKibEEE8allocateEmPKv
fun:_ZNSt8_Rb_treeIiSt4pairIKibESt10_Select1stIS2_ESt4lessIiESaIS2_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeIiSt4pairIKibESt10_Select1stIS2_ESt4lessIiESaIS2_EE14_M_create_nodeERKS2_
fun:_ZNSt8_Rb_treeIiSt4pairIKibESt10_Select1stIS2_ESt4lessIiESaIS2_EE9_M_insertEPSt18_Rb_tree_node_baseSA_RKS2_
fun:_ZNSt8_Rb_treeIiSt4pairIKibESt10_Select1stIS2_ESt4lessIiESaIS2_EE13insert_uniqueERKS2_
fun:_ZNSt8_Rb_treeIiSt4pairIKibESt10_Select1stIS2_ESt4lessIiESaIS2_EE13insert_uniqueESt17_Rb_tree_iteratorIS2_ERKS2_
fun:_ZNSt3mapIibSt4lessIiESaISt4pairIKibEEE6insertESt17_Rb_tree_iteratorIS4_ERKS4_
fun:_ZNSt3mapIibSt4lessIiESaISt4pairIKibEEEixERS3_
fun:_ZN15ExtensionAction8SetValueIbEEvPSt3mapIiT_St4lessIiESaISt4pairIKiS2_EEEiS2_
fun:_ZN15ExtensionAction12SetIsVisibleEib
fun:_ZN9Extension25LoadExtensionActionHelperEPK15DictionaryValuePSs
fun:_ZN9Extension13InitFromValueERK15DictionaryValuebPSs
fun:_ZN19extension_file_util13LoadExtensionERK8FilePathbPSs
fun:_ZN12CrxInstaller15CompleteInstallEv
fun:_Z16DispatchToMethodI12CrxInstallerMS0_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodI12CrxInstallerMS0_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
}
# Maybe this needs to be moved up to section 1?
{
bug_42593
Memcheck:Leak
fun:calloc
fun:_internal_class_createInstanceFromZone
fun:_internal_class_createInstance
fun:+[NSObject allocWithZone:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSButtonCell initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSControl initWithCoder:]
fun:-[NSButton initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSNibConnector initWithCoder:]
fun:-[NSNibOutletConnector initWithCoder:]
fun:_decodeObjectBinary
fun:-[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:]
fun:-[NSArray(NSArray) initWithCoder:]
fun:_decodeObjectBinary
fun:_decodeObject
fun:-[NSIBObjectData initWithCoder:]
fun:_decodeObjectBinary
}
{
bug_42622
Memcheck:Addr4
fun:_ZN3WTF11currentTimeEv
fun:_ZN7WebCore5EventC2ERKNS_12AtomicStringEbb
fun:_ZN7WebCore12MessageEventC2EN3WTF10PassRefPtrINS_21SerializedScriptValueEEERKNS_6StringES7_NS2_INS_9DOMWindowEEENS1_10PassOwnPtrINS1_6VectorINS1_6RefPtrINS_11MessagePortEEELm1EEEEE
fun:_ZN7WebCore12MessageEventC1EN3WTF10PassRefPtrINS_21SerializedScriptValueEEERKNS_6StringES7_NS2_INS_9DOMWindowEEENS1_10PassOwnPtrINS1_6VectorINS1_6RefPtrINS_11MessagePortEEELm1EEEEE
fun:_ZN7WebCore12MessageEvent6createEN3WTF10PassOwnPtrINS1_6VectorINS1_6RefPtrINS_11MessagePortEEELm1EEEEENS1_10PassRefPtrINS_21SerializedScriptValueEEERKNS_6StringESE_NS9_INS_9DOMWindowEEE
fun:_ZN7WebCore18createConnectEventEN3WTF10PassRefPtrINS_11MessagePortEEE
fun:_ZN6WebKit19WebSharedWorkerImpl11connectTaskEPN7WebCore22ScriptExecutionContextEPS0_N3WTF10PassOwnPtrINS1_18MessagePortChannelEEE
fun:_ZN7WebCore18GenericWorkerTask2IPN6WebKit19WebSharedWorkerImplES3_PNS_18MessagePortChannelEN3WTF10PassOwnPtrIS4_EEE11performTaskEPNS_22ScriptExecutionContextE
fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskEPNS_22ScriptExecutionContextE
fun:_ZN7WebCore13WorkerRunLoop9runInModeEPNS_13WorkerContextERKNS_13ModePredicateE
fun:_ZN7WebCore13WorkerRunLoop3runEPNS_13WorkerContextE
fun:_ZN7WebCore12WorkerThread12runEventLoopEv
fun:_ZN7WebCore12WorkerThread12workerThreadEv
fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
fun:_ZN3WTFL16threadEntryPointEPv
fun:_pthread_start
fun:thread_start
}
{
bug_42704a
Memcheck:Addr4
fun:_ZN2v88internal15MemoryAllocator9ChunkInfo*
...
fun:_ZN2v88internal9RelocInfo6VerifyEv
fun:_ZN2v88internal4Code10CodeVerifyEv
fun:_ZN2v88internal10HeapObject16HeapObjectVerifyEv
fun:_ZN2v88internal6Object6VerifyEv
fun:_ZN2v88internal4Heap10CreateCodeERKNS0_8CodeDescEPNS0_13ZoneScopeInfoENS0_4Code5FlagsENS0_6HandleINS0_6ObjectEEE
}
{
bug_42704b
Memcheck:Addr4
fun:_ZN2v88internal11HandleScope6ExtendEv
...
fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_10JSFunctionEEENS2_INS0_6ObjectEEEiPPPS5_Pb
}
{
bug_42704c
Memcheck:Addr4
fun:_ZN2v88internal4List*
fun:_ZN2v88internal4List*
...
fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKNS_6StringES3_iPNS_27WorkerContextExecutionStateE
fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeEPNS_11ScriptValueE
fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeE
fun:_ZN7WebCore12WorkerThread12workerThreadEv
}
{
bug_43109
Memcheck:Cond
fun:rips_f_DrawRing
fun:rips_f_BltShape
fun:ripc_Render
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
fun:_ZN18FocusIndicationFix40currentOSHasSetFocusRingStyleInBitmapBugEv
fun:_ZN18FocusIndicationFix16swizzleFocusViewEv
fun:_ZN18FocusIndicationFix11ScopedFixerC2Ev
fun:_ZN18FocusIndicationFix11ScopedFixerC1Ev
fun:_ZN7WebCoreL11paintButtonENS_11ControlPartEjPNS_15GraphicsContextERKNS_7IntRectEfPNS_10ScrollViewE
fun:_ZNK7WebCore16ThemeChromiumMac5paintENS_11ControlPartEjPNS_15GraphicsContextERKNS_7IntRectEfPNS_10ScrollViewE
fun:_ZN7WebCore11RenderTheme5paintEPNS_12RenderObjectERKNS1_9PaintInfoERKNS_7IntRectE
fun:_ZN7WebCore9RenderBox27paintBoxDecorationsWithSizeERNS_12RenderObject9PaintInfoEiiii
fun:_ZN7WebCore9RenderBox19paintBoxDecorationsERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderBlock11paintObjectERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore11RenderBlock5paintERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore9InlineBox5paintERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore13InlineFlowBox5paintERNS_12RenderObject9PaintInfoEii
fun:_ZN7WebCore13RootInlineBox5paintERNS_12RenderObject9PaintInfoEii
fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_12RenderObject9PaintInfoEii
}
{
bug_44393
Memcheck:Leak
fun:_Znw*
fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKN3net9HostCache3KeyE13scoped_refptrINS4_5EntryEEEEE8allocateEmPKv
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE11_M_get_nodeEv
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE14_M_create_nodeERKS8_
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE9_M_insertEPSt18_Rb_tree_node_baseSG_RKS8_
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE13insert_uniqueERKS8_
fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_13scoped_refptrINS1_5EntryEEESt10_Select1stIS8_ESt4lessIS2_ESaIS8_EE13insert_uniqueESt17_Rb_tree_iteratorIS8_ERKS8_
fun:_ZNSt3mapIN3net9HostCache3KeyE13scoped_refptrINS1_5EntryEESt4lessIS2_ESaISt4pairIKS2_S5_EEE6insertESt17_Rb_tree_iteratorISA_ERKSA_
fun:_ZNSt3mapIN3net9HostCache3KeyE13scoped_refptrINS1_5EntryEESt4lessIS2_ESaISt4pairIKS2_S5_EEEixERS9_
fun:_ZN3net9HostCache3SetERKNS0_3KeyEiNS_11AddressListEN4base9TimeTicksE
fun:_ZN3net16HostResolverImpl13OnJobCompleteEPNS0_3JobEiiRKNS_11AddressListE
fun:_ZN3net16HostResolverImpl3Job16OnLookupCompleteEv
fun:_Z16DispatchToMethodIN3net16HostResolverImpl3JobEMS2_FvvEEvPT_T0_RK6Tuple0
fun:_ZN14RunnableMethodIN3net16HostResolverImpl3JobEMS2_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
fun:_ZN11MessageLoop10RunHandlerEv
}
{
bug_44879
Memcheck:Leak
fun:_Znw*
...
fun:_ZN12_GLOBAL__N_113ExtensionImpl12StartRequestERKN2v89ArgumentsE
}
{
bug_46186
Memcheck:Leak
fun:malloc_zone_malloc
fun:_ZN4base12_GLOBAL__N_137oom_killer_cfallocator_system_defaultElmPv
fun:_CFRuntimeCreateInstance
fun:CFRunLoopSourceCreate
fun:MSHCreateMIGServerSource
fun:_ZN20HALCADClientListenerC2EPFlmmPK26AudioObjectPropertyAddressPvES3_
fun:_ZN12HALCADClient19AddPropertyListenerEmPK26AudioObjectPropertyAddressPFlmmS2_PvES3_
fun:_ZN16HALDefaultDevice22InstallServerListenersEv
fun:_ZN16HALDefaultDevice10InitializeEv
fun:_ZN9HALSystem16CheckOutInstanceEv
fun:AudioObjectAddPropertyListener
fun:_ZN10AQMEDeviceC2EmPK27AudioStreamBasicDescriptionPK18AudioChannelLayout
fun:_Z11NewAQIONodembPK27AudioStreamBasicDescriptionPK18AudioChannelLayout
fun:_ZN15AQIONodeManager13_FindAQIONodeEmbb
fun:_ZN15AQIONodeManager12FindAQIONodeEmbb
fun:_ZN16AudioQueueObject15DoIONodeConnectERK25AudioQueueStreamSpecifierPK27AudioStreamBasicDescriptionPK18AudioChannelLayout
fun:_ZN16AudioQueueObject13EnqueueBufferEP16AudioQueueBufferjPK28AudioStreamPacketDescriptionjjjPK24AudioQueueParameterEventRK11AQTimeStampPS8_
fun:AQServer_EnqueueBuffer
fun:AudioQueueEnqueueBufferWithParameters
fun:AudioQueueEnqueueBuffer
fun:_ZN28PCMQueueOutAudioOutputStream5StartEPN17AudioOutputStream19AudioSourceCallbackE
fun:_ZN17AudioRendererHost14IPCAudioSource4PlayEv
}
{
bug_46678_m_a
Memcheck:Cond
fun:gleUpdateFogData
fun:gleUpdateState
fun:_ZN8remoting11CapturerMac12CaptureRectsERKSt3setIN3gfx4RectESt4lessIS3_ESaIS3_EEP14CallbackRunnerI6Tuple1I13scoped_refptrINS_11CaptureDataEEEE
fun:_ZN8remoting8Capturer19CaptureInvalidRectsEP14CallbackRunnerI6Tuple1I13scoped_refptrINS_11CaptureDataEEEE
fun:_ZN8remoting28CapturerMacTest_Capture_Test8TestBodyEv
}
{
bug_46678_m_b
Memcheck:Leak
fun:_Znw*
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_46708
Memcheck:Addr1
obj:*
fun:dlsym
fun:_ZN14PlatformThread7SetNameEPKc
...
fun:_pthread_start
fun:thread_start
}
{
bug_47330
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:_ZN7WebCore14SubframeLoader10loadPluginEPNS_20RenderEmbeddedObjectERKNS_4KURLERKNS_6StringERKN3WTF6VectorIS6_Lm0EEESD_b
fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_20RenderEmbeddedObjectERKNS_6StringERKNS_12AtomicStringES5_RKN3WTF6VectorIS3_Lm0EEESD_
fun:_ZN7WebCore20RenderEmbeddedObject12updateWidgetEb
fun:_ZN7WebCore9FrameView13updateWidgetsEv
fun:_ZN7WebCore9FrameView22performPostLayoutTasksEv
fun:_ZN7WebCore9FrameView6layoutEb
fun:_ZN7WebCore8Document13implicitCloseEv
fun:_ZN7WebCore11FrameLoader22checkCallImplicitCloseEv
fun:_ZN7WebCore11FrameLoader14checkCompletedEv
fun:_ZN7WebCore11FrameLoader15finishedParsingEv
fun:_ZN7WebCore8Document15finishedParsingEv
fun:_ZN7WebCore25LegacyHTMLTreeConstructor8finishedEv
fun:_ZN7WebCore16HTML5TreeBuilder8finishedEv
fun:_ZN7WebCore19HTML5DocumentParser3endEv
}
{
bug_47949
Memcheck:Cond
fun:rips_f_DrawRing
fun:rips_f_BltShape
fun:ripc_Render
fun:ripc_DrawRects
fun:CGContextFillRects
fun:CGContextFillRect
fun:NSRectFill
fun:_ZN18FocusIndicationFix40currentOSHasSetFocusRingStyleInBitmapBugEv
}
{
bug_49250_a
Memcheck:Cond
fun:gleUpdateFogData
fun:gleUpdateState
fun:_ZN8remoting11CapturerMac12CaptureRectsERKSt6vectorIN3gfx4RectESaIS3_EEP14CallbackRunnerI6Tuple1I13scoped_refptrINS_8Capturer11CaptureDataEEEE
fun:_ZN8remoting8Capturer19CaptureInvalidRectsEP14CallbackRunnerI6Tuple1I13scoped_refptrINS0_11CaptureDataEEEE
fun:_ZN8remoting28CapturerMacTest_Capture_Test8TestBodyEv
}
{
bug_49250_b
Memcheck:Cond
fun:gleUpdateFogData
fun:gleUpdateState
fun:_ZN8remoting11CapturerMac12CaptureRectsERKSt6vectorIN3gfx4RectESaIS3_EEP14CallbackRunnerI6Tuple1I13scoped_refptrINS_8Capturer11CaptureDataEEEE
fun:_ZN8remoting8Capturer19CaptureInvalidRectsEP14CallbackRunnerI6Tuple1I13scoped_refptrINS0_11CaptureDataEEEE
fun:_ZN8remoting28CapturerMacTest_Capture_Test8TestBodyEv
}
{
bug_49250_c
Memcheck:Cond
fun:gleUpdateFogData
fun:gleUpdateState
fun:_ZN8remoting11CapturerMac12CaptureRectsERKSt3setIN3gfx4RectESt4lessIS3_ESaIS3_EEP14CallbackRunnerI6Tuple1I13scoped_refptrINS_11CaptureDataEEEE
fun:_ZN8remoting8Capturer19CaptureInvalidRectsEP14CallbackRunnerI6Tuple1I13scoped_refptrINS_11CaptureDataEEEE
fun:_ZN8remoting28CapturerMacTest_Capture_Test8TestBodyEv
}
# See tools/valgrind/memcheck_analyze.py before modifying sanity tests.
{
bug_49253 Memcheck sanity test 04 (malloc/write left) or Memcheck sanity test 05 (malloc/write right) on Mac.
Memcheck:Addr1
fun:_Z14MakeSomeErrorsPcm
fun:_ZN43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
fun:_ZN7testing4Test3RunEv
fun:_ZN7testing8internal12TestInfoImpl3RunEv
fun:_ZN7testing8TestCase3RunEv
fun:_ZN7testing8internal12UnitTestImpl11RunAllTestsEv
fun:_ZN9TestSuite3RunEv
fun:main
}
{
bug_49253 Memcheck sanity test 13 (single element deleted with []) on Mac.
Memcheck:Free
fun:_ZdaPv
fun:_ZN7testing4Test3RunEv
fun:_ZN7testing8internal12TestInfoImpl3RunEv
fun:_ZN7testing8TestCase3RunEv
fun:_ZN7testing8internal12UnitTestImpl11RunAllTestsEv
fun:_ZN9TestSuite3RunEv
fun:main
}
{
bug_49253 Memcheck sanity test 08 (new/write left) or Memcheck sanity test 09 (new/write right) on Mac.
Memcheck:Addr1
fun:_Z14MakeSomeErrorsPcm
fun:_ZN40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
fun:_ZN7testing4Test3RunEv
fun:_ZN7testing8internal12TestInfoImpl3RunEv
fun:_ZN7testing8TestCase3RunEv
fun:_ZN7testing8internal12UnitTestImpl11RunAllTestsEv
fun:_ZN9TestSuite3RunEv
fun:main
}
{
bug_49253 Memcheck sanity test 12 (array deleted without []) on Mac.
Memcheck:Free
fun:_ZdlPv
fun:_ZN7testing4Test3RunEv
fun:_ZN7testing8internal12TestInfoImpl3RunEv
fun:_ZN7testing8TestCase3RunEv
fun:_ZN7testing8internal12UnitTestImpl11RunAllTestsEv
fun:_ZN9TestSuite3RunEv
fun:main
}
{
bug_49268_2
Memcheck:Leak
fun:_Znw*
fun:_ZN19DownloadManagerTestC2Ev
fun:_ZN7testing8internal15TestFactoryImplI40DownloadManagerTest_GetSafeFilename_TestE10CreateTestEv
}
{
bug_49268_3
Memcheck:Leak
fun:_Znw*
fun:_ZN19DownloadManagerTestC2Ev
fun:_ZN7testing8internal15TestFactoryImplI45DownloadManagerTest_TestDownloadFilename_TestE10CreateTestEv
}
{
bug_50281
Memcheck:Leak
fun:_Znw*
fun:_ZN*
fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
fun:_ZN12_GLOBAL__N_122FactoryForOffTheRecordC2EP7Profile
fun:_ZN29ChromeURLRequestContextGetter18CreateOffTheRecordEP7Profile
fun:_ZN23OffTheRecordProfileImplC2EP7Profile
fun:_ZN11ProfileImpl22GetOffTheRecordProfileEv
fun:_ZN7Browser18NewIncognitoWindowEv
fun:_ZN7Browser29ExecuteCommandWithDispositionEi21WindowOpenDisposition
fun:_ZN7Browser14ExecuteCommandEi
fun:_ZN3IPC16MessageWithReplyI6Tuple2IiiE6Tuple1IRbEE18DispatchDelayReplyI18AutomationProviderMS8_FviiPNS_7MessageEEEEbPKS9_PT_T0_
fun:_ZN18AutomationProvider17OnMessageReceivedERKN3IPC7MessageE
fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
fun:_ZN3IPC11SyncChannel20ReceivedSyncMsgQueue16DispatchMessagesEv
fun:_ZN3IPC11SyncChannel23OnWaitableEventSignaledEPN4base13WaitableEventE
fun:_ZN4base17AsyncCallbackTask3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base24MessagePumpCFRunLoopBase7RunWorkEv
fun:CFRunLoopRunSpecific
fun:CFRunLoopRunInMode
}
{
bug_50286
Memcheck:Leak
fun:_Znw*
fun:_ZN11ProfileImpl14InitExtensionsEv
fun:_ZN14ProfileManager10AddProfileEP7Profileb
fun:_ZN14ProfileManager10GetProfileERK8FilePathb
fun:_ZN14ProfileManager10GetProfileERK8FilePath
fun:_ZN14ProfileManager17GetDefaultProfileERK8FilePath
fun:_ZN12_GLOBAL__N_113CreateProfileERK18MainFunctionParamsRK8FilePath
fun:_Z11BrowserMainRK18MainFunctionParams
fun:ChromeMain
fun:main
}
{
bug_46186
Memcheck:Leak
fun:_Znw*
fun:_ZN12HALCADClient19AddPropertyListenerEmPK26AudioObjectPropertyAddressPFlmmS2_PvES3_
fun:_ZN16HALDefaultDevice22InstallServerListenersEv
fun:_ZN16HALDefaultDevice10InitializeEv
fun:_ZN9HALSystem16CheckOutInstanceEv
fun:AudioObjectAddPropertyListener
fun:_ZN10AQMEDeviceC2EmPK27AudioStreamBasicDescriptionPK18AudioChannelLayout
fun:_Z11NewAQIONodembPK27AudioStreamBasicDescriptionPK18AudioChannelLayout
fun:_ZN15AQIONodeManager13_FindAQIONodeEmbb
fun:_ZN15AQIONodeManager12FindAQIONodeEmbb
fun:_ZN16AudioQueueObject15DoIONodeConnectERK25AudioQueueStreamSpecifierPK27AudioStreamBasicDescriptionPK18AudioChannelLayout
fun:_ZN16AudioQueueObject13EnqueueBufferEP16AudioQueueBufferjPK28AudioStreamPacketDescriptionjjjPK24AudioQueueParameterEventRK11AQTimeStampPS8_
fun:AQServer_EnqueueBuffer
fun:AudioQueueEnqueueBufferWithParameters
fun:AudioQueueEnqueueBuffer
fun:_ZN28PCMQueueOutAudioOutputStream5StartEPN17AudioOutputStream19AudioSourceCallbackE
fun:_ZN5media21AudioOutputController6DoPlayEv
fun:_ZN14RunnableMethodIN5media21AudioOutputControllerEMS1_FvvE6Tuple0E3RunEv
fun:_ZN11MessageLoop7RunTaskEP4Task
fun:_ZN11MessageLoop21DeferOrRunPendingTaskERKNS_11PendingTaskE
fun:_ZN11MessageLoop6DoWorkEv
fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
}
{
bug_50297
Memcheck:Cond
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
}
{
bug_50297
Memcheck:Cond
fun:_ZN6Pickle8FindNextEmPKcS1_
fun:_ZN3IPC7Message8FindNextEPKcS2_
fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
fun:event_process_active
fun:event_base_loop
fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
fun:_ZN11MessageLoop11RunInternalEv
}
{
bug_50638
Memcheck:Cond
fun:gleUpdateViewScissorData
...
fun:cgl_set_surface
fun:ogl_attach_surface
fun:ogl_render_fade_transition
fun:ogl_render_layer_
fun:ogl_render_layers
}
{
bug_51786
Memcheck:Leak
fun:_Znw*
fun:_ZN7tabpose7TileSet5BuildEP13TabStripModel
fun:-[TabposeWindow setUpLayers:slomo:]
fun:-[TabposeWindow initForWindow:rect:slomo:tabStripModel:]
fun:_ZN31TabposeWindowTest_TestShow_Test8TestBodyEv
}
{
bug_52364_a
Memcheck:Value4
fun:_ZNK10CMMConvLut7ConvertER10CMMMinBitsP14CMMRuntimeInfomm
fun:_Z16CMMProcessBitmapP15CMMBitmapParams
fun:DoMatchBitmap
fun:CWMatchBitmap
fun:ConvertImageGeneric
fun:CMSColorWorldConvertData
fun:CMSTransformConvertData
fun:CGCMSInterfaceTransformConvertData
fun:CGColorTransformConvertData
}
{
bug_52364_b
Memcheck:Cond
fun:_ZNK10CMMMtxOnly10ConvertMinE10CMM3x3Type10CMM3x1TypeR12CMMMinBuffermm
fun:_ZNK21CMMConvMatrixTemplateI10CMMMtxOnly22CMMConvGrayToRGBMatrixE7ConvertER10CMMMinBitsP14CMMRuntimeInfomm
fun:_Z16CMMProcessBitmapP15CMMBitmapParams
fun:DoMatchBitmap
fun:CWMatchBitmap
fun:ConvertImageGeneric
fun:CMSColorWorldConvertData
fun:CMSTransformConvertData
fun:CGCMSInterfaceTransformConvertData
fun:CGColorTransformConvertData
}
|