Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / tools / valgrind / memcheck / suppressions.txt
1 # There are four kinds of suppressions in this file.
2 # 1. third party stuff we have no control over
3 #
4 # 2. intentional unit test errors, or stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing
6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system (but a few aren't yet).
9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions.
11 #-----------------------------------------------------------------------
12
13 # 1. third party stuff we have no control over
14 {
15    Uninitialized value in deflate (Third Party)
16    Memcheck:Uninitialized
17    ...
18    fun:MOZ_Z_deflate
19 }
20 {
21    #gtk developers don't like cleaning up one-time leaks.  See http://mail.gnome.org/archives/gtk-devel-list/2004-April/msg00230.html
22    gtk_init_check leak (Third Party)
23    Memcheck:Leak
24    ...
25    fun:gtk_init_check
26 }
27 {
28    Fontconfig leak?
29    Memcheck:Leak
30    ...
31    fun:XML_ParseBuffer
32    fun:FcConfigParseAndLoad
33 }
34 {
35    bug_9245_FcConfigAppFontAddFile_leak
36    Memcheck:Leak
37    ...
38    fun:FcConfigAppFontAddFile
39 }
40 {
41    pango_font_leak_todo_3
42    Memcheck:Leak
43    ...
44    fun:FcFontRenderPrepare
45    ...
46    fun:pango_itemize_with_base_dir
47 }
48 {
49    pango_font_leak_todo_4
50    Memcheck:Leak
51    ...
52    fun:FcFontRenderPrepare
53    ...
54    fun:pango_ot_buffer_output
55 }
56 {
57    pango_font_leak_todo_5
58    Memcheck:Leak
59    ...
60    fun:FcFontRenderPrepare
61    ...
62    fun:pango_context_get_metrics
63 }
64 {
65    pango_font_leak_todo_6
66    Memcheck:Leak
67    ...
68    fun:FcDefaultSubstitute
69    ...
70    fun:pango_itemize_with_base_dir
71 }
72 {
73    # Similar to fontconfig_bug_8428 below. Reported in
74    # https://bugs.freedesktop.org/show_bug.cgi?id=8215
75    fontconfig_bug_8215
76    Memcheck:Leak
77    fun:malloc
78    fun:FcPatternObjectInsertElt
79    fun:FcPatternObjectAddWithBinding
80 }
81 {
82    # Fontconfig leak, seen in shard 16 of 20 of ui_tests
83    # See https://bugs.freedesktop.org/show_bug.cgi?id=8428
84    # and http://www.gnome.org/~johan/gtk.suppression
85    fontconfig_bug_8428
86    Memcheck:Leak
87    ...
88    fun:realloc
89    fun:FcPatternObjectInsertElt
90    fun:FcPatternObjectAddWithBinding
91 }
92 {
93    bug_18590 (Third Party)
94    Memcheck:Leak
95    ...
96    fun:malloc
97    fun:FcConfigValues
98    fun:FcConfigValues
99    ...
100    fun:FcConfigValues
101    fun:FcConfigValues
102 }
103 {
104    dlopen leak on error. Chromium issues 268368,273385. See http://sourceware.org/bugzilla/show_bug.cgi?id=12878.
105    Memcheck:Leak
106    fun:calloc
107    fun:_dlerror_run
108    fun:dlopen@@GLIBC_2.2.5
109 }
110 {
111    bug_58730_libc.so_value8 (Third Party)
112    Memcheck:Uninitialized
113    obj:/lib/libc-2.11.1.so
114 }
115 # net::SniffXML() clearly tries to read < 8 bytes, but strncasecmp() reads 8.
116 {
117    bug_58730_strncasecmp_uninit (Third Party)
118    Memcheck:Uninitialized
119    ...
120    fun:strncasecmp
121    fun:_ZN4base11strncasecmpEPKcS1_m
122    fun:_ZN3netL8SniffXMLEPKcmPbPSs
123 }
124 {
125    bug_76386a (Third Party)
126    Memcheck:Leak
127    fun:_Znw*
128    fun:_ZNSs4_Rep9_S_createE*RKSaIcE
129    ...
130    fun:_ZNSsC1*KS*
131 }
132 {
133    bug_76386b (Third Party)
134    Memcheck:Leak
135    fun:_Znw*
136    fun:_ZNSs4_Rep9_S_createE*RKSaIcE
137    fun:_ZNSs4_Rep8_M_cloneERKSaIcE*
138 }
139 {
140    getpwuid_and_getgrouplist
141    Memcheck:Leak
142    fun:malloc
143    fun:nss_parse_service_list
144    fun:__nss_database_lookup
145    obj:*
146    ...
147    fun:get*
148 }
149
150 # XRandRInfo object seems to be leaking inside XRRFindDisplay.  This happens the
151 # first time it is called, no matter who the caller is.  We have observed this
152 # problem with both XRRSelectInput and XRRQueryExtension.
153 {
154    bug_119677
155    Memcheck:Leak
156    fun:malloc
157    fun:XRRFindDisplay
158 }
159 {
160    Ubuntu_Precise_Fontconfig_Optimized_Code
161    Memcheck:Unaddressable
162    fun:FcConfigFileExists
163 }
164 {
165    Ubuntu_Precise_Itoa_Optimized_Code
166    Memcheck:Uninitialized
167    fun:_itoa_word
168    fun:vfprintf
169    fun:__vsnprintf_chk
170    fun:__snprintf_chk
171 }
172 {
173    Ubuntu_Precise_Wcscmp_Optimized_Code_In_Tests
174    Memcheck:Uninitialized
175    fun:wcscmp
176    fun:_ZN7testing8internal6String17WideCStringEqualsEPKwS3_
177 }
178 {
179    mesa_glsl_compile_shader
180    Memcheck:Leak
181    ...
182    fun:_mesa_glsl_compile_shader
183    fun:compile_shader
184    fun:_mesa_CompileShaderARB
185    fun:shared_dispatch_stub_529
186 }
187
188 #-----------------------------------------------------------------------
189 # 2. intentional unit test errors, or stuff that is somehow a false positive
190 # in our own code, or stuff that is so trivial it's not worth fixing
191
192 # See tools/valgrind/memcheck_analyze.py before modifying sanity tests.
193 {
194    Memcheck sanity test 01 (memory leak).
195    Memcheck:Leak
196    fun:_Zna*
197    fun:_ZN4base31ToolsSanityTest_MemoryLeak_Test8TestBodyEv
198 }
199 {
200    Memcheck sanity test 02 (malloc/read left).
201    Memcheck:Unaddressable
202    fun:*ReadValueOutOfArrayBoundsLeft*
203    ...
204    fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
205 }
206 {
207    Memcheck sanity test 03 (malloc/read right).
208    Memcheck:Unaddressable
209    fun:*ReadValueOutOfArrayBoundsRight*
210    ...
211    fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
212 }
213 {
214    Memcheck sanity test 04 (malloc/write left).
215    Memcheck:Unaddressable
216    fun:*WriteValueOutOfArrayBoundsLeft*
217    ...
218    fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
219 }
220 {
221    Memcheck sanity test 05 (malloc/write right).
222    Memcheck:Unaddressable
223    fun:*WriteValueOutOfArrayBoundsRight*
224    ...
225    fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
226 }
227 {
228    Memcheck sanity test 06 (new/read left).
229    Memcheck:Unaddressable
230    fun:*ReadValueOutOfArrayBoundsLeft*
231    ...
232    fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
233 }
234 {
235    Memcheck sanity test 07 (new/read right).
236    Memcheck:Unaddressable
237    fun:*ReadValueOutOfArrayBoundsRight*
238    ...
239    fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
240 }
241 {
242    Memcheck sanity test 08 (new/write left).
243    Memcheck:Unaddressable
244    fun:*WriteValueOutOfArrayBoundsLeft*
245    ...
246    fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
247 }
248 {
249    Memcheck sanity test 09 (new/write right).
250    Memcheck:Unaddressable
251    fun:*WriteValueOutOfArrayBoundsRight*
252    ...
253    fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
254 }
255 {
256    Memcheck sanity test 10 (write after free).
257    Memcheck:Unaddressable
258    fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
259 }
260 {
261    Memcheck sanity test 11 (write after delete).
262    Memcheck:Unaddressable
263    fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
264 }
265 {
266    Memcheck sanity test 12 (array deleted without []).
267    Memcheck:Free
268    ...
269    fun:_ZN4base46ToolsSanityTest_ArrayDeletedWithoutBraces_Test8TestBodyEv
270 }
271 {
272    Memcheck sanity test 13 (single element deleted with []).
273    Memcheck:Free
274    ...
275    fun:_ZN4base51ToolsSanityTest_SingleElementDeletedWithBraces_Test8TestBodyEv
276 }
277 {
278    Memcheck sanity test 14 (malloc/read uninit).
279    Memcheck:Uninitialized
280    fun:*ReadUninitializedValue*
281    ...
282    fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
283 }
284 {
285    Memcheck sanity test 15 (new/read uninit).
286    Memcheck:Uninitialized
287    fun:*ReadUninitializedValue*
288    ...
289    fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
290 }
291 {
292    bug_86301 This test explicitly verifies PostTaskAndReply leaks the task if the originating MessageLoop has been deleted.
293    Memcheck:Leak
294    fun:_Znw*
295    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
296    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
297    fun:_ZN4base12_GLOBAL__N_169MessageLoopProxyTest_PostTaskAndReply_DeadReplyLoopDoesNotDelete_Test8TestBodyEv
298 }
299 {
300    # Non-joinable thread doesn't clean up all state on program exit
301    # very common in ui tests
302    bug_16096 (WontFix)
303    Memcheck:Leak
304    fun:_Znw*
305    fun:_ZNSs4_Rep9_S_createE*RKSaIcE
306    fun:_ZNSs4_Rep8_M_cloneERKSaIcE*
307    fun:_ZNSs7reserveE*
308    fun:_ZNSs6appendEPKc*
309    fun:*StringAppendV*
310    ...
311    fun:_ZN4base12StringPrintfEPKcz
312 }
313 {
314    # According to dglazkov, these are one-time leaks and intentional.
315    # They may go away if the change to move these off the heap lands.
316    bug_17996 (Intentional)
317    Memcheck:Leak
318    ...
319    fun:_ZN7WebCore8SVGNames4initEv
320 }
321 {
322    # This is an on demand initialization which is done and then intentionally
323    # kept around (not freed) while the process is running.
324    intentional_WebCore_XMLNames_init_leak
325    Memcheck:Leak
326    ...
327    fun:_ZN7WebCore8XMLNames4initEv
328 }
329 {
330    # Intentionally leaking NSS to prevent shutdown crashes
331    bug_61585a (Intentional)
332    Memcheck:Leak
333    fun:calloc
334    ...
335    fun:error_get_my_stack
336 }
337 {
338    FileStream::Context can leak through WorkerPool by design
339    Memcheck:Leak
340    fun:_Znw*
341    fun:_ZN3net10FileStreamC1EPNS_6NetLogE
342 }
343 {
344    # Histograms are used on un-joined threads, and can't be deleted atexit.
345    Histograms via FactoryGet including Linear Custom Boolean and Basic
346    Memcheck:Leak
347    fun:_Znw*
348    ...
349    fun:_ZN4base*Histogram10FactoryGet*
350 }
351 {
352    Intentional leak for SampleMap (stores SparseHistogram counts).
353    Memcheck:Leak
354    ...
355    fun:_ZN4base9SampleMap10AccumulateEii
356    fun:_ZN4base15SparseHistogram3AddEi
357 }
358 {
359    bug_73299 (Intentional)
360    Memcheck:Leak
361    fun:_Znw*
362    fun:_ZN7content17WorkerProcessHost20CreateMessageFiltersEi
363    fun:_ZN7content17WorkerProcessHost4InitE*
364    fun:_ZN7content17WorkerServiceImpl24CreateWorkerFromInstanceENS_17WorkerProcessHost14WorkerInstanceE
365    fun:_ZN7content17WorkerServiceImpl12CreateWorkerE*
366    fun:_ZN7content19WorkerMessageFilter14OnCreateWorkerERK31ViewHostMsg_CreateWorker_ParamsPi
367 }
368 {
369    bug_83345 (Needs_Annotation)
370    Memcheck:Leak
371    ...
372    fun:_ZN4base*23LeakyLazyInstanceTraits*NewEPv
373    fun:_ZN4base12LazyInstance*LeakyLazyInstanceTraits*PointerEv
374 }
375 {
376    bug_87500_a (Intentional)
377    Memcheck:Leak
378    ...
379    fun:_ZN10disk_cache9BackendIO23ExecuteBackendOperationEv
380    fun:_ZN10disk_cache9BackendIO16ExecuteOperationEv
381 }
382 {
383    bug_79322 (Intentional)
384    Memcheck:Leak
385    fun:_Znw*
386    ...
387    fun:_ZN4base*StatisticsRecorderTest_*_Test8TestBodyEv
388 }
389 {
390    # According to dglazkov, UA style sheets are intentionally leaked.
391    # As such, treat any leaks originating from parseUASheet as intentional.
392    bug_121729 (Intentional)
393    Memcheck:Leak
394    ...
395    fun:_ZN7WebCoreL12parseUASheetEPKcj
396 }
397 {
398    bug_121729_b (Intentional)
399    Memcheck:Leak
400    ...
401    fun:_ZN7WebCoreL12parseUASheetERKN3WTF6StringE
402 }
403 {
404    intentional_see_bug_156466
405    Memcheck:Leak
406    fun:_Znw*
407    fun:_ZN3ash5ShellC1EPNS_13ShellDelegateE
408    fun:_ZN3ash5Shell14CreateInstanceEPNS_13ShellDelegateE
409 }
410
411 # http://crbug.com/269278 causes really widespread, flaky leaks in
412 # value objects that own some memory.  These suppressions will cover
413 # all such objects, even though it's possible to get real leaks that
414 # look the same way (e.g. by allocating such an object in an arena).
415 {
416    bug_269278a
417    Memcheck:Leak
418    fun:_Znw*
419    fun:_ZN4base4Bind*Callback*BindState*
420 }
421 {
422    bug_269278b
423    Memcheck:Leak
424    fun:_Znw*
425    fun:_ZN9__gnu_cxx13new_allocator*allocate*
426    fun:_ZNSt12_Vector_base*_M_allocate*
427 }
428
429 # Externally allocated objects referenced by V8 objects can currently
430 # be diagnosed as (false) leaks, since memcheck does not know how to
431 # handle V8 leaks. More detailed discussion in http://crbug.com/328552
432 {
433    bug_328552
434    Memcheck:Leak
435    fun:malloc
436    fun:_ZN3WTF10StringImpl19createUninitializedEjRPh
437 }
438
439
440
441 #-----------------------------------------------------------------------
442 # 3. Suppressions for real chromium bugs that are not yet fixed.
443 # These should all be in chromium's bug tracking system (but a few aren't yet).
444
445 {
446    # webkit leak?  See http://crbug.com/9503
447    bug_9503
448    Memcheck:Leak
449    ...
450    fun:_ZN19TestWebViewDelegate24UpdateSelectionClipboardEb
451 }
452 {
453    # very common in ui tests
454    bug_16091
455    Memcheck:Leak
456    ...
457    fun:_ZN4base11MessageLoop22AddDestructionObserverEPNS0_19DestructionObserverE
458    ...
459    fun:_ZN3IPC11SyncChannel11SyncContext15OnChannelOpenedEv
460 }
461 {
462    # very common in ui tests
463    bug_16092
464    Memcheck:Leak
465    fun:*
466    fun:_ZN4base11MessageLoopC1ENS0_4TypeE
467    fun:_ZN4base6Thread10ThreadMainEv
468 }
469 {
470    # very common in ui tests
471    bug_16092b
472    Memcheck:Leak
473    ...
474    fun:_ZNSt11_Deque_baseIN4base11PendingTaskESaIS1_EE17_M_initialize_mapE*
475    ...
476    fun:_ZN4base11MessageLoopC1ENS0_4TypeE
477 }
478 {
479    # very common in ui tests
480    bug_16092c
481    Memcheck:Leak
482    ...
483    fun:_ZNSt14priority_queueIN11MessageLoop11PendingTaskESt6vectorIS1_SaIS1_EESt4lessIS1_EEC1ERKS6_RKS4_
484    fun:_ZN4base11MessageLoopC1ENS0_4TypeE
485    fun:_ZN4base6Thread10ThreadMainEv
486 }
487 {
488    # very common in ui tests, also seen in Linux Reliability
489    bug_16093
490    Memcheck:Leak
491    ...
492    fun:getaddrinfo
493 }
494 {
495    # very common in ui tests, also seen in Linux Reliability
496    bug_16095
497    Memcheck:Leak
498    ...
499    fun:_ZN4base11MessageLoop21AddToDelayedWorkQueueERKN*PendingTaskE
500    fun:_ZN4base11MessageLoop6DoWorkEv
501 }
502 {
503    bug_16128
504    Memcheck:Leak
505    fun:_Znw*
506    ...
507    fun:_ZN3IPC11SyncChannelC1E*
508    ...
509    fun:_ZN7content11ChildThread4InitEv
510 }
511 {
512    bug_16326
513    Memcheck:Leak
514    fun:_Znw*
515    ...
516    fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
517    fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
518    fun:_ZN7WebCore22ResourceHandleInternal5startEv
519 }
520 {
521    bug_17291
522    Memcheck:Leak
523    fun:malloc
524    fun:_ZN3WTF10fastMallocE*
525    ...
526    fun:_ZN2v88internal8JSObject23SetPropertyWithCallbackEPNS0_6ObjectEPNS0_6StringES3_PS1_
527 }
528 {
529    # also bug 17979.  It's a nest of leaks.
530    bug_17385
531    Memcheck:Leak
532    fun:_Znw*
533    ...
534    fun:_ZN3IPC12ChannelProxy7Context13CreateChannel*Channel4ModeE
535    fun:_ZN3IPC12ChannelProxy4Init*
536    ...
537    fun:_ZN3IPC11SyncChannel*Channel4Mode*Listener*
538 }
539 {
540    bug_17540
541    Memcheck:Leak
542    fun:_Znw*
543    fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptor*FileDescriptorWatcherEPNS0_7WatcherE
544    fun:_ZN4base16MessageLoopForIO19WatchFileDescriptor*MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
545    ...
546    fun:_ZN3IPC7Channel11ChannelImpl7ConnectEv
547    fun:_ZN3IPC7Channel7ConnectEv
548    fun:_ZN3IPC12ChannelProxy7Context15OnChannelOpenedEv
549 }
550 {
551    bug_19196
552    Memcheck:Leak
553    fun:_Znw*
554    fun:_ZN2v817RegisterExtensionEPNS_9ExtensionE
555    fun:_ZN7WebCore7V8Proxy23registerExtensionWithV8EPN2v89ExtensionE
556    fun:_ZN7WebCore7V8Proxy17registerExtensionEPN2v89ExtensionEi
557    fun:_ZN5blink17registerExtensionEPN2v89ExtensionEi
558    fun:_ZN12RenderThread23EnsureWebKitInitializedEv
559 }
560 {
561    bug_19371
562    Memcheck:Leak
563    fun:_Znw*
564    ...
565    fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
566    fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
567    fun:_ZN4base13WaitableEvent4WaitEv
568    fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
569 }
570 {
571    # slight variant of the above
572    bug_19371a
573    Memcheck:Leak
574    fun:_Znw*
575    ...
576    fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
577    fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
578    fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
579 }
580 {
581    bug_19377
582    Memcheck:Leak
583    fun:calloc
584    ...
585    fun:event_base_new
586    fun:_ZN4base19MessagePumpLibeventC1Ev
587    fun:_ZN4base11MessageLoopC1ENS0_4TypeE
588    fun:_ZN4base6Thread10ThreadMainEv
589 }
590 {
591    bug_19463
592    Memcheck:Leak
593    ...
594    fun:_ZN4base19MessagePumpLibevent4InitEv
595    fun:_ZN4base19MessagePumpLibeventC1Ev
596    fun:_ZN4base11MessageLoopC1ENS0_4TypeE
597 }
598 {
599    bug_19775_a
600    Memcheck:Leak
601    ...
602    fun:malloc
603    fun:sqlite3MemMalloc
604    fun:mallocWithAlarm
605    fun:sqlite3Malloc
606    ...
607    fun:sqlite3VdbeExec
608    fun:sqlite3Step
609    fun:sqlite3_step
610    fun:sqlite3_exec
611    fun:_ZN3sql10Connection7Execute*
612    ...
613    fun:_ZN7history*Database*Create*
614 }
615 {
616    bug_19775_c
617    Memcheck:Leak
618    ...
619    fun:openDatabase
620    fun:sqlite3_open
621    fun:_ZN3sql10Connection12OpenInternalERKSs
622 }
623 {
624    bug_19775_g
625    Memcheck:Leak
626    fun:malloc
627    fun:sqlite3MemMalloc
628    fun:mallocWithAlarm
629    fun:sqlite3Malloc
630    fun:sqlite3ParserAlloc
631    fun:sqlite3RunParser
632    fun:sqlite3Prepare
633    fun:sqlite3LockAndPrepare
634    fun:sqlite3_prepare*
635 }
636 {
637    bug_19775_h
638    Memcheck:Leak
639    ...
640    fun:malloc
641    fun:sqlite3MemMalloc
642    fun:mallocWithAlarm
643    fun:sqlite3Malloc
644    ...
645    fun:yy_reduce
646 }
647 # IPCing uninitialized data
648 {
649    bug_20997_a
650    Memcheck:Param
651    socketcall.sendmsg(msg.msg_iov[i])
652    fun:sendmsg*
653    fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
654 }
655 {
656    bug_20997_b
657    Memcheck:Param
658    socketcall.sendmsg(msg.msg_iov[i])
659    fun:sendmsg$UNIX2003
660    ...
661    fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
662    ...
663    fun:event_process_active
664    fun:event_base_loop
665 }
666 {
667    bug_22098
668    Memcheck:Leak
669    fun:_Znw*
670    fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
671    fun:_ZN4base16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
672    fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
673    fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
674    fun:_ZN3IPC7Channel4SendEPNS_7MessageE
675    fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE
676    fun:_ZN3IPC8SendTask3RunEv
677 }
678 {
679    bug_22923
680    Memcheck:Leak
681    fun:_Znw*
682    ...
683    fun:_ZN13WorkerService12CreateWorker*
684    fun:_ZN19RenderMessageFilter14OnCreateWorker*
685 }
686 {
687    bug_27665
688    Memcheck:Leak
689    fun:_Znw*
690    fun:_ZN10SkXfermode6CreateENS_4ModeE
691    fun:_ZN7SkPaint15setXfermodeModeEN10SkXfermode4ModeE
692    fun:_ZNK7WebCore19PlatformContextSkia16setupPaintCommonEP7SkPaint
693    fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceE
694    fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceENS_17CompositeOperatorE
695 }
696 # The following three suppressions are related to the workers code.
697 {
698    bug_27837
699    Memcheck:Leak
700    fun:_Znw*
701    fun:_ZN19WebSharedWorkerStub9OnConnectEii
702 }
703 {
704    # GTK tooltip doesn't always initialize variables.
705    # https://bugzilla.gnome.org/show_bug.cgi?id=554686
706    tooltip_554686
707    Memcheck:Uninitialized
708    fun:child_location_foreach
709    fun:gtk_fixed_forall
710    ...
711    fun:find_widget_under_pointer
712    fun:gtk_tooltip_show_tooltip
713    fun:tooltip_popup_timeout
714    fun:gdk_threads_dispatch
715    fun:g_timeout_dispatch
716 }
717 {
718    bug_29675
719    Memcheck:Leak
720    fun:_Znw*
721    fun:_ZN27ChromeBrowserMainPartsPosix24PostMainMessageLoopStartEv
722    fun:_ZN7content15BrowserMainLoop20MainMessageLoopStartEv
723    fun:_ZN7content21BrowserMainRunnerImpl10InitializeERKNS_18MainFunctionParamsE
724    fun:_ZN7content11BrowserMainERKNS_18MainFunctionParamsE
725    fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
726    fun:_ZN7content21ContentMainRunnerImpl3RunEv
727    fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
728    fun:ChromeMain
729 }
730 {
731    bug_30346
732    Memcheck:Leak
733    fun:_Znw*
734    ...
735    fun:_ZN13TCMallocGuardC1Ev
736    fun:_Z41__static_initialization_and_destruction_0ii
737    fun:_GLOBAL__I__ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE
738 }
739 {
740    bug_30346b
741    Memcheck:Unaddressable
742    ...
743    fun:_ZSt22__get_temporary_bufferIPN7WebCore11RenderLayerEESt4pairIPT_iEiS5_
744    fun:_ZNSt17_Temporary_bufferIPPN7WebCore11RenderLayerES2_EC1ES3_S3_
745    fun:_ZN7WebCore11RenderLayer17updateZOrderListsEv
746    fun:_ZN7WebCore11RenderLayer24updateLayerListsIfNeededEv
747    fun:_ZN7WebCore11RenderLayer38updateCompositingAndLayerListsIfNeededEv
748 }
749 {
750    bug_30703a
751    Memcheck:Param
752    write(buf)
753    ...
754    fun:zipCloseFileInZipRaw
755    fun:zipCloseFileInZip
756    fun:_Z*13AddEntryToZip*
757 }
758 {
759    bug_30703b
760    Memcheck:Uninitialized
761    fun:deflate
762    ...
763    fun:zipCloseFileInZipRaw
764    fun:zipCloseFileInZip
765    fun:_Z*13AddEntryToZip*
766 }
767 {
768    bug_30704a
769    Memcheck:Uninitialized
770    fun:crc32
771    ...
772    fun:png_write_row
773 }
774 {
775    bug_30704b
776    Memcheck:Param
777    write(buf)
778    ...
779    fun:_ZN17SandboxedUnpacker17RewriteImageFilesEv
780 }
781 {
782    bug_30704c
783    Memcheck:Param
784    write(buf)
785    ...
786    fun:_ZNK16BrowserThemePack11WriteToDiskE*
787 }
788 {
789    bug_30704d
790    Memcheck:Uninitialized
791    ...
792    fun:png_process_data
793    fun:_ZN7WebCore14PNGImageReader6decodeERKNS_12SharedBufferEb
794    fun:_ZN7WebCore15PNGImageDecoder6decodeEb
795    fun:_ZN7WebCore15PNGImageDecoder18frameBufferAtIndexEm
796 }
797 {
798    bug_30704e
799    Memcheck:Uninitialized
800    obj:*/libpng*
801    fun:png_write_row
802 }
803 {
804    bug_30704f
805    Memcheck:Uninitialized
806    ...
807    fun:wk_png_write_find_filter
808    fun:wk_png_write_row
809 }
810 {
811    bug_30704g
812    Memcheck:Param
813    write(buf)
814    obj:*libpthread*
815    fun:_ZN9file_util19WriteFileDescriptorE*
816    fun:_ZN9file_util9WriteFileE*
817    fun:*SaveScreenshotInternalE*4base8Callback*
818    fun:*SaveScreenshotE*4base8Callback*
819 }
820 {
821    bug_87232
822    Memcheck:Uninitialized
823    fun:_ZN7WebCore12base64EncodeEPKcjRN3WTF6VectorIcLj0EEEb
824    fun:_ZN7WebCore12base64EncodeERKN3WTF6VectorIcLj0EEERS2_b
825    fun:_ZN7WebCore*14ImageToDataURL*SkBitmapEEN3WTF6StringERT_*
826 }
827 {
828    bug_31985
829    Memcheck:Leak
830    fun:_Znw*
831    ...
832    fun:_ZN3net16HttpNetworkLayer10GetSessionEv
833    fun:_ZN3net16HttpNetworkLayer17CreateTransactionEP10scoped_ptrINS_15HttpTransactionEE
834    fun:_ZN3net9HttpCache11Transaction13DoSendRequestEv
835    fun:_ZN3net9HttpCache11Transaction6DoLoopEi
836 }
837 {
838    bug_32085
839    Memcheck:Leak
840    fun:_Znw*
841    fun:_ZN9__gnu_cxx13new_allocatorIN7content21NotificationRegistrar6RecordEE8allocate*
842    fun:_ZNSt12_Vector_baseIN7content21NotificationRegistrar6RecordESaIS*
843    fun:_ZNSt6vectorIN7content21NotificationRegistrar6RecordESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S*
844    fun:_ZNSt6vectorIN7content21NotificationRegistrar6RecordESaIS*
845    fun:_ZN7content21NotificationRegistrar3Add*
846 }
847 {
848    bug_32273_a
849    Memcheck:Leak
850    fun:_Znw*
851    fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
852    fun:_ZN3IPC11SyncChannel15SendWithTimeoutEPNS_7MessageEi
853    fun:_ZN3IPC11SyncChannel4SendEPNS_7MessageE
854    fun:_ZN11ChildThread4SendEPN3IPC7MessageE
855    fun:_ZN12RenderThread4SendEPN3IPC7MessageE
856    fun:_ZN12RenderWidget4SendEPN3IPC7MessageE
857    fun:_ZN12RenderWidget16DoDeferredUpdateEv
858    fun:_ZN12RenderWidget20CallDoDeferredUpdateEv
859 }
860 {
861    bug_32273_b
862    Memcheck:Leak
863    fun:_Znw*
864    ...
865    fun:_ZN24BrowserRenderProcessHost4SendEPN3IPC7MessageE
866    fun:_ZN16RenderWidgetHost4SendEPN3IPC7MessageE
867 }
868 {
869    bug_32623
870    Memcheck:Leak
871    ...
872    fun:ssl3_HandleHandshakeMessage
873    fun:ssl3_HandleHandshake
874    fun:ssl3_HandleRecord
875    fun:ssl3_GatherCompleteHandshake
876    fun:SSL_ForceHandshake
877    fun:_ZN3net18SSLClientSocketNSS4Core11DoHandshakeEv
878 }
879 {
880    bug_32624_b
881    Memcheck:Leak
882    fun:malloc
883    obj:*
884    obj:*
885    obj:*
886    obj:*
887    obj:*
888    obj:*
889    obj:*
890    obj:*
891    obj:*
892    obj:*
893    obj:*
894    obj:*
895    obj:*
896    obj:*
897    obj:*
898    obj:*
899    obj:*
900    obj:*
901    obj:*
902    obj:*
903    fun:secmod_ModuleInit
904 }
905 {
906    bug_32624_c
907    Memcheck:Leak
908    ...
909    fun:malloc
910    ...
911    fun:PORT_Alloc_Util
912    ...
913    fun:PK11_InitPin
914 }
915 {
916    bug_32624_f
917    Memcheck:Leak
918    ...
919    fun:CERT_PKIXVerifyCert
920    fun:_ZN3net12_GLOBAL__N_114PKIXVerifyCertE*
921 }
922 {
923    bug_32624_g
924    Memcheck:Leak
925    ...
926    fun:CERT_VerifySignedData
927    fun:cert_VerifyCertChain
928    fun:CERT_VerifyCertChain
929    fun:CERT_VerifyCert
930 }
931 {
932    bug_30633_39325
933    Memcheck:Leak
934    fun:_Znw*
935    ...
936    fun:_ZN11ProfileImpl17GetRequestContextEv
937    fun:_ZN19SafeBrowsingService5StartEv
938    fun:_ZN19SafeBrowsingService10InitializeEv
939    fun:_ZN22ResourceDispatcherHost10InitializeEv
940    fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
941    fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
942    fun:_ZN16ExtensionService4InitEv
943 }
944 {
945    bug_42842
946    Memcheck:Leak
947    fun:_Znw*
948    fun:_ZN19TestWebViewDelegate12createWorkerEPN5blink8WebFrameEPNS0_15WebWorkerClientE
949    fun:_ZN5blink19WebWorkerClientImpl24createWorkerContextProxyEPN7WebCore6WorkerE
950    fun:_ZN7WebCore18WorkerContextProxy6createEPNS_6WorkerE
951    fun:_ZN7WebCore6WorkerC1EPNS_22ScriptExecutionContextE
952    fun:_ZN7WebCore6Worker6createERKN3WTF6StringEPNS_22ScriptExecutionContextERi
953    fun:_ZN7WebCore8V8Worker19constructorCallbackERKN2v89ArgumentsE
954 }
955 {
956    bug_42942_a
957    Memcheck:Leak
958    fun:_Znw*
959    ...
960    fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
961    fun:_ZN3sql9MetaTable19PrepareGetStatementEPNS_9StatementEPKc
962    fun:_ZN3sql9MetaTable8GetValueEPKcPi
963    fun:_ZN3sql9MetaTable26GetCompatibleVersionNumberEv
964    ...
965    fun:_ZN3net13CookieMonster9InitStoreEv
966 }
967 {
968    bug_42942_b
969    Memcheck:Leak
970    fun:_Znw*
971    ...
972    fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
973    fun:_ZN3sql9MetaTable19PrepareSetStatementEPNS_9StatementEPKc
974    fun:_ZN3sql9MetaTable8SetValueEPKci
975    fun:_ZN3sql9MetaTable16SetVersionNumberEi
976    ...
977    fun:_ZN3net13CookieMonster9InitStoreEv
978 }
979 {
980    bug_42958_a
981    Memcheck:Leak
982    fun:malloc
983    ...
984    fun:_NPN_RegisterObject
985    fun:_ZN7WebCore16ScriptController20windowScriptNPObjectEv
986    fun:_ZNK6WebKit12WebFrameImpl12windowObjectEv
987    fun:_ZN6webkit5npapi13WebPluginImpl23GetWindowScriptNPObjectEv
988    fun:NPN_GetValue
989 }
990 {
991    bug_42958_b
992    Memcheck:Leak
993    fun:malloc
994    ...
995    fun:_NPN_RegisterObject
996    fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
997    fun:_ZN7WebCore16ScriptController18bindToWindowObjectEPNS_5FrameERKN3WTF6StringEP8NPObject
998    fun:_ZN5blink12WebFrameImpl18bindToWindowObjectERKNS_9WebStringEP8NPObject
999    fun:_ZN13CppBoundClass16bindToJavascriptEPN5blink8WebFrameERKNS0_9WebStringE
1000 }
1001 {
1002    bug_42958_c
1003    Memcheck:Leak
1004    fun:malloc
1005    ...
1006    fun:_NPN_RegisterObject
1007    fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
1008    fun:_ZN7WebCore16ScriptController29createScriptInstanceForWidgetEPNS_6WidgetE
1009    fun:_ZN*7WebCore17HTMLPlugInElement11getInstanceEv
1010 }
1011 {
1012    bug_43471
1013    Memcheck:Leak
1014    fun:_Znw*
1015    fun:_ZN9__gnu_cxx13new_allocatorIPN4base11MessageLoop19DestructionObserverEE8allocateE*
1016    fun:_ZNSt12_Vector_baseIPN4base11MessageLoop19DestructionObserverESaIS*
1017    fun:_ZNSt6vectorIPN4base11MessageLoop19DestructionObserverESaIS*
1018    fun:_ZNSt6vectorIPN4base11MessageLoop19DestructionObserverESaIS*
1019    fun:_ZN16ObserverListBaseIN4base11MessageLoop19DestructionObserverEE11AddObserverEPS*
1020    fun:_ZN4base11MessageLoop22AddDestructionObserverEPNS0_19DestructionObserverE
1021 }
1022 {
1023    bug_46250
1024    Memcheck:Leak
1025    fun:_Znw*
1026    fun:_ZN9__gnu_cxx13new_allocatorIPN11MessageLoop12TaskObserverEE8allocateEjPKv
1027    fun:_ZNSt12_Vector_baseIPN11MessageLoop12TaskObserverESaIS2_EE11_M_allocateEj
1028    fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_
1029    fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE9push_backERKS2_
1030    fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE11AddObserverEPS1_
1031    fun:_ZN4base11MessageLoop15AddTaskObserverEPNS_12TaskObserverE
1032    fun:*IOJankObserver21AttachToCurrentThreadEv
1033 }
1034 {
1035    bug_47950
1036    Memcheck:Leak
1037    fun:_Znw*
1038    ...
1039    fun:*CreateSpdyHeadersFromHttpRequestERKN3net15HttpRequestInfoEPSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE
1040 }
1041 {
1042    bug_49279_a
1043    Memcheck:Leak
1044    fun:_Znw*
1045    fun:*ChromeCookieMonsterDelegateC1EP7Profile
1046    fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
1047 }
1048 {
1049    bug_49279_b
1050    Memcheck:Leak
1051    fun:_Znw*
1052    ...
1053    fun:_ZN29ChromeURLRequestContextGetter28CreateRequestContextForMediaE*
1054    fun:_ZN29ChromeURLRequestContextGetter22CreateOriginalForMediaE*
1055    fun:_ZN11ProfileImpl25GetRequestContextForMediaEv
1056 }
1057 {
1058    bug_49279_c
1059    Memcheck:Leak
1060    fun:_Znw*
1061    fun:*ChromeCookieMonsterDelegateC2EP7Profile
1062    fun:*ChromeCookieMonsterDelegateC1EP7Profile
1063    fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
1064 }
1065 {
1066    bug_50304
1067    Memcheck:Leak
1068    ...
1069    fun:_ZN7history14HistoryBackend8InitImpl*
1070    fun:_ZN7history14HistoryBackend4Init*
1071 }
1072 {
1073    bug_50936
1074    Memcheck:Leak
1075    fun:_Znw*
1076    ...
1077    fun:_ZN23OffTheRecordProfileImpl4InitEv
1078    fun:_ZN7Profile25CreateOffTheRecordProfileEv
1079    fun:_ZN11ProfileImpl22GetOffTheRecordProfileEv
1080 }
1081 {
1082    bug_50968_a
1083    Memcheck:Leak
1084    ...
1085    fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
1086 }
1087 {
1088    bug_50968_b
1089    Memcheck:Unaddressable
1090    ...
1091    fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
1092 }
1093 {
1094    bug_50968_d
1095    Memcheck:Uninitialized
1096    ...
1097    fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
1098 }
1099 {
1100    bug_56359_a
1101    Memcheck:Leak
1102    fun:_Znw*
1103    fun:_ZN3net9HttpCache24GetBackendForTransactionEPNS0_11TransactionE
1104    fun:_ZN3net9HttpCache11Transaction12DoGetBackendEv
1105    fun:_ZN3net9HttpCache11Transaction6DoLoopEi
1106    fun:_ZN3net9HttpCache11Transaction5StartEPKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
1107    fun:_ZN17URLRequestHttpJob16StartTransactionEv
1108    fun:_ZN17URLRequestHttpJob24OnCanGetCookiesCompletedEi
1109    fun:_ZN17URLRequestHttpJob23AddCookieHeaderAndStartEv
1110    fun:_ZN17URLRequestHttpJob5StartEv
1111    fun:_ZN10URLRequest8StartJobEP13URLRequestJob
1112    fun:_ZN10URLRequest5StartEv
1113    fun:_ZN10URLFetcher4Core15StartURLRequestEv
1114 }
1115 {
1116    bug_51153
1117    Memcheck:Leak
1118    ...
1119    fun:_ZN7history14HistoryBackend16GetFaviconForURLE13scoped_refptrI17CancelableRequestI14CallbackRunnerI6Tuple5IibS1_I16RefCountedMemoryEb4GURLEEEERKS7_
1120 }
1121 {
1122    bug_51379
1123    Memcheck:Leak
1124    fun:malloc
1125    ...
1126    obj:/usr/lib/libpangocairo-1.0.so.0.2002.3
1127    ...
1128    fun:_ZN3gfx6Canvas13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiiii
1129    fun:_ZN3gfx6Canvas13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiii
1130 }
1131 {
1132    bug_51590a
1133    Memcheck:Unaddressable
1134    ...
1135    fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
1136    fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
1137 }
1138 {
1139    bug_51590b
1140    Memcheck:Unaddressable
1141    ...
1142    fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
1143    fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
1144 }
1145 {
1146    bug_51590c
1147    Memcheck:Unaddressable
1148    ...
1149    fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
1150    fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
1151 }
1152 {
1153    bug_51679
1154    Memcheck:Leak
1155    fun:_Znw*
1156    ...
1157    fun:_ZN14MessageService16AddEventListenerERKSsi
1158    fun:_ZN24BrowserRenderProcessHost22OnExtensionAddListenerERKSs
1159 }
1160 {
1161    bug_52831
1162    Memcheck:Leak
1163    fun:_Znw*
1164    ...
1165    fun:*InotifyReaderTask3RunEv
1166    ...
1167    fun:_ZN4base11MessageLoop11RunInternalEv
1168    fun:_ZN4base11MessageLoop10RunHandlerEv
1169 }
1170 {
1171    bug_52837
1172    Memcheck:Leak
1173    fun:_Znw*
1174    ...
1175    fun:_ZNSt3map*FilePath*insert*
1176    fun:_ZNSt3map*FilePath*ix*
1177    fun:_ZN16ExtensionService15UnloadExtensionERKSs
1178    fun:_ZN16ExtensionService18UninstallExtensionERKSsb
1179    fun:_ZN18AutomationProvider18UninstallExtensionEiPb
1180 }
1181 {
1182    bug_52957
1183    Memcheck:Unaddressable
1184    fun:glGetString
1185    fun:_ZN18gpu_info_collector19CollectGraphicsInfoER7GPUInfo
1186    fun:_ZN9GpuThread18OnEstablishChannelEi
1187 }
1188 {
1189    bug_54308
1190    Memcheck:Leak
1191    fun:_Znw*
1192    ...
1193    fun:_ZNK8chromeos25CrosSettingsProviderProxy3GetERKSsPP5Value
1194    fun:_ZNK8chromeos12CrosSettings3GetERKSsPP5Value
1195    fun:_ZN8chromeos26CoreChromeOSOptionsHandler9FetchPrefERKSs
1196    fun:_ZN18CoreOptionsHandler16HandleFetchPrefsEPK9ListValue
1197 }
1198 {
1199    bug_55533
1200    Memcheck:Leak
1201    fun:_Znw*
1202    ...
1203    fun:_ZN5IDMapIN3IPC7Channel8ListenerEL23IDMapOwnershipSemantics*
1204    fun:_ZN17RenderProcessHost*Profile
1205    fun:_ZN21MockRenderProcessHost*Profile
1206 }
1207 {
1208    bug_56676
1209    Memcheck:Leak
1210    fun:_Znw*
1211    fun:_ZN9__gnu_cxx13new_allocatorIN4base15file_util_proxy5EntryEE8allocate*
1212    fun:_ZNSt12_Vector_baseIN4base15file_util_proxy5EntryESaIS2_EE11_M_allocate*
1213    fun:_ZNSt6vectorIN4base15file_util_proxy5EntryESaIS2_EE20_M_allocate_and_copyIN9__gnu_cxx17__normal_iteratorIPKS2*
1214    fun:_ZNSt6vectorIN4base15file_util_proxy5EntryESaIS2_EEaSERKS4_
1215    fun:_ZN14MockDispatcher16DidReadDirectoryERKSt6vectorIN4base15file_util_proxy5EntryESaIS3_EEb
1216    fun:_ZN7fileapi19FileSystemOperation16DidReadDirectoryEN4base17PlatformFileErrorERKSt6vectorINS1_15file_util_proxy5EntryESaIS5_EE
1217 }
1218 {
1219    bug_58321
1220    Memcheck:Unaddressable
1221    fun:_ZNK3WTF6RefPtrIN7WebCore5FrameEE3getEv
1222    fun:_ZN7WebCore14ResourceLoader18didReceiveResponseEPNS_14ResourceHandleERKNS_16ResourceResponseE
1223    fun:_ZN7WebCore22ResourceHandleInternal18didReceiveResponseEPN5blink12WebURLLoaderERKNS1_14WebURLResponseE
1224    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnReceivedResponseERKNS_20ResourceLoaderBridge12ResponseInfoEb
1225    fun:_ZN85_GLOBAL__N_webkit_tools_test_shell_simple_resource_loader_bridge.cc_00000000_*12RequestProxy22NotifyReceivedResponseERKN11webkit_glue20ResourceLoaderBridge12ResponseInfoEb
1226 }
1227 {
1228    bug_58340
1229    Memcheck:Unaddressable
1230    fun:_ZNK3WTF6RefPtrIN7WebCore5FrameEE3getEv
1231    fun:_ZN7WebCore14ResourceLoader18didReceiveResponseEPNS_14ResourceHandleERKNS_16ResourceResponseE
1232    fun:_ZN7WebCore22ResourceHandleInternal18didReceiveResponseEPN5blink12WebURLLoaderERKNS1_14WebURLResponseE
1233    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnReceivedResponseERKNS_20ResourceResponseInfoEb
1234 }
1235 {
1236    bug_58546
1237    Memcheck:Leak
1238    fun:_Znw*
1239    fun:_ZN27SSLConfigServiceManagerPrefC1EP7Profile
1240    fun:_ZN23SSLConfigServiceManager20CreateDefaultManagerEP7Profile
1241    fun:_ZN11ProfileImplC1E*
1242    fun:_ZN7Profile13CreateProfileE*
1243    fun:_ZN14ProfileManager13CreateProfileE*
1244    fun:_ZN14ProfileManager10GetProfileE*
1245    fun:_ZN14ProfileManager17GetDefaultProfileE*
1246    fun:_ZN14ProfileManager17GetDefaultProfileEv
1247 }
1248 {
1249    bug_58561
1250    Memcheck:Leak
1251    fun:_Znw*
1252    ...
1253    fun:_ZN3net8internal26ClientSocketPoolBaseHelper16GetOrCreateGroupERKSs
1254    fun:_ZN3net8internal26ClientSocketPoolBaseHelper13RequestSocketERKSsPKNS1_7RequestE
1255    fun:_ZN3net20ClientSocketPoolBaseINS_*
1256    fun:_ZN3net*SocketPool13RequestSocketE*
1257    fun:_ZN3net18ClientSocketHandle4InitINS_*
1258    ...
1259    fun:_ZN3net21HttpStreamFactoryImpl3Job16DoInitConnectionEv
1260    fun:_ZN3net21HttpStreamFactoryImpl3Job6DoLoopEi
1261 }
1262 {
1263    bug_58564
1264    Memcheck:Leak
1265    fun:calloc
1266    ...
1267    fun:SSL_ImportFD
1268    fun:_ZN3net18SSLClientSocketNSS20InitializeSSLOptionsEv
1269    fun:_ZN3net18SSLClientSocketNSS7ConnectEP14CallbackRunnerI6Tuple1IiEE
1270    fun:_ZN3net13SSLConnectJob12DoSSLConnectEv
1271    fun:_ZN3net13SSLConnectJob6DoLoopEi
1272 }
1273 {
1274    bug_58574
1275    Memcheck:Unaddressable
1276    ...
1277    fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEE
1278    fun:_ZN3net12CertVerifier7Request8DoVerifyEv
1279 }
1280 {
1281    bug_60556a
1282    Memcheck:Unaddressable
1283    ...
1284    fun:sqlite3_exec
1285    fun:_ZN3sql10Connection7ExecuteEPKc
1286    fun:_ZN11WebDatabase*
1287 }
1288 {
1289    bug_60556b
1290    Memcheck:Unaddressable
1291    ...
1292    fun:sqlite3_exec
1293    fun:_ZN3sql10Connection7ExecuteEPKc
1294    fun:_ZN11WebDatabase*
1295 }
1296 {
1297    bug_60556c
1298    Memcheck:Unaddressable
1299    ...
1300    fun:sqlite3_step
1301    fun:_ZN3sql9Statement3RunEv
1302    fun:_ZN3sql10Connection17CommitTransactionEv
1303    fun:_ZN3sql11Transaction6CommitEv
1304    fun:_ZN11WebDatabase*
1305 }
1306 {
1307    bug_60556d
1308    Memcheck:Unaddressable
1309    ...
1310    fun:sqlite3_step
1311    fun:_ZN3sql9Statement3RunEv
1312    fun:_ZN3sql10Connection17CommitTransactionEv
1313    fun:_ZN3sql11Transaction6CommitEv
1314    fun:_ZN11WebDatabase*
1315 }
1316 {
1317    bug_60556e
1318    Memcheck:Param
1319    read(buf)
1320    ...
1321    fun:sqlite3_exec
1322    fun:_ZN3sql10Connection7ExecuteEPKc
1323    fun:_ZN11WebDatabase*
1324 }
1325 {
1326    bug_60556f
1327    Memcheck:Unaddressable
1328    ...
1329    fun:sqlite3_close
1330    fun:_ZN3sql10Connection5CloseEv
1331    fun:_ZN3sql10ConnectionD2Ev
1332    fun:_ZN3sql10ConnectionD1Ev
1333    fun:_ZN11WebDatabase*
1334 }
1335 {
1336    bug_60556g
1337    Memcheck:Unaddressable
1338    ...
1339    fun:sqlite3_step
1340    fun:_ZN3sql9Statement4StepEv
1341    fun:_ZN7history11URLDatabase12GetRowForURLERK4GURLPNS_6URLRowE
1342    fun:_ZN7history14HistoryBackend12AddPageVisitERK4GURLN4base4TimeExjNS_11VisitSourceE
1343 }
1344 {
1345    bug_60654
1346    Memcheck:Uninitialized
1347    fun:_ZN7WebCore25GraphicsContext3DInternal7reshapeEii
1348    fun:_ZN7WebCore17GraphicsContext3D7reshapeEii
1349    fun:_ZN7WebCore21WebGLRenderingContextC1EPNS_17HTMLCanvasElementEN3WTF10PassRefPtrINS_17GraphicsContext3DEEE
1350    fun:_ZN7WebCore21WebGLRenderingContext6createEPNS_17HTMLCanvasElementEPNS_22WebGLContextAttributesE
1351    fun:_ZN7WebCore17HTMLCanvasElement10getContextERKN3WTF6StringEPNS_23CanvasContextAttributesE
1352    ...
1353    fun:_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
1354 }
1355 {
1356    bug_60667c
1357    Memcheck:Leak
1358    ...
1359    obj:*
1360    fun:_ZN3gpu5gles216GLES2DecoderImpl15DoCompileShaderEj
1361    fun:_ZN3gpu5gles216GLES2DecoderImpl19HandleCompileShaderEjRKNS0_13CompileShaderE
1362    fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
1363 }
1364 {
1365    bug_64887_a
1366    Memcheck:Uninitialized
1367    ...
1368    fun:*vfprintf
1369    ...
1370    fun:_ZN7testing*PrintByteSegmentInObjectTo*
1371    ...
1372    fun:_ZN7testing*PrintBytesInObjectTo*
1373    fun:_ZN7testing9internal220PrintBytesInObjectToEPKh*
1374    fun:_ZN7testing9internal220TypeWithoutFormatter*
1375    fun:_ZN7testing9internal2lsIcSt11char_traitsIcE*
1376    fun:_ZN16testing_internal26DefaultPrintNonContainerTo*
1377    fun:_ZN7testing8internal14DefaultPrintToI*
1378    fun:_ZN7testing8internal7PrintToI*
1379    fun:_ZN7testing8internal16UniversalPrinterI*
1380    fun:_ZN7testing8internal14UniversalPrintI*
1381 }
1382 {
1383    bug_64887_b
1384    Memcheck:Uninitialized
1385    ...
1386    fun:_ZNSolsEx
1387    fun:_ZN7testing9internal220TypeWithoutFormatterIN5media7PreloadELNS0_8TypeKindE1EE10PrintValueERKS3_PSo
1388    fun:_ZN7testing9internal2lsIcSt11char_traitsIcEN5media7PreloadEEERSt13basic_ostreamIT_T0_ESA_RKT1_
1389    fun:_ZN16testing_internal26DefaultPrintNonContainerToIN5media7PreloadEEEvRKT_PSo
1390    fun:_ZN7testing8internal14DefaultPrintToIN5media7PreloadEEEvcNS0_13bool_constantILb0EEERKT_PSo
1391    fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKT_PSo
1392    fun:_ZN7testing8internal16UniversalPrinterIN5media7PreloadEE5PrintERKS3_PSo
1393    fun:_ZN7testing8internal18TuplePrefixPrinter*
1394    fun:_ZN7testing8internal12PrintTupleToINSt3tr15tupleIN5media7PreloadENS2*
1395    fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKNSt3tr15tupleIT*
1396    fun:_ZN7testing8internal16UniversalPrinterINSt3tr15tupleIN5media7PreloadENS2*
1397    fun:_ZN7testing8internal14UniversalPrintINSt3tr15tupleIN5media7PreloadENS2*
1398    fun:_ZNK7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE32UntypedDescribeUninterestingCallEPKvPSo
1399    fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
1400    fun:_ZN7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE10InvokeWithERKNSt3tr15tupleIS3*
1401    fun:_ZN7testing8internal14FunctionMockerIFvN5media7PreloadEEE6InvokeES3_
1402    fun:_ZN5media11MockDemuxer10SetPreloadENS_7PreloadE
1403 }
1404 {
1405    bug_64887_c
1406    Memcheck:Uninitialized
1407    ...
1408    fun:_ZNSolsEx
1409    fun:_ZN7testing9internal220TypeWithoutFormatterIN5media7PreloadELNS0_8TypeKindE1EE10PrintValueERKS3_PSo
1410    fun:_ZN7testing9internal2lsIcSt11char_traitsIcEN5media7PreloadEEERSt13basic_ostreamIT_T0_ESA_RKT1_
1411    fun:_ZN16testing_internal26DefaultPrintNonContainerToIN5media7PreloadEEEvRKT_PSo
1412    fun:_ZN7testing8internal14DefaultPrintToIN5media7PreloadEEEvcNS0_13bool_constantILb0EEERKT_PSo
1413    fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKT_PSo
1414    fun:_ZN7testing8internal16UniversalPrinterIN5media7PreloadEE5PrintERKS3_PSo
1415    fun:_ZN7testing8internal18TuplePrefixPrinter*
1416    fun:_ZN7testing8internal12PrintTupleToINSt3tr15tupleIN5media7PreloadENS2*
1417    fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKNSt3tr15tupleIT*
1418    fun:_ZN7testing8internal16UniversalPrinterINSt3tr15tupleIN5media7PreloadENS2*
1419    fun:_ZN7testing8internal14UniversalPrintINSt3tr15tupleIN5media7PreloadENS2*
1420    fun:_ZNK7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE32UntypedDescribeUninterestingCallEPKvPSo
1421    fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
1422    fun:_ZN7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE10InvokeWithERKNSt3tr15tupleIS3*
1423    fun:_ZN7testing8internal14FunctionMockerIFvN5media7PreloadEEE6InvokeES3_
1424    fun:_ZN5media11MockDemuxer10SetPreloadENS_7PreloadE
1425 }
1426 {
1427    bug_65940_a
1428    Memcheck:Leak
1429    fun:_Znw*
1430    ...
1431    fun:_ZN3IPC12ChannelProxy7Context13CreateChannelERKNS_13ChannelHandleERKNS_7Channel4ModeE
1432    fun:_ZN3IPC12ChannelProxy4InitERKNS_13ChannelHandleENS_7Channel4ModeEP11MessageLoopb
1433    fun:_ZN3IPC12ChannelProxyC2ERKNS_13ChannelHandleENS_7Channel4ModeEP11MessageLoopPNS0_7ContextEb
1434    fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEP11MessageLoopbPN4base13WaitableEventE
1435 }
1436 {
1437    bug_65940_b
1438    Memcheck:Leak
1439    fun:_Znw*
1440    ...
1441    fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS_8ListenerEPN4base22SingleThreadTaskRunnerEbPNS8_13WaitableEventE
1442    fun:_ZN7content11ChildThread4InitEv
1443    fun:_ZN7content11ChildThreadC2ERKSs
1444 }
1445 {
1446    bug_65940_c
1447    Memcheck:Leak
1448    fun:_Znw*
1449    fun:_ZN9__gnu_cxx13new_allocatorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEEE8allocateEmPKv
1450    fun:_ZNSt12_Vector_baseI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE11_M_allocateEm
1451    fun:_ZNSt6vectorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS4_S6_EERKS4_
1452    fun:_ZNSt6vectorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE9push_backERKS4_
1453    fun:_ZN3IPC12ChannelProxy7Context11OnAddFilterEv
1454 }
1455 {
1456    bug_65940_d
1457    Memcheck:Leak
1458    fun:_Znw*
1459    fun:_ZN7content11ChildThread4InitEv
1460    fun:_ZN7content11ChildThreadC*
1461    ...
1462    fun:_ZN7content21WebRTCAudioDeviceTest5SetUpEv
1463 }
1464 {
1465    bug_65940_e
1466    Memcheck:Leak
1467    fun:_Znw*
1468    fun:_ZN7content16RenderThreadImpl4InitEv
1469    fun:_ZN7content16RenderThreadImplC*
1470    ...
1471    fun:_ZN7content21WebRTCAudioDeviceTest5SetUpEv
1472 }
1473 {
1474    bug_66853_a
1475    Memcheck:Leak
1476    fun:_Znw*
1477    fun:_ZN11ProfileImpl14GetHostZoomMapEv
1478    ...
1479    fun:_ZNK17ProfileImplIOData6Handle27GetMainRequestContextGetterEv
1480    fun:_ZN11ProfileImpl17GetRequestContextEv
1481    fun:_ZN19SafeBrowsingService5StartEv
1482    fun:_ZN19SafeBrowsingService10InitializeEv
1483    fun:_ZN22ResourceDispatcherHost10InitializeEv
1484    fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
1485    fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
1486    fun:_ZN16ExtensionService4InitEv
1487    fun:_ZN11ProfileImpl14InitExtensionsE*
1488    fun:_ZN14ProfileManager10AddProfileEP7Profileb
1489 }
1490 {
1491    bug_67142
1492    Memcheck:Leak
1493    fun:_Znw*
1494    fun:_ZN16ChildProcessHost13CreateChannelEv
1495    fun:_ZN14GpuProcessHost4InitEv
1496 }
1497 {
1498    bug_67261
1499    Memcheck:Leak
1500    fun:_Znw*
1501    ...
1502    fun:_ZN3sql10Connection18GetUniqueStatementEPKc
1503    fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
1504    fun:_ZN8appcache16AppCacheDatabase22PrepareCachedStatementERKN3sql11StatementIDEPKcPNS1_9StatementE
1505 }
1506 {
1507    bug_67553
1508    Memcheck:Leak
1509    fun:_Znw*
1510    ...
1511    fun:_ZNSt3mapISs13scoped_refptrIK9ExtensionESt4lessISsESaISt4pairIKSsS3_EEEixERS7_
1512    fun:_ZN16ExtensionInfoMap12AddExtensionEPK9Extension
1513 }
1514 {
1515    bug_68069_a
1516    Memcheck:Leak
1517    fun:malloc
1518    obj:*
1519    obj:*
1520    obj:*
1521    obj:*
1522    fun:_ZN3gfx20GetGLCoreProcAddressEPKc
1523    fun:_ZN3gfx22InitializeGLBindingsGLEv
1524    fun:_ZN3gfx20InitializeGLBindingsENS_16GLImplementationE
1525    fun:_ZN3gfx9GLSurface16InitializeOneOffEv
1526 }
1527 {
1528    bug_68069_b
1529    Memcheck:Leak
1530    fun:malloc
1531    fun:XextCreateExtension
1532    ...
1533    fun:_ZN3gfx12GLSurfaceGLX16InitializeOneOffEv
1534    fun:_ZN3gfx9GLSurface24InitializeOneOffInternalEv
1535    fun:_ZN3gfx9GLSurface16InitializeOneOffEv
1536 }
1537 {
1538    bug_68553
1539    Memcheck:Leak
1540    fun:_Znw*
1541    fun:_ZN3net25DiskCacheBasedSSLHostInfoC1ERKSsRKNS_9SSLConfigEPNS_12CertVerifierEPNS_9HttpCacheE
1542    fun:_ZN3net9HttpCache25SSLHostInfoFactoryAdaptor10GetForHostERKSsRKNS_9SSLConfigE
1543    fun:_ZN3net13SSLConnectJob12DoTCPConnectEv
1544    fun:_ZN3net13SSLConnectJob6DoLoopEi
1545    fun:_ZN3net13SSLConnectJob15ConnectInternalEv
1546    fun:_ZN3net10ConnectJob7ConnectEv
1547    fun:_ZN3net8internal26ClientSocketPoolBaseHelper21RequestSocketInternalERKSsPKNS1_7RequestE
1548    fun:_ZN3net8internal26ClientSocketPoolBaseHelper13RequestSocketERKSsPKNS1_7RequestE
1549    fun:_ZN3net20ClientSocketPoolBaseINS_15SSLSocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
1550    fun:_ZN3net19SSLClientSocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
1551    fun:_ZN3net18ClientSocketHandle4InitINS_15SSLSocketParamsENS_19SSLClientSocketPoolEEEiRKSsRK13scoped_refptrIT_ENS_15RequestPriorityEP14CallbackRunnerI6Tuple1IiEEPT0_RKNS_11BoundNetLogE
1552 }
1553 {
1554    Bug_69934_a
1555    Memcheck:Leak
1556    fun:_Znw*
1557    fun:_ZN*NPObjectProxy10NPAllocateEP4_NPPP7NPClass
1558    fun:_NPN_CreateObject
1559    fun:_ZN5blink11WebBindings12createObjectEP4_NPPP7NPClass
1560 }
1561 {
1562    Bug_69934_b
1563    Memcheck:Leak
1564    fun:_Znw*
1565    fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE
1566    fun:_ZN3IPC17SyncMessageSchema*
1567 }
1568 {
1569    bug_70327
1570    Memcheck:Leak
1571    ...
1572    fun:shaper_font_cache_insert
1573    fun:get_shaper_and_font
1574    fun:itemize_state_process_run
1575    fun:pango_itemize_with_base_dir
1576    fun:pango_layout_check_lines
1577    fun:pango_layout_get_extents_internal
1578    fun:pango_layout_get_pixel_extents
1579    fun:pango_layout_get_pixel_size
1580    fun:_ZN3gfx6Canvas13SizeStringIntERKSbItN4base20string16_char_traitsESaItEERKNS_4FontEPiSA_i
1581 }
1582 {
1583    bug_71152
1584    Memcheck:Leak
1585    fun:_Znw*
1586    ...
1587    fun:_ZN14SessionService20OnGotSessionCommandsEi13scoped_refptrIN18BaseSessionService26InternalGetCommandsRequestEE
1588 }
1589 {
1590    bug_71728
1591    Memcheck:Leak
1592    fun:_Znw*
1593    fun:*DownloadFileTest5SetUpEv
1594 }
1595 {
1596    bug_72544
1597    Memcheck:Leak
1598    fun:malloc
1599    fun:_ZN3WTF10fastMallocEj
1600    fun:_ZN3WTF10RefCountedIN7WebCore14StyleSheetListEEnwEj
1601    fun:_ZN7WebCore14StyleSheetList6createEPNS_8DocumentE
1602    fun:_ZN7WebCore8DocumentC2EPNS_5FrameERKNS_4KURLEbbS5_
1603    fun:_ZN7WebCore12HTMLDocumentC1EPNS_5FrameERKNS_4KURLES5_
1604    fun:_ZN7WebCore12HTMLDocument6createEPNS_5FrameERKNS_4KURLES5_
1605    fun:_ZN7WebCore17DOMImplementation14createDocumentERKN3WTF6StringEPNS_5FrameERKNS_4KURLEb
1606    fun:_ZN7WebCore14DocumentWriter14createDocumentERKNS_4KURLE
1607    fun:_ZN7WebCore14DocumentWriter5beginERKNS_4KURLEbPNS_14SecurityOriginE
1608    fun:_ZN7WebCore11FrameLoader4initEv
1609    fun:_ZN7WebCore5Frame4initEv
1610    fun:_ZN5blink12WebFrameImpl21initializeAsMainFrameEPNS_11WebViewImplE
1611    fun:_ZN5blink11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
1612    fun:_ZN10RenderViewC1EP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEixRKSbItNS8_20string16_char_traitsESaItEE
1613    fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEixRKSbItNS8_20string16_char_traitsESaItEE
1614    fun:_ZN12RenderThread15OnCreateNewViewERK18ViewMsg_New_Params
1615 }
1616 {
1617    bug_72698_a
1618    Memcheck:Leak
1619    fun:_Znw*
1620    ...
1621    fun:_ZN13ProfileIOData20InitializeOnUIThreadEP7Profile
1622 }
1623 {
1624    bug_73415
1625    Memcheck:Unaddressable
1626    fun:_ZN23AccessibilityController36shouldDumpAccessibilityNotificationsEv
1627    fun:_ZN11WebViewHost29postAccessibilityNotificationERKN5blink22WebAccessibilityObjectENS0_28WebAccessibilityNotificationE
1628    fun:_ZN5blink16ChromeClientImpl29postAccessibilityNotificationEPN7WebCore19AccessibilityObjectENS1_13AXObjectCache14AXNotificationE
1629    fun:_ZN7WebCore13AXObjectCache24postPlatformNotificationEPNS_19AccessibilityObjectENS0_14AXNotificationE
1630 }
1631 {
1632    bug_73675
1633    Memcheck:Leak
1634    fun:_Znw*
1635    fun:_ZN20LayoutTestController13waitUntilDoneERKN3WTF6VectorI10CppVariantLj0EEEPS2_
1636    fun:_ZN13CppBoundClass14MemberCallbackI20LayoutTestControllerE3runERKN3WTF6VectorI10CppVariantLj0EEEPS5_
1637    fun:_ZN13CppBoundClass6invokeEPvPK10_NPVariantjPS1_
1638    fun:_ZN11CppNPObject6invokeEP8NPObjectPvPK10_NPVariantjPS3_
1639    fun:_ZN7WebCore18npObjectInvokeImplERKN2v89ArgumentsENS_18InvokeFunctionTypeE
1640    fun:_ZN7WebCore21npObjectMethodHandlerERKN2v89ArgumentsE
1641    fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_*BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
1642    obj:*
1643 }
1644 {
1645    bug_75019
1646    Memcheck:Leak
1647    fun:_Znw*
1648    ...
1649    fun:_ZN14GpuDataManagerC1Ev
1650    fun:_ZN22DefaultSingletonTraitsI14GpuDataManagerE3NewEv
1651    fun:_ZN9SingletonI14GpuDataManager22DefaultSingletonTraitsIS0_ES0_E3getEv
1652    fun:_ZN14GpuDataManager11GetInstanceEv
1653    fun:_Z11BrowserMainRK18MainFunctionParams
1654    fun:_ZN20InProcessBrowserTest5SetUpEv
1655 }
1656 {
1657    bug_75051
1658    Memcheck:Leak
1659    fun:_Znw*
1660    ...
1661    fun:_ZN3net12CertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_16CertVerifyResultEP14CallbackRunnerI6Tuple1IiEEPPv
1662    fun:_ZN3net25SingleRequestCertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_16CertVerifyResultEP14CallbackRunnerI6Tuple1IiEE
1663    fun:_ZN3net18SSLClientSocketNSS12DoVerifyCertEi
1664    fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
1665 }
1666 {
1667    bug_75127a
1668    Memcheck:Uninitialized
1669    ...
1670    fun:png_process_data
1671    fun:_ZN3gfx8PNGCodec6Decode*
1672 }
1673 {
1674    bug_75127b
1675    Memcheck:Uninitialized
1676    ...
1677    fun:png_process_data
1678    fun:_ZN3gfx8PNGCodec6Decode*
1679 }
1680 {
1681    bug_75127c
1682    Memcheck:Uninitialized
1683    ...
1684    fun:png_process_data
1685    fun:_ZN3gfx8PNGCodec6Decode*
1686 }
1687 {
1688    bug_76197a
1689    Memcheck:Unaddressable
1690    fun:sqlite3DbFree
1691    fun:releaseMemArray
1692    fun:sqlite3VdbeDelete
1693    fun:sqlite3VdbeFinalize
1694    fun:sqlite3_finalize
1695    fun:_ZN3sql10Connection12StatementRef5CloseEv
1696    fun:_ZN3sql10Connection12StatementRefD2Ev
1697    fun:_ZN3sql10Connection12StatementRefD1Ev
1698    fun:_ZNK4base10RefCountedIN3sql10Connection12StatementRefEE7ReleaseEv
1699    fun:_ZN13scoped_refptrIN3sql10Connection12StatementRefEED2Ev
1700    fun:_ZN13scoped_refptrIN3sql10Connection12StatementRefEED1Ev
1701    fun:_ZNSt4pairIKN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEEED2Ev
1702    fun:_ZNSt4pairIKN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEEED1Ev
1703    fun:_ZN9__gnu_cxx13new_allocatorISt4pairIKN3sql11StatementIDE13scoped_refptrINS2_10Connection12StatementRefEEEE7destroyEPS9_
1704    fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE12destroy_nodeEPSt13_Rb_tree_nodeIS8_E
1705    fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E
1706    fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE5clearEv
1707    fun:_ZNSt3mapIN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEESt4lessIS1_ESaISt4pairIKS1_S5_EEE5clearEv
1708    fun:_ZN3sql10Connection5CloseEv
1709    fun:_ZN3sql10ConnectionD2Ev
1710    fun:_ZN3sql10ConnectionD1Ev
1711    fun:_ZN7history16InMemoryDatabaseD0Ev
1712 }
1713 {
1714    bug_76197b
1715    Memcheck:Unaddressable
1716    ...
1717    fun:sqlite3_step
1718    fun:sqlite3_exec
1719    fun:_ZN3sql10Connection7ExecuteEPKc
1720    fun:_ZN7history11URLDatabase31CreateKeywordSearchTermsIndicesEv
1721    fun:_ZN7history16InMemoryDatabase12InitFromDiskE*
1722    fun:_ZN7history22InMemoryHistoryBackend4InitE*
1723 }
1724 {
1725    bug_77766
1726    Memcheck:Leak
1727    fun:malloc
1728    fun:_ZN3WTF10fastMallocEm
1729    fun:_ZN7WebCore18PerformTaskContextnwEm
1730    fun:_ZN7WebCore8Document8postTaskEN3WTF10PassOwnPtrINS_22ScriptExecutionContext4TaskEEE
1731    fun:_ZN7WebCore20WorkerMessagingProxy22workerContextDestroyedEv
1732    fun:_ZN5blink19WebWorkerClientImpl22workerContextDestroyedEv
1733    fun:_ZN7WebCore13WorkerContextD2Ev
1734    fun:_ZN7WebCore22DedicatedWorkerContextD0Ev
1735    fun:_ZN3WTF10RefCountedIN7WebCore13WorkerContextEE5derefEv
1736    fun:_ZN3WTF6RefPtrIN7WebCore13WorkerContextEEaSEPS2_
1737    fun:_ZN7WebCore12WorkerThread12workerThreadEv
1738    fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
1739    fun:_ZN3WTFL16threadEntryPointEPv
1740    fun:_ZN3WTFL19wtfThreadEntryPointEPv
1741 }
1742 {
1743    bug_78201
1744    Memcheck:Leak
1745    fun:_Znw*
1746    fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
1747    fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
1748    fun:_ZN16ExtensionService4InitEv
1749    fun:_ZN11ProfileImpl14InitExtensionsE*
1750 }
1751 {
1752    bug_78786
1753    Memcheck:Leak
1754    fun:_Znw*
1755    fun:*35NonBlockingInvalidationNotifierTest5SetUpEv
1756 }
1757 {
1758    bug_79357a
1759    Memcheck:Unaddressable
1760    ...
1761    fun:*FilePathWatcherImpl*Watch*Delegate*
1762    fun:*FilePathWatcher*Watch*
1763    fun:_ZN21UserStyleSheetWatcher4InitEv
1764 }
1765 {
1766    bug_79357b
1767    Memcheck:Leak
1768    ...
1769    fun:*FilePathWatcherImpl*Watch*Delegate*
1770    fun:*FilePathWatcher*Watch*
1771    fun:_ZN21UserStyleSheetWatcher4InitEv
1772 }
1773 {
1774    bug_79651
1775    Memcheck:Leak
1776    ...
1777    fun:_ZN8notifier14XmppConnectionC1ERKN4buzz18XmppClientSettingsERK13scoped_refptrIN3net23URLRequestContextGetterEEPNS0_8DelegateEPNS1_11PreXmppAuthE
1778    fun:_ZN8notifier18SingleLoginAttempt13OnNewSettingsERKNS_18ConnectionSettingsE
1779    fun:_ZN8notifier23XmppConnectionGenerator17UseNextConnectionEv
1780    fun:_ZN8notifier23XmppConnectionGenerator15StartGeneratingEv
1781    fun:_ZN8notifier18SingleLoginAttemptC1EPNS_13LoginSettingsEPNS0_8DelegateE
1782    fun:_ZN8notifier5Login15StartConnectionEv
1783    fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
1784    fun:*35InvalidationNotifierTest_Basic_Test8TestBodyEv
1785 }
1786 {
1787    bug_79652
1788    Memcheck:Leak
1789    ...
1790    fun:_ZN8chromeos14AudioMixerAlsa15ConnectInternalEv
1791    fun:_ZN8chromeos14AudioMixerAlsa7ConnectEv
1792 }
1793 {
1794    bug_79654_a
1795    Memcheck:Leak
1796    fun:_Znw*
1797    ...
1798    fun:_ZNSt3setIP16RenderWidgetHostSt4lessIS1_ESaIS1_EE6insertERKS1_
1799    fun:_ZN*9TabLoader12TabIsLoadingEP24NavigationControllerImpl
1800    fun:_ZN*18SessionRestoreImpl21ProcessSessionWindowsEPSt6vectorIP13SessionWindowSaIS3_EE
1801    fun:_ZN*18SessionRestoreImpl12OnGotSessionEiPSt6vectorIP13SessionWindowSaIS3_EE
1802 }
1803 {
1804    bug_79654_b
1805    Memcheck:Leak
1806    fun:_Znw*
1807    ...
1808    fun:*RenderWidgetHost*
1809    ...
1810    fun:_ZNSt3setIP16RenderWidgetHostSt4lessIS1_ESaIS1_EE6insertERKS1_
1811    fun:*TabLoader7ObserveEiRKN7content18NotificationSourceERKNS1_19NotificationDetailsE
1812    fun:_ZN23NotificationServiceImpl*
1813    fun:_ZN15WebContentsImpl12SetIsLoading*
1814    fun:_ZN15WebContentsImpl14RenderViewGone*
1815 }
1816 {
1817    bug_79865a
1818    Memcheck:Leak
1819    fun:_Znw*
1820    ...
1821    fun:_ZN33MalwareDetailsTest_HTTPCache_Test8TestBodyEv
1822 }
1823 {
1824    bug_79865b
1825    Memcheck:Leak
1826    ...
1827    fun:_Znw*
1828    fun:_ZN14TestingProfile20CreateRequestContextEv
1829    fun:_ZN42MalwareDetailsTest_HTTPCacheNoEntries_Test8TestBodyEv
1830 }
1831 {
1832    bug_79933a
1833    Memcheck:Leak
1834    fun:_Znw*
1835    ...
1836    fun:_ZN21TestURLRequestContext4InitEv
1837    ...
1838    fun:_ZN21TestURLRequestContextC1Ev
1839    fun:_ZN27TestURLRequestContextGetter20GetURLRequestContextEv
1840 }
1841 {
1842    bug_80462_a
1843    Memcheck:Leak
1844    fun:malloc
1845    fun:_ZN7WebCoreL15allocV8NPObjectEP4_NPPP7NPClass
1846    fun:_NPN_CreateObject
1847    fun:_ZN7WebCore22npCreateV8ScriptObjectEP4_NPPN2v86HandleINS2_6ObjectEEEPNS_9DOMWindowE
1848    fun:_ZN5blinkL16makeIntArrayImplERKNS_9WebVectorIiEE
1849    fun:_ZN5blink11WebBindings12makeIntArrayERKNS_9WebVectorIiEE
1850 }
1851 {
1852    bug_80462_b
1853    Memcheck:Leak
1854    fun:malloc
1855    fun:_ZN7WebCoreL15allocV8NPObjectEP4_NPPP7NPClass
1856    fun:_NPN_CreateObject
1857    fun:_ZN7WebCore22npCreateV8ScriptObjectEP4_NPPN2v86HandleINS2_6ObjectEEEPNS_9DOMWindowE
1858    fun:_ZN5blinkL19makeStringArrayImplERKNS_9WebVectorINS_9WebStringEEE
1859    fun:_ZN5blink11WebBindings15makeStringArrayERKNS_9WebVectorINS_9WebStringEEE
1860 }
1861 {
1862    bug_80551
1863    Memcheck:Leak
1864    fun:_Znw*
1865    fun:_Z11BrowserMainRK18MainFunctionParams
1866    fun:_ZN20InProcessBrowserTest5SetUpEv
1867 }
1868 {
1869    bug_80550_a
1870    Memcheck:Leak
1871    fun:_Znw*
1872    fun:_ZN16RenderWidgetHost11WasRestoredEv
1873 }
1874 {
1875    bug_80550_b
1876    Memcheck:Leak
1877    fun:_Znw*
1878    fun:_ZN16RenderWidgetHost9WasHiddenEv
1879 }
1880 {
1881    bug_82717
1882    Memcheck:Leak
1883    fun:_Znw*
1884    ...
1885    fun:_ZN6chrome26ChromeContentBrowserClient24RenderProcessHostCreatedEPN7content17RenderProcessHostE
1886    fun:_ZN21RenderProcessHostImpl4Init*
1887    ...
1888    fun:_ZN15WebContentsImpl32CreateRenderViewForRenderManagerEP*
1889    fun:_ZN22RenderFrameHostManager14InitRenderViewEP*
1890    ...
1891    fun:_ZN22RenderFrameHostManager8NavigateERKN7content19NavigationEntryImplE
1892    fun:_ZN15WebContentsImpl15NavigateToEntryERKN7content19NavigationEntryImplENS0_20NavigationController10ReloadTypeE
1893 }
1894 {
1895    bug_83609
1896    Memcheck:Leak
1897    fun:_Znw*
1898    fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
1899    fun:_ZN4base11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx
1900    fun:_ZN13BrowserThread14PostTaskHelperENS_2IDERKN15tracked_objects8LocationEP4Taskxb
1901    fun:_ZN13BrowserThread8PostTaskENS_2IDERKN15tracked_objects8LocationEP4Task
1902 }
1903 {
1904    bug_83609b
1905    Memcheck:Leak
1906    fun:_Znw*
1907    fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
1908    fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationEP4Task
1909 }
1910 {
1911    bug_84224_a
1912    Memcheck:Leak
1913    fun:_Znw*
1914    fun:_ZN9__gnu_cxx13new_allocator*PendingTaskEE8allocate*
1915    fun:_ZN*_Deque_baseIN*PendingTaskESaIS1_*_M_allocate_*
1916    ...
1917    fun:_ZNSt5dequeIN*PendingTaskESaIS1_EE*push_back*
1918    fun:_ZNSt5queueIN4*PendingTask*deque*push*
1919    fun:_ZN4base11MessageLoop18AddToIncomingQueueEPN*PendingTaskE*
1920 }
1921 {
1922    bug_84224_b
1923    Memcheck:Unaddressable
1924    fun:_ZN13scoped_refptrIN4base8internal18InvokerStorageBaseEEC2ERKS3_
1925    fun:_ZN13scoped_refptrIN4base8internal18InvokerStorageBaseEEC1ERKS3_
1926    fun:_ZN4base8internal12CallbackBaseC2ERKS1_
1927    fun:_ZN4base8CallbackIFvvEEC2ERKS2_
1928    fun:_ZN4base8CallbackIFvvEEC1ERKS2_
1929    fun:_ZN4base11MessageLoop11PendingTaskC2ERKS0_
1930    fun:_ZN4base11MessageLoop11PendingTaskC1ERKS0_
1931    fun:_ZN9__gnu_cxx13new_allocatorIN11MessageLoop11PendingTaskEE9constructEPS2_RKS2_
1932    fun:_ZNSt5dequeIN11MessageLoop11PendingTaskESaIS1_EE9push_backERKS1_
1933    fun:_ZNSt5queueIN11MessageLoop11PendingTaskESt5dequeIS1_SaIS1_EEE4pushERKS1_
1934    fun:_ZN4base11MessageLoop18AddToIncomingQueueEPNS_11PendingTaskE
1935 }
1936 {
1937    bug_84265
1938    Memcheck:Leak
1939    fun:_Znw*
1940    fun:_ZN12LoginHandler6CreateEPN3net17AuthChallengeInfoEPNS0_10URLRequestE
1941    fun:_Z17CreateLoginPromptPN3net17AuthChallengeInfoEPNS_10URLRequestE
1942    fun:_ZN22ResourceDispatcherHost14OnAuthRequiredEPN3net10URLRequestEPNS0_17AuthChallengeInfoE
1943    fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
1944 }
1945 {
1946    bug_84770_a
1947    Memcheck:Unaddressable
1948    fun:_ZN5blink21FrameLoaderClientImpl12allowPluginsEb
1949    fun:_ZN7WebCore14SubframeLoader12allowPluginsENS_28ReasonForCallingAllowPluginsE
1950 }
1951 {
1952    bug_84770_b
1953    Memcheck:Unaddressable
1954    fun:_ZN5blink21FrameLoaderClientImpl15allowJavaScriptEb
1955    fun:_ZN7WebCore16ScriptController17canExecuteScriptsENS_33ReasonForCallingCanExecuteScriptsE
1956 }
1957 {
1958    bug_84770_c
1959    Memcheck:Unaddressable
1960    fun:_ZN5blink21FrameLoaderClientImpl20allowScriptExtensionERKN3WTF6StringEi
1961    fun:_ZN7WebCore16V8DOMWindowShell16createNewContextEN2v86HandleINS1_6ObjectEEEi
1962 }
1963 {
1964    bug_86481
1965    Memcheck:Leak
1966    fun:_Znw*
1967    fun:_ZN9__gnu_cxx13new_allocator*FilePath*allocate*
1968    fun:_ZNSt11_Deque_base*FilePath*_M_allocate_map*
1969    fun:_ZNSt11_Deque_base*FilePath*_M_initialize_map*
1970    fun:_ZNSt11_Deque_baseI*FilePath*
1971    fun:_ZNSt5dequeI*FilePath*
1972    fun:_ZNSt5stackI*FilePath*deque*
1973    fun:_ZN9file_util14FileEnumeratorC1E*
1974    fun:_ZN7history20ExpireHistoryBackend25DoExpireHistoryIndexFilesEv
1975 }
1976 {
1977    bug_87423
1978    Memcheck:Uninitialized
1979    fun:_ZNK3net15HttpBasicStream23LogNumRttVsBytesMetricsEv
1980    fun:_ZN3net22HttpNetworkTransaction18DoReadBodyCompleteEi
1981    fun:_ZN3net22HttpNetworkTransaction6DoLoopEi
1982    fun:_ZN3net22HttpNetworkTransaction4ReadEPNS_8IOBufferEiP14CallbackRunnerI6Tuple1IiEE
1983    fun:_Z15ReadTransactionPN3net15HttpTransactionEPSs
1984    fun:_ZN3net73HttpNetworkTransactionTest_ErrorResponseTofHttpsConnectViaHttpsProxy_Test8TestBodyEv
1985 }
1986 {
1987    bug_88640_a
1988    Memcheck:Leak
1989    fun:_Znw*
1990    fun:_ZN11ProfileImpl30InitRegisteredProtocolHandlersEv
1991    fun:_ZN11ProfileImpl11DoFinalInitEv
1992    fun:_ZN11ProfileImpl13OnPrefsLoadedEb
1993 }
1994 {
1995    bug_88640_b
1996    Memcheck:Leak
1997    ...
1998    fun:_ZN11ProfileImpl13OnPrefsLoadedEb
1999    ...
2000    fun:_ZN11ProfileImplC*E*
2001 }
2002 {
2003    bug_88640_c
2004    Memcheck:Leak
2005    fun:_Znw*
2006    fun:_ZN29ChromeURLRequestContextGetter14CreateOriginalEP7ProfilePK13ProfileIOData
2007    fun:_ZN17ProfileImplIOData6Handle4InitE*
2008    fun:_ZN11ProfileImpl11DoFinalInitEv
2009    fun:_ZN11ProfileImpl13OnPrefsLoadedEb
2010 }
2011 {
2012    bug_81796
2013    Memcheck:Leak
2014    fun:_Znw*
2015    fun:_ZN4base16MessageLoopProxy22currentEv
2016    fun:_ZN3IPC12ChannelProxy7ContextC1EPNS_7Channel8ListenerEPN4base16MessageLoopProxyE
2017    fun:_ZN3IPC12ChannelProxyC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEPN4base16MessageLoopProxyE
2018 }
2019 {
2020    bug_89304
2021    Memcheck:Leak
2022    fun:_Znw*
2023    ...
2024    fun:_ZN3net20ClientSocketPoolBaseINS_*SocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
2025    fun:_ZN3net*SocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
2026    fun:_ZN3net18ClientSocketHandle4Init*
2027    ...
2028    fun:_ZN3net23ClientSocketPoolManager30InitSocketHandleForHttpRequestERK4GURLRKNS_18HttpRequestHeadersEiNS_15RequestPriorityEPNS_18HttpNetworkSessionERKNS_9ProxyInfoEbbRKNS_9SSLConfigESF_RKNS_11BoundNetLogEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEE
2029    fun:_ZN3net21HttpStreamFactoryImpl3Job16DoInitConnectionEv
2030 }
2031 {
2032    bug_89311
2033    Memcheck:Leak
2034    fun:_Znw*
2035    ...
2036    fun:_ZN3net16HttpStreamParser22DoParseResponseHeadersEi
2037    fun:_ZN3net16HttpStreamParser20ParseResponseHeadersEv
2038    fun:_ZN3net16HttpStreamParser21DoReadHeadersCompleteEi
2039 }
2040 {
2041    bug_89942_a
2042    Memcheck:Leak
2043    ...
2044    fun:_ZN10ZygoteHost11ForkRequestERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6_EERKSs
2045    fun:_ZN20ChildProcessLauncher7Context14LaunchInternalE13scoped_refptrIS0_EN13BrowserThread2IDEbRKSt6vectorISt4pairISsSsESaIS7_EEiP11CommandLine
2046 }
2047 {
2048    bug_89942_b
2049    Memcheck:Leak
2050    ...
2051    fun:_ZNSt6vectorISt4pairIjiESaIS1_EE9push_backERKS1_
2052    fun:_ZN20ChildProcessLauncher7Context14LaunchInternalE13scoped_refptrIS0_EN13BrowserThread2IDEbRKSt6vectorISt4pairISsSsESaIS7_EEiP11CommandLine
2053 }
2054 {
2055    bug_90057a
2056    Memcheck:Leak
2057    ...
2058    fun:_ZN3net13CookieMonster9InitStoreEv
2059    fun:_ZN3net13CookieMonster15InitIfNecessaryEv
2060    fun:_ZN3net13CookieMonster30GetAllCookiesForURLWithOptionsERK4GURLRKNS_13CookieOptionsE
2061    fun:_ZN3net13CookieMonster19GetAllCookiesForURLERK4GURL
2062    fun:_ZN22ResourceDispatcherHost13CanGetCookiesEPN3net10URLRequestE
2063    fun:_ZN3net10URLRequest13CanGetCookiesEv
2064    fun:_ZN3net13URLRequestJob13CanGetCookiesEv
2065    fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
2066 }
2067 {
2068    bug_90057b
2069    Memcheck:Leak
2070    ...
2071    fun:_ZN3net13CookieMonster9InitStoreEv
2072    fun:_ZN3net13CookieMonster15InitIfNecessaryEv
2073    fun:_ZN3net13CookieMonster21GetCookiesWithOptionsERK4GURLRKNS_13CookieOptionsE
2074    fun:_ZN3net13CookieMonster26GetCookiesWithOptionsAsyncERK4GURLRKNS_13CookieOptionsERKN4base8CallbackIFvRKSsEEE
2075    fun:_ZN3net11CookieStore15GetCookiesAsyncERK4GURLRKN4base8CallbackIFvRKSsEEE
2076    fun:_ZN12_GLOBAL__N_120GetCookiesOnIOThreadERK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSs
2077 }
2078 {
2079    bug_90057c
2080    Memcheck:Leak
2081    fun:_Znw*
2082    ...
2083    fun:_ZN3net17URLRequestHttpJob14SaveNextCookieEv
2084    fun:_ZN3net17URLRequestHttpJob35SaveCookiesAndNotifyHeadersCompleteEv
2085    fun:_ZN3net17URLRequestHttpJob16OnStartCompletedEi
2086 }
2087 {
2088    bug_90215_c
2089    Memcheck:Leak
2090    ...
2091    fun:_ZN3net13URLRequestJob21NotifyRestartRequiredEv
2092    fun:_ZN8appcache21AppCacheURLRequestJob13BeginDeliveryEv
2093 }
2094 {
2095    bug_90215_d
2096    Memcheck:Leak
2097    ...
2098    fun:_ZN8appcache19AppCacheStorageImpl23RunOnePendingSimpleTaskEv
2099 }
2100 {
2101    bug_90215_e
2102    Memcheck:Leak
2103    fun:_Znw*
2104    fun:_ZN8appcache15AppCacheService10InitializeE*
2105    fun:_ZN21ChromeAppCacheService20InitializeOnIOThreadE*
2106 }
2107 {
2108    bug_90215_f
2109    Memcheck:Leak
2110    fun:_Znw*
2111    ...
2112    fun:_ZN26TransportSecurityPersisterC1EPN3net22TransportSecurityStateERKN4base8FilePathEb
2113    fun:_ZNK13ProfileIOData4InitEPSt3mapISs10linked_ptrIN3net20URLRequestJobFactory15ProtocolHandlerEESt4lessISsESaISt4pairIKSsS5_EEE
2114    fun:_ZN12_GLOBAL__N_114FactoryForMain6CreateEv
2115    fun:_ZN29ChromeURLRequestContextGetter20GetURLRequestContextEv
2116    fun:_ZN7content21ChromeAppCacheService20InitializeOnIOThreadERKN4base8FilePathEPNS_15ResourceContextEPN3net23URLRequestContextGetterE13scoped_refptrIN5quota20SpecialStoragePolicyEE
2117 }
2118 {
2119    bug_90240
2120    Memcheck:Leak
2121    fun:_Znw*
2122    ...
2123    fun:_ZN2pp5proxy26PPP_Instance_Private_Proxy22OnMsgGetInstanceObjectEiNS0_24SerializedVarReturnValueE
2124 }
2125 {
2126    bug_90400
2127    Memcheck:Leak
2128    fun:_Znw*
2129    fun:_ZN11ProfileImpl24GetUserStyleSheetWatcherEv
2130    fun:_ZN6chrome26ChromeContentBrowserClient14GetWebkitPrefs*
2131    fun:_ZN15WebContentsImpl14GetWebkitPrefsEv
2132 }
2133 {
2134    bug_90487a
2135    Memcheck:Leak
2136    fun:_Znw*
2137    fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN5quota11QuotaClientEEE8allocateEjPKv
2138    fun:_ZNSt10_List_baseIPN5quota11QuotaClientESaIS2_EE11_M_get_nodeEv
2139    fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE14_M_create_nodeERKS2_
2140    fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE9_M_insertESt14_List_iteratorIS2_ERKS2_
2141    fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE9push_backERKS2_
2142    fun:_ZN5quota12QuotaManager14RegisterClientEPNS_11QuotaClientE
2143    fun:_ZN5quota17QuotaManagerProxy14RegisterClientEPNS_11QuotaClientE
2144 }
2145 {
2146    bug_90487b
2147    Memcheck:Leak
2148    fun:_Znw*
2149    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
2150    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
2151    ...
2152    fun:_ZN5quota12QuotaManager*
2153 }
2154 {
2155    bug_90496a
2156    Memcheck:Leak
2157    ...
2158    fun:_ZN3IPC16MessageWithTupleI6Tuple2Ii23ResourceHostMsg_RequestEE8DispatchI22ResourceDispatcherHostS6_iRKS2_EEbPKNS_7MessageEPT_PT0_MSC_FvRSA_T1_T2_E
2159    fun:_ZN22ResourceDispatcherHost17OnMessageReceivedERKN3IPC7MessageEP21ResourceMessageFilterPb
2160    fun:_ZN21ResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageEPb
2161    fun:_ZN20BrowserMessageFilter15DispatchMessageERKN3IPC7MessageE
2162    fun:_ZN20BrowserMessageFilter17OnMessageReceivedERKN3IPC7MessageE
2163    fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE
2164    fun:_ZN3IPC12ChannelProxy7Context17OnMessageReceivedERKNS_7MessageE
2165    fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
2166    fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
2167 }
2168 {
2169    bug_90496b
2170    Memcheck:Leak
2171    fun:_Znw*
2172    fun:_ZN22ResourceDispatcherHost23CompleteResponseStartedEPN3net10URLRequestE
2173    fun:_ZN22ResourceDispatcherHost17OnResponseStartedEPN3net10URLRequestE
2174    fun:_ZN3net10URLRequest21NotifyResponseStartedEv
2175    fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
2176 }
2177 {
2178    bug_90496c
2179    Memcheck:Leak
2180    fun:_Znw*
2181    fun:_ZN20AsyncResourceHandler15OnReadCompletedEiPi
2182    fun:_ZN23BufferedResourceHandler15OnReadCompletedEiPi
2183    fun:_ZN27SafeBrowsingResourceHandler15OnReadCompletedEiPi
2184    fun:_ZN22OfflineResourceHandler15OnReadCompletedEiPi
2185    fun:_ZN22ResourceDispatcherHost12CompleteReadEPN3net10URLRequestEPi
2186    fun:_ZN22ResourceDispatcherHost15OnReadCompletedEPN3net10URLRequestEi
2187    fun:_ZN3net10URLRequest19NotifyReadCompletedEi
2188    fun:_ZN3net13URLRequestJob18NotifyReadCompleteEi
2189    fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory
2190    fun:_ZN27ChromeURLDataManagerBackend13DataAvailableEiP16RefCountedMemory
2191    fun:_ZN20ChromeURLDataManager10DataSource22SendResponseOnIOThreadEi13scoped_refptrI16RefCountedMemoryE
2192 }
2193 {
2194    bug_90496d
2195    Memcheck:Leak
2196    ...
2197    fun:_ZN24CrossSiteResourceHandler14ResumeResponseEv
2198    fun:_ZN22ResourceDispatcherHost12OnSwapOutACKERK22ViewMsg_SwapOut_Params
2199    fun:_ZN18RenderWidgetHelper21OnCrossSiteSwapOutACKERK22ViewMsg_SwapOut_Params
2200 }
2201 {
2202    bug_90496e
2203    Memcheck:Leak
2204    ...
2205    fun:_ZN14SharedIOBuffer4InitEv
2206    fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
2207    fun:_ZN24CrossSiteResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
2208    fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
2209    fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
2210    fun:_ZN22OfflineResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
2211    fun:_ZN22ResourceDispatcherHost4ReadEPN3net10URLRequestEPi
2212    fun:_ZN22ResourceDispatcherHost12StartReadingEPN3net10URLRequestE
2213 }
2214 {
2215    bug_90671
2216    Memcheck:Leak
2217    fun:_Znw*
2218    ...
2219    fun:_ZNK3sql9Statement*ColumnString*
2220    fun:_ZN7history11URLDatabase10FillURLRowERN3sql9StatementEPNS_6URLRowE
2221    fun:_ZN7history11URLDatabase13URLEnumerator10GetNextURLEPNS_6URLRowE
2222    fun:_ZN7history14HistoryBackend11IterateURLsEPN14HistoryService13URLEnumeratorE
2223 }
2224 {
2225    bug_91199
2226    Memcheck:Leak
2227    fun:_Znw*
2228    fun:_ZN19URLRequestChromeJob15GetResponseInfoEPN3net16HttpResponseInfoE
2229    fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
2230    fun:_ZN19URLRequestChromeJob10StartAsyncEv
2231 }
2232 {
2233    bug_92571
2234    Memcheck:Leak
2235    fun:_Znw*
2236    fun:_ZN7history16TopSitesDatabase8CreateDBE*
2237    fun:_ZN7history16TopSitesDatabase4InitE*
2238    fun:_ZN7history15TopSitesBackend16InitDBOnDBThreadE*
2239 }
2240 {
2241    bug_92741a
2242    Memcheck:Leak
2243    fun:_Znw*
2244    fun:_ZN4base4BindIPFvPNS_13WaitableEventEPSsRKSsES2_S3_EENS_8internal20InvokerStorageHolderINS8_15InvokerStorage2IT_T0_T1_EEEESB_RKSC_RKSD_
2245    fun:_ZN12_GLOBAL__N_120GetCookiesOnIOThreadERK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSs
2246    fun:_Z18DispatchToFunctionIPFvRK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSsES0_S6_SB_SC_EvT_RK6Tuple4IT0_T1_T2_T3_E
2247 }
2248 {
2249    bug_92741b
2250    Memcheck:Leak
2251    fun:_Znw*
2252    fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvPSsPSt6vectorINS1_11CookieStore10CookieInfoESaIS6_EEENS_7WeakPtrIS2_EEEENS_8internal20InvokerStorageHolderINSE_15InvokerStorage1IT_T0_EEEESH_RKSI_
2253    fun:_ZN3net17URLRequestHttpJob24CheckCookiePolicyAndLoadERKNS_10CookieListE
2254 }
2255 {
2256    bug_92741c
2257    Memcheck:Leak
2258    fun:_Znw*
2259    fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvRKNS1_10CookieListEENS_7WeakPtrIS2_EEEENS_8internal20InvokerStorageHolderINSA_15InvokerStorage1IT_T0_EEEESD_RKSE_
2260    fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
2261    fun:_ZN3net17URLRequestHttpJob5StartEv
2262    fun:_ZN3net10URLRequest8StartJobEPNS_13URLRequestJobE
2263    fun:_ZN3net10URLRequest5StartEv
2264 }
2265 {
2266    bug_93250a
2267    Memcheck:Leak
2268    fun:_Znw*
2269    ...
2270    fun:*SHA1Fingerprint*
2271    fun:_ZN3net16CertVerifyResultaSERKS0_
2272    fun:_ZN3net12CertVerifier12HandleResultEPNS_15X509CertificateERKSsiiRKNS_16CertVerifyResultE
2273    fun:_ZN3net18CertVerifierWorker7DoReplyEv
2274 }
2275 {
2276    bug_93250b
2277    Memcheck:Leak
2278    fun:_Znw*
2279    fun:_ZN4base4BindIMNS_6subtle18TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
2280    fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationEP4Task
2281    fun:_ZN3net18CertVerifierWorker6FinishEv
2282    fun:_ZN3net18CertVerifierWorker3RunEv
2283 }
2284 {
2285    bug_93730_a
2286    Memcheck:Leak
2287    fun:_Znw*
2288    fun:_ZN14ServiceProcess10InitializeEP16MessageLoopForUIRK11CommandLineP19ServiceProcessState
2289    fun:_Z18ServiceProcessMainRK18MainFunctionParams
2290    ...
2291    fun:ChromeMain
2292    fun:main
2293 }
2294 {
2295    bug_93730_b
2296    Memcheck:Leak
2297    fun:_Zna*
2298    fun:_ZN4base13LaunchProcessERKSt6vectorISsSaISsEERKNS_13LaunchOptionsEPi
2299    fun:_ZN4base13LaunchProcessERK11CommandLineRKNS_13LaunchOptionsEPi
2300    fun:_ZN21ServiceProcessControl8Launcher5DoRunEv
2301 }
2302 {
2303    bug_93730_c
2304    Memcheck:Leak
2305    fun:_Znw*
2306    fun:_Z17NewRunnableMethodIN21ServiceProcessControl8LauncherEMS1_FvvEEP14CancelableTaskPT_T0_
2307    fun:_ZN21ServiceProcessControl8Launcher5DoRunEv
2308 }
2309 {
2310    bug_93730_d
2311    Memcheck:Leak
2312    fun:_Znw*
2313    fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEPN4base16MessageLoopProxyEbPNS8_13WaitableEventE
2314    fun:_ZN16ServiceIPCServer13CreateChannelEv
2315    fun:_ZN16ServiceIPCServer4InitEv
2316    fun:_ZN14ServiceProcess10InitializeEP16MessageLoopForUIRK11CommandLineP19ServiceProcessState
2317    fun:_Z18ServiceProcessMainRK18MainFunctionParams
2318    ...
2319    fun:ChromeMain
2320    fun:main
2321 }
2322 {
2323    bug_94195
2324    Memcheck:Leak
2325    ...
2326    fun:_ZN12GpuBlacklist16LoadGpuBlacklistERKSsNS_8OsFilterE
2327 }
2328 {
2329    bug_94345
2330    Memcheck:Leak
2331    fun:_Znw*
2332    fun:_ZNK4base8internal18WeakReferenceOwner6GetRefEv
2333    fun:_ZN4base15SupportsWeakPtrI16ObserverListBaseIN11MessageLoop12TaskObserverEEE9AsWeakPtrEv
2334    fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE8IteratorC1ERS2_
2335 }
2336 {
2337    bug_94764
2338    Memcheck:Leak
2339    fun:_Znw*
2340    fun:_ZN8remoting13ClientSession11UnpressKeysEv
2341    fun:_ZN8remoting34ClientSessionTest_UnpressKeys_Test8TestBodyEv
2342 }
2343 {
2344    bug_95448
2345    Memcheck:Leak
2346    fun:_Znw*
2347    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPN4base5ValueEEEE8allocateEjPKv
2348    fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE11_M_get_nodeEv
2349    fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE14_M_create_nodeERKS5_
2350    fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE10_M_insert_EPKSt18_Rb_tree_node_baseSE_RKS5_
2351    fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS5_ERKS5_
2352    fun:_ZNSt3mapISsPN4base5ValueESt4lessISsESaISt4pairIKSsS2_EEE6insertESt17_Rb_tree_iteratorIS7_ERKS7_
2353    fun:_ZNSt3mapISsPN4base5ValueESt4lessISsESaISt4pairIKSsS2_EEEixERS6_
2354    fun:_ZN4base15DictionaryValue23SetWithoutPathExpansionERKSsPNS_5ValueE
2355    fun:_ZN4base15DictionaryValue3SetERKSsPNS_5ValueE
2356    fun:_ZN4base15DictionaryValue9SetStringERKSsRKSbItNS_20string16_char_traitsESaItEE
2357    fun:_ZN11PluginPrefs23CreatePluginFileSummaryERKN6webkit13WebPluginInfoE
2358    fun:_ZN11PluginPrefs19OnUpdatePreferencesESt6vectorIN6webkit13WebPluginInfoESaIS2_EES0_INS1_5npapi11PluginGroupESaIS6_EE
2359 }
2360 {
2361    bug_95902
2362    Memcheck:Leak
2363    ...
2364    fun:xdg_mime_init
2365    fun:xdg_mime_get_mime_type_from_file_name
2366    fun:*GetFileMimeTypeE*
2367    fun:_ZNK3net16PlatformMimeUtil32GetPlatformMimeTypeFromExtensionERKSsPSs
2368    fun:_ZNK3net8MimeUtil30GetMimeTypeFromExtensionHelperERKSsbPSs
2369    fun:_ZNK3net8MimeUtil24GetMimeTypeFromExtensionERKSsPSs
2370    fun:_ZNK3net8MimeUtil19GetMimeTypeFromFileE*
2371    fun:_ZN3net19GetMimeTypeFromFileE*
2372 }
2373 {
2374    bug_96069
2375    Memcheck:Leak
2376    fun:_Znw*
2377    fun:_ZN3net9HttpCache13CreateBackendEPPN10disk_cache7BackendEP14CallbackRunnerI6Tuple1IiEE
2378    fun:_ZN3net9HttpCache17CreateTransactionEP10scoped_ptrINS_15HttpTransactionEE
2379    ...
2380    fun:_ZN3net13CookieMonster17CookieMonsterTask14InvokeCallbackEN4base8CallbackIFvvEEE
2381 }
2382 {
2383    bug_96369
2384    Memcheck:Leak
2385    fun:malloc
2386    fun:g_malloc
2387    fun:g_slice_alloc
2388    fun:g_slice_alloc0
2389    fun:g_type_create_instance
2390    fun:g_object_constructor
2391    fun:g_object_newv
2392    fun:g_object_new
2393    fun:_gdk_window_impl_new
2394    fun:gdk_window_ensure_native
2395    fun:gdk_x11_drawable_get_xid
2396    fun:_ZN20GtkNativeViewManager14GetIdForWidgetEP10_GtkWidget
2397    fun:_ZNK7content23RenderWidgetHostViewGtk15GetNativeViewIdEv
2398 }
2399 {
2400    bug_96402
2401    Memcheck:Leak
2402    fun:malloc
2403    fun:g_malloc
2404    fun:g_slice_alloc
2405    fun:g_slice_alloc0
2406    fun:g_type_create_instance
2407    fun:g_object_constructor
2408    fun:g_object_newv
2409    fun:g_object_new
2410    fun:_gdk_window_impl_new
2411    fun:gdk_window_ensure_native
2412    fun:gdk_x11_drawable_get_xid
2413    ...
2414    fun:g_closure_invoke
2415    fun:signal_emit_unlocked_R
2416    fun:g_signal_emit_valist
2417    fun:g_signal_emit
2418    fun:gtk_widget_realize
2419    fun:gtk_widget_set_parent
2420 }
2421 {
2422    bug_96407
2423    Memcheck:Leak
2424    fun:malloc
2425    fun:g_malloc
2426    fun:g_slice_alloc
2427    fun:g_slice_alloc0
2428    fun:g_type_create_instance
2429    fun:g_object_constructor
2430    fun:g_object_newv
2431    fun:g_object_new
2432    fun:_gdk_window_impl_new
2433    fun:gdk_window_ensure_native
2434    fun:gdk_x11_drawable_get_xid
2435    fun:_ZN19TestWebViewDelegate20CreatePluginDelegateE*
2436 }
2437 {
2438    bug_96568a
2439    Memcheck:Leak
2440    fun:*alloc
2441    ...
2442    fun:HB_OpenType*
2443    ...
2444    fun:HB_ShapeItem
2445    fun:_ZN7WebCore21ComplexTextController11shapeGlyphsEv
2446    fun:_ZN7WebCore21ComplexTextController13nextScriptRunEv
2447 }
2448 {
2449    bug_96568b
2450    Memcheck:Leak
2451    ...
2452    fun:HB_NewFace
2453    fun:_ZN7WebCoreL21getCachedHarfbuzzFaceEPNS_16FontPlatformDataE
2454    fun:_ZN7WebCore12HarfbuzzFaceC1EPNS_16FontPlatformDataE
2455    fun:_ZN7WebCore12HarfbuzzFace6createEPNS_16FontPlatformDataE
2456    fun:_ZNK7WebCore16FontPlatformData12harfbuzzFaceEv
2457    fun:_ZN7WebCore21ComplexTextController21setupFontForScriptRunEv
2458 }
2459 {
2460    bug_98568
2461    Memcheck:Leak
2462    ...
2463    fun:_ZN44WebDragDestGtkTest_NoTabContentsWrapper_Test8TestBodyEv
2464 }
2465 {
2466    bug_98867
2467    Memcheck:Jump
2468    obj:*
2469    obj:*
2470    obj:*
2471 }
2472 {
2473    bug_99304
2474    Memcheck:Leak
2475    fun:_Znw*
2476    ...
2477    fun:_ZN2v88internal10PagedSpace11AllocateRawEi
2478    fun:_ZN2v88internal12Deserializer8AllocateEiPNS0_5SpaceEi
2479    fun:_ZN2v88internal12Deserializer10ReadObjectEiPNS0_5SpaceEPPNS0_6ObjectE
2480    fun:_ZN2v88internal12Deserializer9ReadChunkEPPNS0_6ObjectES4_iPh
2481    fun:_ZN2v88internal12Deserializer10ReadObjectEiPNS0_5SpaceEPPNS0_6ObjectE
2482    fun:_ZN2v88internal12Deserializer9ReadChunkEPPNS0_6ObjectES4_iPh
2483    fun:_ZN2v88internal12Deserializer13VisitPointersEPPNS0_6ObjectES4_
2484 }
2485 {
2486    bug_99307
2487    Memcheck:Uninitialized
2488    fun:modp_b64_encode
2489    fun:_ZN4base12Base64Encode*
2490    fun:_ZN11web_ui_util15GetImageDataUrlERK8SkBitmap
2491    fun:_ZN12_GLOBAL__N_121NetworkInfoDictionary8set_iconERK8SkBitmap
2492 }
2493 {
2494    bug_99308
2495    Memcheck:Leak
2496    fun:malloc
2497    fun:_ZL9toCStringRK9_NPString
2498    fun:_ZL15testPostURLFileP12PluginObjectPK10_NPVariantjPS1_
2499    fun:_ZL12pluginInvokeP8NPObjectPvPK10_NPVariantjPS2_
2500    fun:_ZN7WebCoreL18npObjectInvokeImplERKN2v89ArgumentsENS_18InvokeFunctionTypeE
2501 }
2502 {
2503    bug_99321
2504    Memcheck:Leak
2505    fun:_Znw*
2506    fun:_ZN5blink12CCThreadImpl6createEPNS_9WebThreadE
2507    fun:_ZN5blink13WebCompositor9setThreadEPNS_9WebThreadE
2508    fun:_ZN11WebViewHostC1EP9TestShell
2509    fun:_ZN9TestShell15createNewWindowERKN5blink6WebURLEP16DRTDevToolsAgent
2510 }
2511 {
2512    bug_99435
2513    Memcheck:Leak
2514    fun:_Znw*
2515    fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
2516    fun:_ZN4base11MessageLoop11RunInternalEv
2517    fun:_ZN4base11MessageLoop10RunHandlerEv
2518 }
2519 {
2520    bug_100043
2521    Memcheck:Leak
2522    fun:_Znw*
2523    fun:_ZN9__gnu_cxx13new_allocatorIN6webkit13WebPluginInfoEE8allocateEjPKv
2524    ...
2525    fun:_ZNSt6vectorIN6webkit13WebPluginInfoESaIS1*
2526 }
2527 {
2528    bug_101125a
2529    Memcheck:Uninitialized
2530    ...
2531    fun:_ZN6SkScan12AntiFillPathERK6SkPathRK8SkRegionP9SkBlitterb
2532    fun:_ZN6SkScan12AntiFillPathERK6SkPathRK12SkRasterClipP9SkBlitter
2533    fun:_ZNK6SkDraw8drawPathERK6SkPathRK7SkPaintPK8SkMatrixb
2534    fun:_ZN8SkDevice8drawPathERK6SkDrawRK6SkPathRK7SkPaintPK8SkMatrixb
2535    fun:_ZNK6SkDraw14drawTextOnPathEPKcmRK6SkPathPK8SkMatrixRK7SkPaint
2536    fun:_ZN8SkDevice14drawTextOnPathERK6SkDrawPKvmRK6SkPathPK8SkMatrixRK7SkPaint
2537    fun:_ZN8SkCanvas14drawTextOnPathEPKvmRK6SkPathPK8SkMatrixRK7SkPaint
2538    fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
2539    fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
2540 }
2541 {
2542    bug_101125b
2543    Memcheck:Uninitialized
2544    ...
2545    fun:_ZN6SkScan12AntiFillRectERK6SkRectPK8SkRegionP9SkBlitter
2546    fun:_ZN6SkScan12AntiFillRectERK6SkRectRK12SkRasterClipP9SkBlitter
2547    fun:_ZNK6SkDraw8drawRectERK6SkRectRK7SkPaint
2548    fun:_ZN8SkDevice8drawRectERK6SkDrawRK6SkRectRK7SkPaint
2549    fun:_ZN8SkCanvas8drawRectERK6SkRectRK7SkPaint
2550    fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceE
2551    fun:_ZN7WebCore15GraphicsContext20drawHighlightForTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEiRKNS_5ColorENS_10ColorSpaceEii
2552 }
2553 {
2554    bug_101125c
2555    Memcheck:Uninitialized
2556    ...
2557    fun:_ZL11morphpointsP7SkPointPKS_iR13SkPathMeasureRK8SkMatrix
2558    fun:_ZL9morphpathP6SkPathRKS_R13SkPathMeasureRK8SkMatrix
2559    fun:_ZNK6SkDraw14drawTextOnPathEPKcmRK6SkPathPK8SkMatrixRK7SkPaint
2560    fun:_ZN8SkDevice14drawTextOnPathERK6SkDrawPKvmRK6SkPathPK8SkMatrixRK7SkPaint
2561    fun:_ZN8SkCanvas14drawTextOnPathEPKvmRK6SkPathPK8SkMatrixRK7SkPaint
2562    fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
2563    fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
2564    fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
2565    fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
2566    fun:_ZN7WebCore15GraphicsContext8drawTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEii
2567 }
2568 {
2569    bug_100133
2570    Memcheck:Leak
2571    fun:_Znw*
2572    fun:_Z22RecoveryRegisterHelperP22ComponentUpdateServiceP11PrefService
2573 }
2574 {
2575    bug_100330
2576    Memcheck:Leak
2577    fun:_Znw*
2578    fun:_ZN25TestingAutomationProvider42NavigateToURLBlockUntilNavigationsCompleteEiRK4GURLiPN3IPC7MessageE
2579 }
2580 {
2581    bug_100647
2582    Memcheck:Leak
2583    fun:_Znw*
2584    fun:_ZN18WebResourceService19UpdateResourceCacheERKSs
2585    fun:_ZN18WebResourceService18WebResourceFetcher18OnURLFetchCompleteEPK10URLFetcherRK4GURLRKN3net16URLRequestStatusEiRKSt6vectorISsSaISsEERKSs
2586    fun:_ZN10URLFetcher8Delegate18OnURLFetchCompleteEPKS_
2587    fun:_ZN10URLFetcher4Core29InformDelegateFetchIsCompleteEv
2588    fun:_ZN10URLFetcher4Core21OnCompletedURLRequestEN4base9TimeDeltaE
2589 }
2590 {
2591    bug_100777
2592    Memcheck:Leak
2593    fun:_Znw*
2594    fun:_ZN12_GLOBAL__N_119MakeContextDelegateI16CrxUpdateServiceNS1_13UpdateContextEEEPN7content18URLFetcherDelegateEPT_PT0_
2595    fun:_ZN16CrxUpdateService19ProcessPendingItemsEv
2596 }
2597 {
2598    bug_100916
2599    Memcheck:Leak
2600    fun:_Znw*
2601    fun:_ZN5blink19WebWorkerClientImpl24createWorkerContextProxyEPN7WebCore6WorkerE
2602    ...
2603    fun:_ZN7WebCore6WorkerC1EPNS_22ScriptExecutionContextE
2604    fun:_ZN7WebCore6Worker6createEPNS_22ScriptExecutionContextERKN3WTF6StringERi
2605    fun:_ZN7WebCore8V8Worker19constructorCallbackERKN2v89ArgumentsE
2606    fun:_ZN2v88internalL19HandleApiCallHelperILb1EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
2607 }
2608 {
2609    bug_100982
2610    Memcheck:Leak
2611    fun:_Znw*
2612    fun:_ZN7WebCore12RenderRegion22setRenderBoxRegionInfoEPKNS_9RenderBoxEiib
2613    fun:_ZNK7WebCore9RenderBox19renderBoxRegionInfoEPNS_12RenderRegionEiNS0_24RenderBoxRegionInfoFlagsE
2614    ...
2615    fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
2616 }
2617 {
2618    bug_101145b
2619    Memcheck:Leak
2620    fun:_Znw*
2621    fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
2622    fun:_ZN*WebCore16V8StringResourceILNS_20V8StringResourceMode*
2623 }
2624 {
2625    bug_101145c
2626    Memcheck:Leak
2627    fun:_Znw*
2628    fun:_ZN7WebCore*makeExternalString*
2629    ...
2630    fun:_ZN7WebCore11StringCache20v8ExternalStringSlow*
2631    fun:_ZN7WebCore11StringCache16v8ExternalStringEPN*
2632 }
2633 {
2634    bug_101145d
2635    Memcheck:Leak
2636    fun:_Znw*
2637    fun:_ZN7WebCore*makeExternalString*
2638    ...
2639    fun:_ZN7WebCore11StringCache28setReturnValueFromStringSlow*
2640    fun:_ZN7WebCore11StringCache24setReturnValueFromString*
2641 }
2642 {
2643    bug_101146d
2644    Memcheck:Leak
2645    fun:_Znw*
2646    fun:_ZN11webkit_glue16WebURLLoaderImplC1EPNS_25WebKitPlatformSupportImplE
2647    fun:_ZN11webkit_glue25WebKitPlatformSupportImpl15createURLLoaderEv
2648 }
2649 {
2650    bug_101151
2651    Memcheck:Leak
2652    fun:_Znw*
2653    fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF*StringEEET_*
2654    fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF*StringEEET_*
2655    fun:_ZN7WebCore15V8ParameterBasecvN3WTF*StringEEv
2656    ...
2657    fun:_ZN2v88internalL*HandleApiCall*
2658    obj:*
2659 }
2660 {
2661    bug_101159
2662    Memcheck:Leak
2663    fun:_Znw*
2664    fun:_ZN7WebCore15NPObjectWrapper10NPAllocateEP4_NPPP7NPClass
2665    fun:_NPN_CreateObject
2666    fun:_ZN7WebCore15NPObjectWrapper6createEP8NPObject
2667    fun:_ZN7WebCore16ScriptController20windowScriptNPObjectEv
2668    fun:_ZNK6WebKit12WebFrameImpl12windowObjectEv
2669    fun:_ZN6webkit5npapi13WebPluginImpl23GetWindowScriptNPObjectEv
2670    fun:NPN_GetValue
2671 }
2672 {
2673    bug_101345
2674    Memcheck:Leak
2675    fun:_Znw*
2676    fun:_ZN22WebPluginDelegateProxy20CreateResourceClientEmRK4GURLi
2677    fun:_ZN6webkit5npapi13WebPluginImpl24HandleURLRequestInternalEPKcS3_S3_S3_jibNS1_8ReferrerEbb
2678 }
2679 {
2680    bug_101347
2681    Memcheck:Leak
2682    fun:_Znw*
2683    fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE17NewCallbackHelperINS5_11Dispatcher1IMS3_FviRKNS1_12HostResourceEES8_EEEENS_18CompletionCallbackERKT_
2684    fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE11NewCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
2685    fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE19NewOptionalCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
2686    fun:_ZN5ppapi5proxy38EnterHostFromHostResourceForceCallbackINS_5thunk18PPB_Graphics2D_APIEEC1IN2pp25CompletionCallbackFactoryINS0_20PPB_Graphics2D_ProxyENS0_26ProxyNonThreadSafeRefCountEEEMS8_FviRKNS_12HostResourceEESB_EESD_RT_T0_RKT1_
2687    fun:_ZN5ppapi5proxy20PPB_Graphics2D_Proxy10OnMsgFlushERKNS_12HostResourceE
2688 }
2689 {
2690    bug_101750
2691    Memcheck:Leak
2692    fun:malloc
2693    fun:_ZN3WTF10fastMallocEj
2694    fun:_ZN3WTF7HashSetIPN7WebCore16SVGStyledElementENS_7PtrHashIS3_EENS_10HashTraitsIS3_EEEnwEj
2695    fun:_ZN7WebCore21SVGDocumentExtensions18addPendingResourceERKN3WTF12AtomicStringEPNS_16SVGStyledElementE
2696 }
2697 {
2698    bug_101751
2699    Memcheck:Leak
2700    fun:_Znw*
2701    fun:_ZN7WebCore14SVGFontElement6createERKNS_13QualifiedNameEPNS_8DocumentE
2702    fun:_ZN7WebCoreL15fontConstructorERKNS_13QualifiedNameEPNS_8DocumentEb
2703    fun:_ZN7WebCore17SVGElementFactory16createSVGElementERKNS_13QualifiedNameEPNS_8DocumentEb
2704    fun:_ZN7WebCore8Document13createElementERKNS_13QualifiedNameEb
2705 }
2706 {
2707    bug_101781
2708    Memcheck:Uninitialized
2709    fun:encode_one_block
2710    fun:encode_mcu_huff
2711    fun:compress_data
2712    fun:process_data_simple_main
2713    fun:chromium_jpeg_write_scanlines
2714    fun:_ZN3gfx9JPEGCodec6EncodeEPKhNS0_11ColorFormatEiiiiPSt6vectorIhSaIhEE
2715    fun:_ZN3gfx24JPEGEncodedDataFromImageERKNS_5ImageE?PSt6vectorIhSaIhEE
2716    fun:_ZN7history8TopSites12EncodeBitmapE*N3gfx5ImageEP13scoped_refptrIN4base15RefCountedBytesEE
2717    fun:_ZN7history8TopSites16SetPageThumbnailERK4GURL*N3gfx5ImageERK14ThumbnailScore
2718    fun:_ZN7history17ExpireHistoryTest14AddExampleDataEP?PN4base4TimeE
2719    fun:_ZN7history*ExpireHistoryTest_*
2720 }
2721 {
2722    bug_101781_d
2723    Memcheck:Uninitialized
2724    fun:_ZN7testing8internal11CmpHelperGEIddEENS_15AssertionResultEPKcS4_RKT_RKT0_
2725    fun:_ZN3gfx31JPEGCodec_EncodeDecodeRGBA_Test8TestBodyEv
2726 }
2727 {
2728    bug_102257
2729    Memcheck:Uninitialized
2730    ...
2731    fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
2732    fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
2733 }
2734 {
2735    bug_102327a
2736    Memcheck:Leak
2737    fun:_Znw*
2738    fun:_ZN15tracked_objects10ThreadData10InitializeEv
2739    fun:_ZN15tracked_objects10ThreadData30InitializeAndSetTrackingStatusEb
2740    fun:_ZN15tracked_objects10ThreadData29ShutdownSingleThreadedCleanupEb
2741 }
2742 {
2743    bug_102327b
2744    Memcheck:Leak
2745    fun:_Znw*
2746    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKN15tracked_objects6BirthsENS3_9DeathDataEEEE8allocateE*
2747    ...
2748    fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEE6insertESt17_Rb_tree_iteratorIS9_ERKS9_
2749    fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEEixERS8_
2750    fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6Births*
2751    fun:_ZN15tracked_objects10ThreadData3?TallyRun*IfTrackingE*
2752 }
2753 {
2754    bug_102327c
2755    Memcheck:Leak
2756    fun:_Znw*
2757    fun:_ZN15tracked_objects10ThreadData11TallyABirthERKNS_8LocationE
2758    fun:_ZN15tracked_objects10ThreadData19TallyABirthIfActiveERKNS_8LocationE
2759 }
2760 {
2761    bug_102327d
2762    Memcheck:Uninitialized
2763    fun:_ZN15tracked_objects9DeathData11RecordDeathEiii
2764    fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6BirthsEii
2765    fun:_ZN15tracked_objects10ThreadData31TallyRunOnNamedThreadIfTrackingERKN4base12TrackingInfoERKNS_11TrackedTimeES7_
2766 }
2767 {
2768    Intentional leak of stl map during thread cleanup in profiler
2769    Memcheck:Leak
2770    fun:_Znw*
2771    fun:_ZNK15tracked_objects10ThreadData26OnThreadTerminationCleanupEv
2772 }
2773 {
2774    bug_102614
2775    Memcheck:Leak
2776    fun:_Znw*
2777    fun:_ZN12*FinishPepperFlashUpdateRegistrationEP22ComponentUpdateServiceRK7Version
2778 }
2779 {
2780    bug_102831_a
2781    Memcheck:Leak
2782    ...
2783    fun:_ZN17PluginLoaderPosix19LoadPluginsInternalEv
2784 }
2785 {
2786    bug_104447
2787    Memcheck:Leak
2788    ...
2789    fun:HB_OpenTypeShape
2790    fun:arabicSyriacOpenTypeShape
2791    fun:HB_ArabicShape
2792    fun:HB_ShapeItem
2793    fun:_ZN7WebCore21ComplexTextController11shapeGlyphsEv
2794    fun:_ZN7WebCore21ComplexTextController13nextScriptRunEv
2795    fun:_ZN7WebCore21ComplexTextController14widthOfFullRunEv
2796    fun:_ZNK7WebCore4Font24floatWidthForComplexTextERKNS_7TextRunEPN3WTF7HashSetIPKNS_14SimpleFontDataENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE
2797    fun:_ZNK7WebCore4Font5widthERKNS_7TextRunERiRN3WTF6StringE
2798    fun:_ZN7WebCore14SVGTextMetricsC1EPNS_19RenderSVGInlineTextERKNS_7TextRunE
2799    fun:_ZN7WebCore14SVGTextMetrics21measureCharacterRangeEPNS_19RenderSVGInlineTextEjj
2800    fun:_ZNK7WebCore30SVGTextLayoutAttributesBuilder25propagateLayoutAttributesEPNS_12RenderObjectERN3WTF6VectorINS_23SVGTextLayoutAttributesELm0EEERjRt
2801 }
2802 {
2803    # ProcessSingleton::LinuxWatcher is marked DeleteOnIOThread.  Sometimes it
2804    # leaks on shutdown instead of getting deleted.  The destructor doesn't do
2805    # anything important, so this shouldn't be a big deal.
2806    bug_104578
2807    Memcheck:Leak
2808    fun:_Znw*
2809    fun:_ZN16ProcessSingletonC1E*
2810    fun:_ZN22ChromeProcessSingletonC1E*
2811 }
2812 {
2813    bug_104806_a
2814    Memcheck:Leak
2815    fun:_Znw*
2816    ...
2817    fun:_ZN15tracked_objects10ThreadData19TallyABirthIfActiveERKNS_8LocationE
2818    fun:_ZN4base12TrackingInfoC?ERKN15tracked_objects8LocationENS_9TimeTicksE
2819 }
2820 {
2821    bug_104806_b
2822    Memcheck:Leak
2823    fun:_Znw*
2824    ...
2825    fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEEixERS8_
2826    fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6BirthsEii
2827    fun:_ZN15tracked_objects10ThreadData32TallyRunOnWorkerThreadIfTrackingEPKNS_6BirthsERKNS_11TrackedTimeES6_S6_
2828 }
2829 {
2830    bug_105715
2831    Memcheck:Uninitialized
2832    ...
2833    fun:vfprintf
2834    fun:__vsnprintf_chk
2835    fun:_ZN4base9vsnprintfEPcjPKcS0_
2836    fun:_ZN4base12_GLOBAL__N_110vsnprintfTEPcjPKcS1_
2837    fun:_ZN4base12_GLOBAL__N_1L14StringAppendVTISsEEvPT_PKNS2_10value_typeEPc
2838    fun:_ZN4base13StringAppendVEPSsPKcPc
2839    fun:_ZN4base13StringAppendFEPSsPKcz
2840    fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
2841    fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
2842    fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
2843    fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
2844    fun:_ZN4base10JSONWriter16WriteWithOptionsEPKNS_5ValueEbiPSs
2845    fun:_ZN25JSONStringValueSerializer17SerializeInternalERKN4base5ValueEb
2846    fun:_ZN25JSONStringValueSerializer9SerializeERKN4base5ValueE
2847    fun:_ZN18jstemplate_builder12AppendJsonJSEPKN4base15DictionaryValueEPSs
2848    fun:_ZN19OptionsUIHTMLSource16StartDataRequestERKSsbi
2849    fun:_ZN4base8internal15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEE3RunEPS3_S5_RKbRKi
2850    fun:_ZN4base8internal12InvokeHelperILb0EvNS0_15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEEEFvRKPS4_S6_RKbRKiEE8MakeItSoES9_SC_S6_SE_SG_
2851    fun:_ZN4base8internal7InvokerILi4ENS0_9BindStateINS0_15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEEEFvPS5_S7_biEFvSB_SsbiEEESC_E3RunEPNS0_13BindStateBaseE
2852    fun:_ZNK4base8CallbackIFvvEE3RunEv
2853 }
2854 {
2855    bug_105744b
2856    Memcheck:Leak
2857    fun:_Znw*
2858    ...
2859    fun:_ZNSt6vector*9push_back*
2860    fun:_ZN4skia19ConvolutionFilter1D9AddFilterEiPKsi
2861    fun:_ZN4skia12_GLOBAL__N_112ResizeFilter14ComputeFiltersEiiiffPNS_19ConvolutionFilter1DE
2862    fun:_ZN4skia12_GLOBAL__N_112ResizeFilterC1ENS_15ImageOperations12ResizeMethodEiiiiRK7SkIRect
2863    fun:_ZN4skia15ImageOperations11ResizeBasicERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
2864    fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
2865    fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEii
2866    fun:_ZN24ChromeRenderViewObserver21CaptureFrameThumbnailEPN5blink7WebViewEiiP8SkBitmapP14ThumbnailScore
2867    fun:_ZN24ChromeRenderViewObserver16CaptureThumbnailEv
2868    fun:_ZN24ChromeRenderViewObserver15CapturePageInfoEib
2869 }
2870 {
2871    bug_105907
2872    Memcheck:Uninitialized
2873    ...
2874    fun:_ZN4skia14BGRAConvolve2DEPKhibRKNS_19ConvolutionFilter1DES4_iPhb
2875    fun:_ZN4skia15ImageOperations11ResizeBasicE*
2876    fun:_ZN4skia15ImageOperations6ResizeE*
2877 }
2878 {
2879    bug_106183a
2880    Memcheck:Uninitialized
2881    fun:_ZN7WebCore13RenderMarquee18updateMarqueeStyleEv
2882    fun:_ZN7WebCore11RenderLayer12styleChangedENS_15StyleDifferenceEPKNS_11RenderStyleE
2883    fun:_ZN7WebCore20RenderBoxModelObject14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
2884    fun:_ZN7WebCore9RenderBox14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
2885    fun:_ZN7WebCore11RenderBlock14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
2886    fun:_ZN7WebCore12RenderObject8setStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
2887 }
2888 {
2889    bug_106183b
2890    Memcheck:Uninitialized
2891    fun:_ZN7WebCore21ComplexTextController*
2892    ...
2893    fun:_ZNK7WebCore4Font27selectionRectForComplexTextERKNS_7TextRunERKNS_10FloatPointEiii
2894    fun:_ZNK7WebCore4Font20selectionRectForTextERKNS_7TextRunERKNS_10FloatPointEiii
2895    fun:_ZNK7WebCore13InlineTextBox17positionForOffsetEi
2896    fun:_ZN7WebCore10RenderText14localCaretRectEPNS_9InlineBoxEiPi
2897    fun:_ZNK7WebCore15VisiblePosition14localCaretRectERPNS_12RenderObjectE
2898    fun:_ZN7WebCore9CaretBase15updateCaretRectEPNS_8DocumentERKNS_15VisiblePositionE
2899    fun:_ZN7WebCore14FrameSelection14localCaretRectEv
2900    fun:_ZN7WebCore14FrameSelection18recomputeCaretRectEv
2901    fun:_ZN7WebCore14FrameSelection16updateAppearanceEv
2902 }
2903 {
2904    bug_106183c
2905    Memcheck:Uninitialized
2906    fun:_ZN7WebCore21ComplexTextController*
2907    ...
2908    fun:_ZNK7WebCore4Font15drawComplexTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
2909    fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
2910    fun:_ZN7WebCore15GraphicsContext8drawTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEii
2911    fun:_ZN7WebCoreL20paintTextWithShadowsEPNS_15GraphicsContextERKNS_4FontERKNS_7TextRunERKN3WTF12AtomicStringEiiiiRKNS_10FloatPointERKNS_9FloatRectEPKNS_10ShadowDataEbb
2912    ...
2913    fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS_8IntPointE
2914    fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_8IntPointE
2915    fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_8IntPointE
2916    fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
2917 }
2918 {
2919    bug_106402
2920    Memcheck:Leak
2921    fun:_Znw*
2922    fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE17NewCallbackHelperINS5_11Dispatcher1IMS3_FviRKNS1_12HostResourceEES8_EEEENS_18CompletionCallbackERKT_
2923    fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE11NewCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
2924    fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE19NewOptionalCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
2925    fun:_ZN5ppapi5proxy38EnterHostFromHostResourceForceCallbackINS_5thunk18PPB_Graphics2D_APIEEC1IN2pp25CompletionCallbackFactoryINS0_20PPB_Graphics2D_ProxyENS0_26ProxyNonThreadSafeRefCountEEEMS8_FviRKNS_12HostResourceEESB_EESD_RT_T0_RKT1_
2926    fun:_ZN5ppapi5proxy20PPB_Graphics2D_Proxy14OnHostMsgFlushERKNS_12HostResourceE
2927 }
2928 {
2929    bug_106552
2930    Memcheck:Uninitialized
2931    ...
2932    fun:_ZN25JSONStringValueSerializer17SerializeInternalERKN4base5ValueEb
2933    fun:_ZN25JSONStringValueSerializer9SerializeERKN4base5ValueE
2934    fun:_ZN13JsonPrefStore13SerializeDataEPSs
2935    fun:_ZN19ImportantFileWriter16DoScheduledWriteEv
2936    fun:_ZN13JsonPrefStore18CommitPendingWriteEv
2937    fun:_ZN13JsonPrefStoreD0Ev
2938    fun:_ZNK4base10RefCountedI9PrefStoreE7ReleaseEv
2939    fun:_ZN13scoped_refptrI19PersistentPrefStoreEaSEPS0_
2940    fun:_ZN11PrefServiceD0Ev
2941    fun:_ZN10scoped_ptrI11PrefServiceED1Ev
2942    fun:_ZN14TestingProfileD2Ev
2943    fun:_ZN23ExtensionTestingProfileD0Ev
2944 }
2945 {
2946    bug_106912
2947    Memcheck:Leak
2948    ...
2949    fun:_ZN15tracked_objects10ThreadData23InitializeThreadContextERKSs
2950    fun:_ZN4base14PlatformThread7SetNameEPKc
2951 }
2952 {
2953    bug_107696
2954    Memcheck:Leak
2955    fun:_Znw*
2956    fun:_ZN7WebCore11iBeamCursorEv
2957    fun:_ZN7WebCore12EventHandler12selectCursorERKNS_28MouseEventWithHitTestResultsEPNS_9ScrollbarE
2958    fun:_ZN7WebCore12EventHandler20handleMouseMoveEventERKNS_18PlatformMouseEventEPNS_13HitTestResultEb
2959    fun:_ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventEb
2960    fun:_ZN5blink11WebViewImpl9mouseMoveERKNS_13WebMouseEventE
2961    fun:_ZN5blink11WebViewImpl16handleInputEventERKNS_13WebInputEventE
2962    fun:_ZN12RenderWidget18OnHandleInputEventERKN3IPC7MessageE
2963 }
2964 {
2965    bug_108146a
2966    Memcheck:Leak
2967    fun:_Znw*
2968    ...
2969    fun:_ZN5ppapi5proxy26PPP_Instance_Private_Proxy22OnMsgGetInstanceObjectEiNS0_24SerializedVarReturnValueE
2970 }
2971 {
2972    bug_108146b
2973    Memcheck:Param
2974    write(buf)
2975    obj:/lib/tls/i686/cmov/libpthread-2.11.1.so
2976    fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
2977    fun:_ZN3IPC7Channel4SendEPNS_7MessageE
2978    fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE
2979    fun:_ZN3IPC18SendCallbackHelper4SendEv
2980 }
2981 {
2982    bug_108147
2983    Memcheck:Uninitialized
2984    ...
2985    fun:_ZNK6SkDraw11drawPosTextEPKcmPKffiRK7SkPaint
2986    fun:_ZN8SkDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
2987    fun:_ZN8SkCanvas11drawPosTextEPKvmPK7SkPointRK7SkPaint
2988    fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
2989    fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
2990    fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
2991    fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
2992 }
2993 {
2994    bug_108620
2995    Memcheck:Uninitialized
2996    fun:_ZN7WebCore13PlatformEventC2ENS0_4TypeEbbbbd
2997    fun:_ZN7WebCore18PlatformMouseEventC1ERKNS_8IntPointES3_NS_11MouseButtonENS_13PlatformEvent4TypeEibbbbd
2998    fun:_ZN7WebCore12EventHandler28fakeMouseMoveEventTimerFiredEPNS_5TimerIS0_EE
2999    fun:_ZN7WebCore5TimerINS_12EventHandlerEE5firedEv
3000    fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
3001    fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
3002    fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
3003    fun:_ZN4base9BaseTimerIN11webkit_glue25WebKitPlatformSupportImplELb0EE9TimerTask3RunEv
3004 }
3005 {
3006    bug_108621
3007    Memcheck:Leak
3008    fun:malloc
3009    fun:_ZN3WTF10fastMallocEm
3010    fun:_ZN3WTF10RefCountedIN7WebCore5EventEEnwEm
3011    fun:_ZN7WebCore12MessageEvent6createEN3WTF10PassOwnPtrINS1_6VectorINS1_6RefPtrINS_11MessagePortEEELm1EEEEENS1_10PassRefPtrINS_21SerializedScriptValueEEERKNS1_6StringESE_NS9_INS_9DOMWindowEEE
3012    fun:_ZN7WebCore16PostMessageTimer5eventEPNS_22ScriptExecutionContextE
3013    fun:_ZN7WebCore9DOMWindow21postMessageTimerFiredEN3WTF10PassOwnPtrINS_16PostMessageTimerEEE
3014    fun:_ZN7WebCore16PostMessageTimer5firedEv
3015    fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
3016    fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
3017    fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
3018    fun:_ZN4base9BaseTimerIN11webkit_glue25WebKitPlatformSupportImplELb0EE9TimerTask3RunEv
3019 }
3020 {
3021    bug_108622
3022    Memcheck:Leak
3023    fun:_Zna*
3024    fun:_ZN2v88internal8NewArrayIhEEPT*
3025    fun:_ZN2v88internal11RegExpStack14EnsureCapacityEm
3026    fun:_ZN2v88internal16RegExpStackScopeC1EPNS0_7IsolateE
3027    fun:_ZN2v88internal26NativeRegExpMacroAssembler7ExecuteEPNS0_4CodeEPNS0_6String*
3028    fun:_ZN2v88internal26NativeRegExpMacroAssembler5MatchENS0_6HandleINS0_4CodeEEENS2_INS0_6StringEEEPiiiPNS0_7IsolateE
3029    fun:_ZN2v88internal10RegExpImpl*IrregexpExec*ENS0_6HandleINS0_8JSRegExpEEENS2_INS0_6StringEEEiPii
3030 }
3031 {
3032    bug_108624
3033    Memcheck:Leak
3034    fun:_Znw*
3035    fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
3036    fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF6StringEEET_v
3037    fun:_ZN7WebCore15V8ParameterBasecvN3WTF6StringEEv
3038    ...
3039    fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
3040    fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
3041    fun:_ZN2v88Function4CallENS_6HandleINS_6ObjectEEEiPNS1_INS_5ValueEEE
3042    fun:_ZN7WebCore28V8WorkerContextEventListener20callListenerFunctionEPNS_22ScriptExecutionContextEN2v86HandleINS3_5ValueEEEPNS_5EventE
3043    fun:_ZN7WebCore23V8AbstractEventListener18invokeEventHandlerEPNS_22ScriptExecutionContextEPNS_5EventEN2v86HandleINS5_5ValueEEE
3044    fun:_ZN7WebCore28V8WorkerContextEventListener11handleEventEPNS_22ScriptExecutionContextEPNS_5EventE
3045    fun:_ZN7WebCore11EventTarget18fireEventListenersEPNS_5EventEPNS_15EventTargetDataERN3WTF6VectorINS_23RegisteredEventListenerELm1EEE
3046 }
3047 {
3048    bug_108624a
3049    Memcheck:Leak
3050    fun:_Znw*
3051    fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
3052    fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF6StringEEET_v
3053    fun:_ZN7WebCore15V8ParameterBasecvN3WTF6StringEEv
3054    fun:_ZN7WebCore25WebKitBlobBuilderInternal*
3055 }
3056 {
3057    bug_108628
3058    Memcheck:Leak
3059    fun:_Znw*
3060    fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
3061    fun:_ZN*7WebCore16V8StringResourceILNS_20V8StringResourceModeE0EE8toStringIN3WTF12AtomicStringEEET_v
3062    fun:_ZN*7WebCore16V8StringResourceILNS_20V8StringResourceModeE0EEcvN3WTF12AtomicStringEEv
3063    ...
3064    fun:_ZN7WebCore24XMLHttpRequestV8Internal*
3065    ...
3066    fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3067 }
3068 # OOM in layout test: crash/array-splice.html
3069 {
3070    bug_108832
3071    Memcheck:Unaddressable
3072    fun:_ZN7WebCoreL28reportFatalErrorInMainThreadEPKcS1_
3073    fun:_ZN2v88internal2V823FatalProcessOutOfMemoryEPKcb
3074    ...
3075    fun:_ZN7WebCore12ScriptLoader13executeScriptERKNS_16ScriptSourceCodeE
3076 }
3077 {
3078    bug_109495e
3079    Memcheck:Leak
3080    fun:_Znw*
3081    fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN3gpu5gles219VertexAttribManager16VertexAttribInfoEEE8allocateEmPKv
3082    fun:_ZNSt10_List_baseIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE11_M_get_nodeEv
3083    fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE14_M_create_nodeERKS4_
3084    fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE6insertESt14_List_iteratorIS4_ERKS4_
3085    fun:_ZN3gpu5gles219VertexAttribManager16VertexAttribInfo7SetListEPSt4listIPS2_SaIS4_EE
3086    fun:_ZN3gpu5gles219VertexAttribManager10InitializeEj
3087    fun:_ZN3gpu5gles216GLES2DecoderImpl10Initialize*
3088    fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
3089    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
3090    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
3091 }
3092 {
3093    bug_109495f
3094    Memcheck:Leak
3095    fun:_Znw*
3096    ...
3097    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
3098    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
3099    fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN5blink20WebGraphicsContext3D10AttributesE
3100    fun:_ZN7WebCore17GraphicsContext3D6createENS0_10AttributesEPNS_10HostWindowENS0_11RenderStyleE
3101    fun:_ZN7WebCore21WebGLRenderingContext6createEPNS_17HTMLCanvasElementEPNS_22WebGLContextAttributesE
3102    fun:_ZN7WebCore17HTMLCanvasElement10getContextERKN3WTF6StringEPNS_23CanvasContextAttributesE
3103    fun:_ZN7WebCore19V8HTMLCanvasElement18getContextCallbackERKN2v89ArgumentsE
3104 }
3105 {
3106    bug_109496
3107    Memcheck:Uninitialized
3108    ...
3109    fun:_ZN7WebCore11ImageBuffer27platformTransformColorSpaceERKN3WTF6VectorIiLm0EEE
3110    fun:_ZN7WebCore11ImageBuffer19transformColorSpaceENS_10ColorSpaceES1_
3111    fun:_ZN7WebCore23RenderSVGResourceFilter17postApplyResourceEPNS_12RenderObjectERPNS_15GraphicsContextEtPKNS_4PathEPKNS_14RenderSVGShapeE
3112    ...
3113    fun:_ZN7WebCore14RenderSVGShape5paintERNS_9PaintInfoERKNS_*
3114    ...
3115    fun:_ZN7WebCore13RenderSVGRoot*paint*PaintInfoERKNS_*
3116 }
3117 {
3118    bug_109872
3119    Memcheck:Leak
3120    fun:_Znw*
3121    fun:_ZN18BrowserProcessImpl29ResourceDispatcherHostCreatedEv
3122    fun:_ZN6chrome26ChromeContentBrowserClient29ResourceDispatcherHostCreatedEv
3123    fun:_ZN22ResourceDispatcherHost*
3124    ...
3125    fun:_ZN7content15BrowserMainLoop21BrowserThreadsStartedEv
3126    fun:_ZN7content15BrowserMainLoop*
3127    ...
3128    fun:_Z11BrowserMainRKN7content18MainFunctionParamsE
3129 }
3130 {
3131    bug_110734
3132    Memcheck:Leak
3133    fun:_Znw*
3134    fun:_ZN15StartupTimeBomb3ArmERKN4base9TimeDeltaE
3135    fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
3136 }
3137 {
3138    bug_111186
3139    Memcheck:Leak
3140    fun:_Znw*
3141    fun:_ZN11leveldb_*ChromiumEnv11StartThread*
3142    fun:_ZN11leveldb_*ChromiumEnv8Schedule*
3143    fun:_ZN7leveldb6DBImpl23MaybeScheduleCompactionEv
3144    fun:_ZN7leveldb6DBImpl16MakeRoomForWriteEb
3145    fun:_ZN7leveldb6DBImpl5WriteERKNS_12WriteOptionsEPNS_10WriteBatchE
3146    fun:_ZN17LeveldbValueStore9WriteToDbEPN7leveldb10WriteBatchE
3147    fun:_ZN17LeveldbValueStore3SetEiRKSsRKN4base5ValueE
3148    fun:_ZN10extensions28SettingsStorageQuotaEnforcer3SetEiRKSsRKN4base5ValueE
3149    fun:_ZN10extensions23SyncableSettingsStorage3SetEiRKSsRKN4base5ValueE
3150 }
3151 {
3152    bug_111341
3153    Memcheck:Leak
3154    fun:malloc
3155    fun:_ZN3WTF10fastMallocEm
3156    fun:_ZN7WebCore17ClipboardChromiumnwEm
3157    fun:_ZN7WebCore17ClipboardChromium6createENS_9Clipboard13ClipboardTypeEN3WTF10PassRefPtrINS_18ChromiumDataObjectEEENS_21ClipboardAccessPolicyEPNS_5FrameE
3158 }
3159 {
3160    bug_111669
3161    Memcheck:Leak
3162    fun:_Znw*
3163    fun:_ZN8appcache17AppCacheDiskCache10ActiveCall17OnAsyncCompletionEi
3164 }
3165 {
3166    bug_112278
3167    Memcheck:Uninitialized
3168    fun:fetch_texel_2d_f_rgba8888
3169    fun:sample_2d_nearest
3170    fun:sample_nearest_2d
3171    fun:fetch_texel_lod
3172    fun:fetch_texel
3173    fun:_mesa_execute_program
3174    fun:run_program
3175    fun:_swrast_exec_fragment_program
3176    fun:shade_texture_span
3177    fun:_swrast_write_rgba_span
3178    fun:general_triangle
3179    ...
3180    fun:_swrast_Triangle
3181    fun:triangle_rgba
3182    ...
3183    fun:run_render
3184    fun:_tnl_run_pipeline
3185    fun:_tnl_draw_prims
3186    fun:_tnl_vbo_draw_prims
3187 }
3188 {
3189    bug_112315
3190    Memcheck:Leak
3191    fun:_Znw*
3192    fun:_ZN2v88internal21NativeObjectsExplorer18FindOrAddGroupInfoEPKc
3193    ...
3194    fun:_ZN2v88internal21NativeObjectsExplorer27IterateAndExtractReferencesEPNS0_23SnapshotFillerInterfaceE
3195    fun:_ZN2v88internal21HeapSnapshotGenerator25CountEntriesAndReferencesEv
3196    fun:_ZN2v88internal21HeapSnapshotGenerator16GenerateSnapshotEv
3197    fun:_ZN2v88internal12HeapProfiler16TakeSnapshotImplEPKciPNS_15ActivityControlE
3198    ...
3199    fun:_ZN2v88internal12HeapProfiler12TakeSnapshotEPNS0_6StringEiPNS_15ActivityControlE
3200    fun:_ZN2v812HeapProfiler12TakeSnapshotENS_6HandleINS_6StringEEENS_12HeapSnapshot4TypeEPNS_15ActivityControlE
3201    fun:_ZL13GetNumObjectsPKc
3202 }
3203 {
3204    bug_112450_b
3205    Memcheck:Unaddressable
3206    fun:_ZN7WebCore15PlatformSupport25loadPlatformAudioResourceEPKcd
3207    fun:_ZN7WebCore8AudioBus20loadPlatformResourceEPKcf
3208    fun:_ZN7WebCore13HRTFElevation35calculateKernelsForAzimuthElevationEiifRKN3WTF6StringERNS1_6RefPtrINS_10HRTFKernelEEES8_
3209    fun:_ZN7WebCore13HRTFElevation16createForSubjectERKN3WTF6StringEif
3210    fun:_ZN7WebCore12HRTFDatabaseC1Ef
3211    fun:_ZN7WebCore12HRTFDatabase6createEf
3212    fun:_ZN7WebCore18HRTFDatabaseLoader4loadEv
3213    fun:_ZN7WebCoreL19databaseLoaderEntryEPv
3214    fun:_ZN3WTFL16threadEntryPointEPv
3215 }
3216 {
3217    bug_112594_a
3218    Memcheck:Leak
3219    ...
3220    fun:NPP_New
3221    fun:_ZN6webkit5npapi14PluginInstance7NPP_NewEtsPPcS3_
3222    fun:_ZN6webkit5npapi14PluginInstance5StartERK4GURLPPcS6_ib
3223    fun:_ZN6webkit5npapi21WebPluginDelegateImpl10InitializeERK4GURLRKSt6vectorISsSaISsEES9_PNS0_9WebPluginEb
3224    fun:_ZN6webkit5npapi13WebPluginImpl10initializeEPN5blink18WebPluginContainerE
3225    fun:_ZN5blink21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
3226    fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
3227    fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
3228    fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
3229 }
3230 {
3231    bug_112594_b
3232    Memcheck:Unaddressable
3233    fun:_ZN6webkit5npapi13WebPluginImpl24HandleURLRequestInternalEPKcS3_S3_S3_jibNS1_8ReferrerEbb
3234    fun:_ZN6webkit5npapi13WebPluginImpl16HandleURLRequestEPKcS3_S3_S3_jibb
3235    fun:_ZN6webkit5npapi14PluginInstance10RequestURLEPKcS3_S3_S3_jbPv
3236    fun:GetURLNotify
3237    fun:NPN_GetURLNotify
3238    fun:_ZN10PluginTest16NPN_GetURLNotifyEPKcS1_Pv
3239    fun:_ZN34GetURLNotifyWithURLThatFailsToLoad7NPP_NewEPctsPS0_S1_P12_NPSavedData
3240    fun:NPP_New
3241    fun:_ZN6webkit5npapi14PluginInstance7NPP_NewEtsPPcS3_
3242    fun:_ZN6webkit5npapi14PluginInstance5StartERK4GURLPPcS6_ib
3243    fun:_ZN6webkit5npapi21WebPluginDelegateImpl10InitializeERK4GURLRKSt6vectorISsSaISsEES9_PNS0_9WebPluginEb
3244    fun:_ZN6webkit5npapi13WebPluginImpl10initializeEPN5blink18WebPluginContainerE
3245    fun:_ZN5blink21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
3246    fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
3247    fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
3248    fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
3249 }
3250 {
3251    bug_112594_c
3252    Memcheck:Unaddressable
3253    fun:_ZN27DocumentOpenInDestroyStream17NPP_DestroyStreamEP9_NPStreams
3254    fun:NPP_DestroyStream
3255    fun:_ZN6webkit5npapi14PluginInstance17NPP_DestroyStreamEP9_NPStreams
3256    fun:_ZN6webkit5npapi12PluginStream5CloseEs
3257    fun:_ZN6webkit5npapi15PluginStreamUrl5CloseEs
3258    fun:_ZN6webkit5npapi15PluginStreamUrl16DidFinishLoadingEv
3259    fun:_ZN6webkit5npapi13WebPluginImpl16didFinishLoadingEPN5blink12WebURLLoaderEd
3260 }
3261 {
3262    bug_112594_d
3263    Memcheck:Leak
3264    fun:malloc
3265    fun:NPN_MemAlloc
3266    fun:*Enumerate*ObjectPPPvPj
3267    fun:_ZN7WebCore26npObjectPropertyEnumerator*Info*
3268    ...
3269    fun:_ZN2v88internal28Runtime_GetPropertyNamesFast*IsolateE
3270 }
3271 {
3272    bug_112573
3273    Memcheck:Leak
3274    fun:_Znw*
3275    fun:_ZN2v88internal2OS15CreateSemaphoreEi
3276    fun:_ZN2v88internal8ProfilerC1EPNS0_7IsolateE
3277    fun:_ZN2v88internal6Logger5SetUpEv
3278    fun:_ZN2v88internal7Isolate4InitEPNS0_12DeserializerE
3279    fun:_ZN2v88internal2V810InitializeEPNS0_12DeserializerE
3280    fun:_ZN2v88internal8Snapshot11DeserializeEPKhi
3281    fun:_ZN2v88internal8Snapshot10InitializeEPKc
3282    fun:_ZN2v8L16InitializeHelperEv
3283    fun:_ZN2v8L27EnsureInitializedForIsolateEPNS_8internal7IsolateEPKc
3284    fun:_ZN2v82V818AddMessageListenerEPFvNS_6HandleINS_7MessageEEENS1_INS_5ValueEEEES5_
3285    fun:_ZN7WebCore27WorkerContextExecutionProxy19initContextIfNeededEv
3286    fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKN3WTF6StringES4_RKNS1_12TextPositionEPNS_27WorkerContextExecutionStateE
3287    fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeEPNS_11ScriptValueE
3288    fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeE
3289    fun:_ZN7WebCore12WorkerThread12workerThreadEv
3290    fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
3291    fun:_ZN3WTFL16threadEntryPointEPv
3292 }
3293 {
3294    bug_112835
3295    Memcheck:Unaddressable
3296    ...
3297    fun:_ZN5blink31WorkerFileSystemCallbacksBridge4stopEv
3298    fun:_ZN5blink31WorkerFileSystemContextObserver10notifyStopEv
3299    fun:_ZN7WebCore13WorkerContext21notifyObserversOfStopEv
3300    fun:_ZN7WebCore29WorkerThreadShutdownStartTask11performTaskEPNS_22ScriptExecutionContextE
3301    fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskERKS0_PNS_22ScriptExecutionContextE
3302    fun:_ZN7WebCore13WorkerRunLoop15runCleanupTasksEPNS_13WorkerContextE
3303 }
3304 {
3305    bug_115294
3306    Memcheck:Leak
3307    fun:_Znw*
3308    ...
3309    fun:_ZN17AudioRendererHost14OnCreateStreamEiRK15AudioParameters
3310 }
3311 {
3312    bug_116475
3313    Memcheck:Uninitialized
3314    ...
3315    fun:_ZNK4base9Histogram11BucketIndexEi
3316    fun:_ZN4base9Histogram3AddEi
3317    fun:_ZN11webkit_glue25WebKitPlatformSupportImpl21histogramCustomCountsEPKciiii
3318    fun:_ZN7WebCore15PlatformSupport21histogramCustomCountsEPKciiii
3319    fun:_ZN7WebCore19CCLayerTreeHostImpl20optimizeRenderPasses*
3320    fun:_ZN7WebCore19CCLayerTreeHostImpl10drawLayersEv
3321    fun:_ZN7WebCore19CCSingleThreadProxy11doCompositeEv
3322 }
3323 {
3324    bug_118890_a
3325    Memcheck:Leak
3326    ...
3327    fun:_ZN8notifier18SingleLoginAttemptC1EPNS_13LoginSettingsEPNS0_8DelegateE
3328    fun:_ZN8notifier5Login15StartConnectionEv
3329    fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
3330 }
3331 {
3332    bug_118890_b
3333    Memcheck:Leak
3334    fun:_Znw*
3335    fun:_ZN13sync_notifier12_GLOBAL__N_124InvalidationNotifierTest5SetUpEv
3336 }
3337 {
3338    bug_122189
3339    Memcheck:Leak
3340    fun:_Znw*
3341    fun:_ZN5blink16ChromeClientImpl18createColorChooserEPN7WebCore18ColorChooserClientERKNS1_5ColorE
3342    fun:_ZN7WebCore6Chrome18createColorChooserEPNS_18ColorChooserClientERKNS_5ColorE
3343    fun:_ZN7WebCore14ColorInputType22handleDOMActivateEventEPNS_5EventE
3344    fun:_ZN7WebCore16HTMLInputElement19defaultEventHandlerEPNS_5EventE
3345    fun:_ZN7WebCore15EventDispatcher13dispatchEventEN3WTF10PassRefPtrINS_5EventEEE
3346    fun:_ZNK7WebCore21EventDispatchMediator13dispatchEventEPNS_15EventDispatcherE
3347 }
3348 {
3349    bug_122192
3350    Memcheck:Leak
3351    fun:_Znw*
3352    ...
3353    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
3354    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
3355    fun:_ZN14webkit_support23CreateGraphicsContext3DERKN5blink20WebGraphicsContext3D10AttributesEPNS0_7WebViewEb
3356    fun:_ZN11WebViewHost23createGraphicsContext3DERKN5blink20WebGraphicsContext3D10AttributesE
3357    fun:_ZN5blink11WebViewImpl33createCompositorGraphicsContext3DEv
3358    fun:_ZN5blink11WebViewImpl15createContext3DEv
3359 }
3360 {
3361    bug_122245a
3362    Memcheck:Uninitialized
3363    ...
3364    fun:_ZN15SkScalerContext15internalGetPathERK7SkGlyphP6SkPathS4_P8SkMatrix
3365    fun:_ZN15SkScalerContext10getMetricsEP7SkGlyph
3366    fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
3367 }
3368 {
3369    bug_122245b
3370    Memcheck:Uninitialized
3371    ...
3372    fun:_ZNK6SkRect8roundOutEP7SkIRect
3373    fun:_ZN15SkScalerContext10getMetricsEP7SkGlyph
3374    fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
3375    fun:_ZN12SkGlyphCache17getGlyphIDMetricsEt
3376    fun:_ZL22sk_getMetrics_glyph_00P12SkGlyphCachePPKcii
3377    fun:_ZNK6SkDraw11drawPosTextEPKcmPKffiRK7SkPaint
3378    fun:_ZN8SkDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
3379    fun:_ZN11SkGpuDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
3380    fun:_ZN8SkCanvas11drawPosTextEPKvmPK7SkPointRK7SkPaint
3381    fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
3382    fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
3383    fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
3384    fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
3385    fun:_ZN7WebCore15GraphicsContext12drawBidiTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointE
3386    fun:_ZN7WebCore24CanvasRenderingContext2D16drawTextInternalERKN3WTF6StringEffbfb
3387    fun:_ZN7WebCore24CanvasRenderingContext2D10strokeTextERKN3WTF6StringEfff
3388    fun:_ZN7WebCore32CanvasRenderingContext2DInternalL18strokeTextCallbackERKN2v89ArgumentsE
3389    fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3390    fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3391 }
3392 {
3393    bug_122429
3394    Memcheck:Leak
3395    fun:_Znw*
3396    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
3397    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
3398    fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN5blink20WebGraphicsContext3D10AttributesE
3399    fun:_ZN13TestWebPlugin10initializeEPN5blink18WebPluginContainerE
3400    fun:_ZN5blink21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
3401 }
3402 {
3403    bug_122431
3404    Memcheck:Leak
3405    fun:_Znw*
3406    fun:_ZN11WebViewHost12createPluginEPN5blink8WebFrameERKNS0_15WebPluginParamsE
3407    fun:_ZN5blink21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
3408    fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
3409    fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
3410    fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
3411    fun:_ZN7WebCore16HTMLEmbedElement12updateWidgetENS_20PluginCreationOptionE
3412 }
3413 {
3414    bug_122435a
3415    Memcheck:Leak
3416    fun:_Zna*
3417    fun:_ZN3gpu5gles219VertexAttribManager10InitializeEj
3418    fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContext*SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
3419    fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
3420    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
3421    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
3422 }
3423 {
3424    bug_122435b
3425    Memcheck:Leak
3426    fun:_Znw*
3427    fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN3gpu5gles219VertexAttribManager16VertexAttribInfoEEE8allocateEmPKv
3428    fun:_ZNSt10_List_baseIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE11_M_get_nodeEv
3429    fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE14_M_create_nodeERKS4_
3430    fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE6insertESt14_List_iteratorIS4_ERKS4_
3431    fun:_ZN3gpu5gles219VertexAttribManager16VertexAttribInfo7SetListEPSt4listIPS2_SaIS4_EE
3432    fun:_ZN3gpu5gles219VertexAttribManager6EnableEjb
3433 }
3434 {
3435    bug_122436
3436    Memcheck:Leak
3437    fun:_Znw*
3438    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEEEE8allocateEmPKv
3439    fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE11_M_get_nodeEv
3440    fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE14_M_create_nodeERKS7_
3441    fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE10_M_insert_EPKSt18_Rb_tree_node_baseSG_RKS7_
3442    fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE16_M_insert_uniqueERKS7_
3443    fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS7_ERKS7_
3444    fun:_ZNSt3mapIj10linked_ptrIN3gpu13CommonDecoder6BucketEESt4lessIjESaISt4pairIKjS4_EEE6insertESt17_Rb_tree_iteratorIS9_ERKS9_
3445    fun:_ZNSt3mapIj10linked_ptrIN3gpu13CommonDecoder6BucketEESt4lessIjESaISt4pairIKjS4_EEEixERS8_
3446    fun:_ZN3gpu13CommonDecoder12CreateBucketEj
3447 }
3448 {
3449    bug_122437
3450    Memcheck:Leak
3451    fun:_Znw*
3452    ...
3453    fun:_ZN3gpu19MappedMemoryManager5Alloc*
3454    fun:_ZN3gpu5gles219GLES2Implementation24MapTexSubImage2DCHROMIUM*
3455    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl24mapTexSubImage2DCHROMIUM*
3456    fun:_ZN7WebCore24GraphicsContext3DPrivate24mapTexSubImage2DCHROMIUM*
3457    fun:_ZN7WebCore20Extensions3DChromium24mapTexSubImage2DCHROMIUM*
3458    fun:_ZN7WebCore20LayerTextureSubImage24uploadWithMapTexSubImageEPKhRKNS_7IntRectES5_S5_jPNS_17GraphicsContext3DE
3459    fun:_ZN7WebCore20LayerTextureSubImage6uploadEPKhRKNS_7IntRectES5_S5_jPNS_17GraphicsContext3DE
3460    fun:_ZN7WebCore31BitmapCanvasLayerTextureUpdater17updateTextureRectEPNS_17GraphicsContext3DEPNS_16TextureAllocatorEPNS_14ManagedTextureERKNS_7IntRectES9_
3461    fun:_ZN7WebCore31BitmapCanvasLayerTextureUpdater7Texture10updateRectEPNS_17GraphicsContext3DEPNS_16TextureAllocatorERKNS_7IntRectES8_
3462 }
3463 {
3464    bug_122454
3465    Memcheck:Leak
3466    fun:_Znw*
3467    fun:_ZN11GrGLTexture4initEP7GrGpuGLRKNS_4DescEPKN16GrGLRenderTarget4DescE
3468    fun:_ZN11GrGLTextureC1EP7GrGpuGLRKNS_4DescE
3469    fun:_ZN7GrGpuGL15onCreateTextureERK13GrTextureDescPKvm
3470    fun:_ZN5GrGpu13createTextureERK13GrTextureDescPKvm
3471    fun:_ZN9GrContext20createAndLockTextureEmPK14GrSamplerStateRK13GrTextureDescPvm
3472    fun:_Z27sk_gr_create_bitmap_textureP9GrContextmPK14GrSamplerStateRK8SkBitmap
3473    fun:_ZN11SkGpuDevice17lockCachedTextureERK8SkBitmapPK14GrSamplerState
3474 }
3475 {
3476    bug_122455
3477    Memcheck:Leak
3478    fun:_Znw*
3479    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISsEE8allocateEmPKv
3480    fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11_M_get_nodeEv
3481    fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE14_M_create_nodeERKSs
3482    fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKSs
3483    fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueERKSs
3484    fun:_ZNSt3setISsSt4lessISsESaISsEE6insertERKSs
3485    fun:_ZN3gpu5gles219GLES2Implementation32GetRequestableExtensionsCHROMIUMEv
3486    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl32getRequestableExtensionsCHROMIUMEv
3487    fun:_ZN7WebCore24GraphicsContext3DPrivate20initializeExtensionsEv
3488    fun:_ZN7WebCore24GraphicsContext3DPrivate17supportsExtensionERKN3WTF6StringE
3489 }
3490 {
3491    bug_122457
3492    Memcheck:Leak
3493    fun:malloc
3494    fun:_ZN3WTF10fastMallocEm
3495    fun:_ZN3WTF10RefCountedIN7WebCore7ArchiveEEnwEm
3496    fun:_ZN7WebCore12MHTMLArchive6createEv
3497    ...
3498    fun:_ZN7WebCore11MHTMLParser22parseArchiveWithHeaderEPNS_10MIMEHeaderE
3499    fun:_ZN7WebCore11MHTMLParser12parseArchiveEv
3500    fun:_ZN7WebCore12MHTMLArchive6createERKNS_4KURLEPNS_12SharedBufferE
3501    fun:_ZN7WebCoreL20archiveFactoryCreateINS_12MHTMLArchiveEEEN3WTF10PassRefPtrINS_7ArchiveEEERKNS_4KURLEPNS_12SharedBufferE
3502    fun:_ZN7WebCore14ArchiveFactory6createERKNS_4KURLEPNS_12SharedBufferERKN3WTF6StringE
3503    ...
3504    fun:_ZN7WebCore14DocumentLoader15finishedLoadingEv
3505    fun:_ZN7WebCore18MainResourceLoader16didFinishLoadingEd
3506 }
3507 {
3508    bug_122670
3509    Memcheck:Leak
3510    fun:_Znw*
3511    fun:_ZN3WTF11ListHashSetIPN7WebCore12RenderInlineELm256ENS_7PtrHashIS3_EEEC1Ev
3512    fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS*
3513    fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS*
3514    fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS*
3515    fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS*
3516 }
3517 {
3518    bug_122716
3519    Memcheck:Leak
3520    fun:_Znw*
3521    fun:_ZN9__gnu_cxx13new_allocatorISsE8allocate*
3522    fun:_ZNSt12_Vector_baseISsSaISsEE11_M_allocate*
3523    fun:_ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs
3524    fun:_ZNSt6vectorISsSaISsEE9push_backERKSs
3525    fun:_ZN4baseL12SplitStringTISsEEvRKT_NS1_10value_typeEbPSt6vectorIS1_SaIS1_EE
3526 }
3527 {
3528    bug_122717_use_after_free
3529    Memcheck:Unaddressable
3530    fun:__pthread_mutex_unlock_usercnt
3531    fun:_ZN4base8internal8LockImpl6UnlockEv
3532    fun:_ZN4base4Lock7ReleaseEv
3533    fun:_ZN4base8AutoLockD1Ev
3534    fun:_ZN5gdata15GDataFileSystem21RunTaskOnIOThreadPoolERKN4base8CallbackIFvvEEE
3535 }
3536 {
3537    bug_122717_leak
3538    Memcheck:Leak
3539    fun:_Znw*
3540    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
3541    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
3542    fun:_ZN7content13BrowserThread16PostTaskAndReplyENS0_2IDERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESB_
3543 }
3544 {
3545    bug_122752a
3546    Memcheck:Unaddressable
3547    fun:_ZN5blink12CCThreadImpl8postTaskEN3WTF10PassOwnPtrIN7WebCore8CCThread4TaskEEE
3548    fun:_ZN7WebCore13CCThreadProxy18finishAllRenderingEv
3549    fun:_ZN7WebCore15CCLayerTreeHost18finishAllRenderingEv
3550    fun:_ZN5blink16WebLayerTreeView18finishAllRenderingEv
3551    fun:_ZN5blink11WebViewImpl33setIsAcceleratedCompositingActiveEb
3552    fun:_ZN5blink11WebViewImpl20setRootGraphicsLayerEPN7WebCore13GraphicsLayerE
3553 }
3554 {
3555    bug_122752b
3556    Memcheck:Unaddressable
3557    fun:_ZN5blink12CCThreadImpl8postTaskEN3WTF10PassOwnPtrIN7WebCore8CCThread4TaskEEE
3558    fun:_ZN7WebCore13CCThreadProxy14setNeedsCommitEv
3559    fun:_ZN7WebCore15CCLayerTreeHost14setNeedsCommitEv
3560    fun:_ZN7WebCore13LayerChromium14setNeedsCommitEv
3561    fun:_ZN7WebCore13LayerChromium11removeChildEPS0_
3562    fun:_ZN7WebCore13LayerChromium16removeFromParentEv
3563    fun:_ZN7WebCore21GraphicsLayerChromium16removeFromParentEv
3564 }
3565 {
3566    bug_123307
3567    Memcheck:Leak
3568    fun:malloc
3569    fun:_ZN3WTF10fastMallocEm
3570    fun:_ZN3WTF16fastZeroedMallocEm
3571    ...
3572    fun:_ZN7WebCore12_GLOBAL__N_111V8ObjectMapIN2v86ObjectEjE3setERKNS2_6HandleIS3_EERKj
3573    fun:_ZN7WebCore12_GLOBAL__N_110Serializer10greyObjectERKN2v86HandleINS2_6ObjectEEE
3574    fun:_ZN7WebCore12_GLOBAL__N_110Serializer11doSerializeEN2v86HandleINS2_5ValueEEEPNS1_9StateBaseE
3575    fun:_ZN7WebCore12_GLOBAL__N_110Serializer9serializeEN2v86HandleINS2_5ValueEEE
3576    fun:_ZN7WebCore21SerializedScriptValueC1EN2v86HandleINS1_5ValueEEEPN3WTF6VectorINS5_6RefPtrINS_11MessagePortEEELm1EEEPNS6_INS7_INS5_11ArrayBufferEEELm1EEERb
3577    fun:_ZN7WebCore21SerializedScriptValue6createEN2v86HandleINS1_5ValueEEEPN3WTF6VectorINS5_6RefPtrINS_11MessagePortEEELm1EEEPNS6_INS7_INS5_11ArrayBufferEEELm1EEERb
3578    fun:_ZN7WebCoreL25handlePostMessageCallbackERKN2v89ArgumentsEb
3579    fun:_ZN7WebCore11V8DOMWindow19postMessageCallbackERKN2v89ArgumentsE
3580    fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3581    fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3582 }
3583 {
3584    bug_124156
3585    Memcheck:Leak
3586    fun:_Znw*
3587    ...
3588    fun:*WebKitPlatformSupport*20CreateResourceLoaderERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
3589    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN5blink13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
3590    fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN5blink13WebURLRequestEPNS1_18WebURLLoaderClientE
3591 }
3592 {
3593    bug_124488
3594    Memcheck:Leak
3595    fun:malloc
3596    fun:strdup
3597    ...
3598    fun:_ZN34CopyTextureCHROMIUMResourceManager10InitializeEv
3599    fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContextEERKNS3_4SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
3600    fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
3601    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
3602    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
3603 }
3604 {
3605    bug_124496
3606    Memcheck:Leak
3607    fun:_Znw*
3608    ...
3609    fun:_ZN8notifier26ProxyResolvingClientSocket23ProcessProxyResolveDoneEi
3610 }
3611 {
3612    bug_124500
3613    Memcheck:Leak
3614    fun:_Znw*
3615    fun:_ZN9__gnu_cxx13new_allocatorIN6webkit17WebPluginMimeTypeEE8allocateEmPKv
3616    fun:_ZNSt12_Vector_baseIN6webkit17WebPluginMimeTypeESaIS1_EE11_M_allocateEm
3617    fun:_ZNSt6vectorIN6webkit17WebPluginMimeTypeESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_
3618    fun:_ZNSt6vectorIN6webkit17WebPluginMimeTypeESaIS1_EE9push_backERKS1_
3619    fun:_ZN6webkit5npapi9PluginLib20ParseMIMEDescriptionERKSsPSt6vectorINS_17WebPluginMimeTypeESaIS5_EE
3620    fun:_ZN6webkit5npapi9PluginLib17ReadWebPluginInfoE*
3621    fun:_ZN6webkit5npapi10PluginList14ReadPluginInfoE*
3622    fun:_ZN6webkit5npapi10PluginList10LoadPluginE*
3623    fun:_ZN17UtilityThreadImpl13OnLoadPluginsE*
3624 }
3625 {
3626    bug_127716
3627    Memcheck:Leak
3628    fun:_Znw*
3629    fun:_ZN3gfx5ImageC1ERK8SkBitmap
3630    fun:_ZN16BrowserThemePack16LoadRawBitmapsToE*
3631    fun:_ZN16BrowserThemePack18BuildFromExtensionEPK9Extension
3632    fun:_ZN45BrowserThemePackTest_CanBuildAndReadPack_Test8TestBodyEv
3633 }
3634 {
3635    bug_130362
3636    Memcheck:Leak
3637    fun:_Znw*
3638    fun:_ZN12invalidation20NewPermanentCallbackINS_22InvalidationClientImplES1_St4pairINS_6StatusESsEEEPN4base8CallbackIFvT1_EEEPT_MT0_FvS7_E
3639    fun:_ZN12invalidation22InvalidationClientImpl34ScheduleStartAfterReadingStateBlobEv
3640    fun:_ZN12invalidation22InvalidationClientImpl5StartEv
3641    fun:_ZN6syncer24SyncInvalidationListener5StartERKSsS2_S2_RKSt3mapIN8syncable9ModelTypeElSt4lessIS5_ESaISt4pairIKS5_lEEERKN12browser_sync10WeakHandleINS_24InvalidationStateTrackerEEEPNS0_8ListenerEPNS_11StateWriterE
3642    fun:_ZN6syncer20InvalidationNotifier17UpdateCredentialsERKSsS2_
3643    fun:_ZN6syncer31NonBlockingInvalidationNotifier4Core17UpdateCredentialsERKSsS3_
3644 }
3645 {
3646    bug_130449
3647    Memcheck:Leak
3648    fun:_Znw*
3649    fun:_ZN12invalidation20NewPermanentCallbackINS_22InvalidationClientImplES1_St4pairINS_6StatusESsEEEPN4base8CallbackIFvT1_EEEPT_MT0_FvS7_E
3650    fun:_ZN12invalidation22InvalidationClientImpl34ScheduleStartAfterReadingStateBlobEv
3651    fun:_ZN12invalidation22InvalidationClientImpl5StartEv
3652    fun:_ZN6syncer24SyncInvalidationListener5StartERKSsS2_S2_RKSt3mapIN8syncable9ModelTypeElSt4lessIS5_ESaISt4pairIKS5_lEEERKN12browser_sync10WeakHandleINS_24InvalidationStateTrackerEEEPNS0_8ListenerE
3653    fun:_ZN6syncer20InvalidationNotifier17UpdateCredentialsERKSsS2_
3654    fun:_ZN6syncer31NonBlockingInvalidationNotifier4Core17UpdateCredentialsERKSsS3_
3655 }
3656 {
3657    bug_130619
3658    Memcheck:Leak
3659    fun:_Znw*
3660    fun:_ZN7WebCore9ClipRects6createERKS0_
3661    fun:_ZN7WebCore11RenderLayer15updateClipRectsEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeENS_29OverlayScrollbarSizeRelevancyE
3662    ...
3663    fun:_ZNK7WebCore11RenderLayer15parentClipRectsEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeERNS_9ClipRectsENS_29OverlayScrollbarSizeRelevancyE
3664    fun:_ZNK7WebCore11RenderLayer18backgroundClipRectEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeENS_29OverlayScrollbarSizeRelevancyE
3665 }
3666 {
3667    bug_138058
3668    Memcheck:Uninitialized
3669    ...
3670    fun:_ZN7WebCore12WebVTTParser22constructTreeFromTokenEPNS_8DocumentE
3671    fun:_ZN7WebCore12WebVTTParser33createDocumentFragmentFromCueTextERKN3WTF6StringE
3672    fun:_ZN7WebCore12TextTrackCue12getCueAsHTMLEv
3673    fun:_ZN7WebCore12TextTrackCue17updateDisplayTreeEf
3674    fun:_ZN7WebCore16HTMLMediaElement25updateActiveTextTrackCuesEf
3675 }
3676 {
3677    bug_138060
3678    Memcheck:Uninitialized
3679    fun:_NPN_EvaluateHelper
3680    fun:_NPN_Evaluate
3681    fun:_ZN5blink11WebBindings8evaluateEP4_NPPP8NPObjectP9_NPStringP10_NPVariant
3682    fun:_ZL13executeScriptPK12PluginObjectPKc
3683    fun:NPP_Destroy
3684    fun:_ZN6webkit5npapi14PluginInstance11NPP_DestroyEv
3685    fun:_ZN6webkit5npapi21WebPluginDelegateImpl15DestroyInstanceEv
3686    fun:_ZN6webkit5npapi21WebPluginDelegateImplD0Ev
3687    fun:_ZN6webkit5npapi21WebPluginDelegateImpl15PluginDestroyedEv
3688    fun:_ZN6webkit5npapi13WebPluginImpl22TearDownPluginInstanceEPN5blink12WebURLLoaderE
3689    fun:_ZN6webkit5npapi13WebPluginImpl12SetContainerEPN5blink18WebPluginContainerE
3690    fun:_ZN6webkit5npapi13WebPluginImpl7destroyEv
3691    fun:_ZN5blink22WebPluginContainerImplD0Ev
3692    fun:_ZN3WTF10RefCountedIN7WebCore6WidgetEE5derefEv
3693    fun:_ZNSt4pairIN3WTF6RefPtrIN7WebCore6WidgetEEEPNS2_9FrameViewEED1Ev
3694    fun:_ZN3WTF9HashTableINS_6RefPtrIN7WebCore6WidgetEEESt4pairIS4_PNS2_9FrameViewEENS_18PairFirstExtractorIS8_EENS_7PtrHashIS4_EENS_14PairHashTraitsINS_10HashTraitsIS4_EENSE_IS7_EEEESF_E15deallocateTableEPS8_i
3695    fun:_ZN3WTF9HashTableINS_6RefPtrIN7WebCore6WidgetEEESt4pairIS4_PNS2_9FrameViewEENS_18PairFirstExtractorIS8_EENS_7PtrHashIS4_EENS_14PairHashTraitsINS_10HashTraitsIS4_EENSE_IS7_EEEESF_ED1Ev
3696    fun:_ZN3WTF7HashMapINS_6RefPtrIN7WebCore6WidgetEEEPNS2_9FrameViewENS_7PtrHashIS4_EENS_10HashTraitsIS4_EENS9_IS6_EEED1Ev
3697    fun:_ZN7WebCore12RenderWidget28resumeWidgetHierarchyUpdatesEv
3698    fun:_ZN7WebCore7Element6detachEv
3699    fun:_ZN7WebCore13ContainerNode14detachChildrenEv
3700    fun:_ZN7WebCore13ContainerNode6detachEv
3701 }
3702 {
3703    bug_138220_a
3704    Memcheck:Uninitialized
3705    fun:_ZNK7WebCore16HTMLInputElement8dataListEv
3706    fun:_ZNK7WebCore16HTMLInputElement4listEv
3707    fun:_ZN7WebCore21RenderSliderContainer6layoutEv
3708    fun:_ZN7WebCore11RenderBlock16layoutBlockChildEPNS_9RenderBoxERNS0_10MarginInfoERNS_20FractionalLayoutUnitES6_
3709    fun:_ZN7WebCore11RenderBlock19layoutBlockChildrenEbRNS_20FractionalLayoutUnitE
3710    fun:_ZN7WebCore11RenderBlock11layoutBlockEbNS_20FractionalLayoutUnitE
3711    fun:_ZN7WebCore11RenderBlock6layoutEv
3712    fun:_ZN7WebCore12RenderSlider6layoutEv
3713 }
3714 {
3715    bug_138220_b
3716    Memcheck:Uninitialized
3717    fun:_ZNK7WebCore16HTMLInputElement8dataListEv
3718    fun:_ZNK7WebCore16HTMLInputElement4listEv
3719    fun:_ZN7WebCore11RenderTheme16paintSliderTicksEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
3720    fun:_ZN7WebCore24RenderThemeChromiumLinux16paintSliderTrackEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
3721    fun:_ZN7WebCore11RenderTheme5paintEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
3722    fun:_ZN7WebCore9RenderBox19paintBoxDecorationsERNS_9PaintInfoERKNS_21FractionalLayoutPointE
3723    fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_21FractionalLayoutPointE
3724 }
3725 {
3726    bug_138233_a
3727    Memcheck:Leak
3728    fun:malloc
3729    fun:_ZN3WTF10fastMallocEm
3730    fun:_ZN3WTF10RefCountedIN7WebCore17ScriptProfileNodeEEnwEm
3731    fun:_ZN7WebCore17ScriptProfileNode6createEPKN2v814CpuProfileNodeE
3732    fun:_ZNK7WebCore13ScriptProfile4headEv
3733    fun:_ZN7WebCore23ScriptProfileV8InternalL14headAttrGetterEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
3734    fun:_ZN2v88internal8JSObject23GetPropertyWithCallbackEPNS0_6ObjectES3_PNS0_6StringE
3735    fun:_ZN2v88internal6Object11GetPropertyEPS1_PNS0_12LookupResultEPNS0_6StringEP18PropertyAttributes
3736    fun:_ZN2v88internal6LoadIC4LoadENS0_16InlineCacheStateENS0_6HandleINS0_6ObjectEEENS3_INS0_6StringEEE
3737    fun:_ZN2v88internal11LoadIC_MissENS0_9ArgumentsEPNS0_7IsolateE
3738 }
3739 {
3740    bug_138233_b
3741    Memcheck:Leak
3742    fun:malloc
3743    fun:_ZN3WTF10fastMallocEm
3744    fun:_ZN3WTF10RefCountedIN7WebCore17ScriptProfileNodeEEnwEm
3745    fun:_ZN7WebCore17ScriptProfileNode6createEPKN2v814CpuProfileNodeE
3746    fun:_ZNK7WebCore17ScriptProfileNode8childrenEv
3747    fun:_ZN7WebCore27ScriptProfileNodeV8InternalL16childrenCallbackERKN2v89ArgumentsE
3748 }
3749 {
3750    bug_138522
3751    Memcheck:Leak
3752    fun:_Znw*
3753    fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
3754    fun:_ZN*WebCore*V8StringResourceILNS_20V8StringResourceMode*
3755    ...
3756    fun:_ZN7WebCore21EventTargetV8InternalL22addEventListenerMethodERKN2v820FunctionCallbackInfoINS1_5ValueEEE
3757 }
3758 {
3759    bug_138712
3760    Memcheck:Uninitialized
3761    fun:_ZN7testing8internal11CmpHelperGEIddEENS_15AssertionResultEPKcS4_RKT_RKT0_
3762    fun:_ZN3gfx30JPEGCodec_EncodeDecodeRGB_Test8TestBodyEv
3763 }
3764 {
3765    bug_139467
3766    Memcheck:Uninitialized
3767    fun:_ZNK7WebCore18AccessibilityTable9roleValueEv
3768    fun:_ZNK7WebCore25AccessibilityRenderObject20ariaLiveRegionStatusEv
3769    fun:_ZNK7WebCore19AccessibilityObject22supportsARIALiveRegionEv
3770    fun:_ZNK7WebCore19AccessibilityObject22supportsARIAAttributesEv
3771    fun:_ZN7WebCore25AccessibilityRenderObject26determineAccessibilityRoleEv
3772    fun:_ZN7WebCore23AccessibilityNodeObject4initEv
3773    fun:_ZN7WebCore25AccessibilityRenderObject4initEv
3774    fun:_ZN7WebCore18AccessibilityTable4initEv
3775 }
3776 {
3777    bug_139470
3778    Memcheck:Leak
3779    fun:_Znw*
3780    fun:_ZN7WebCore22ThreadableBlobRegistry17unregisterBlobURLERKNS_4KURLE
3781    ...
3782    fun:_ZN7WebCore15WrapperTypeInfo11derefObjectEPv
3783    fun:_ZN7WebCore7DOMData11derefObjectEPNS_15WrapperTypeInfoEPv
3784    fun:_ZN7WebCore7DOMData23WrapperMapObjectRemoverIvE15visitDOMWrapperEPNS_12DOMDataStoreEPvN2v810PersistentINS6_6ObjectEEE
3785    fun:_ZN7WebCore16WeakReferenceMapIvN2v86ObjectEE5visitEPNS_12DOMDataStoreEPNS_24AbstractWeakReferenceMapIvS2_E7VisitorE
3786    fun:_ZN7WebCore7DOMData27removeObjectsFromWrapperMapIvEEvPNS_12DOMDataStoreERNS_24AbstractWeakReferenceMapIT_N2v86ObjectEEE
3787    fun:_ZN7WebCore19removeAllDOMObjectsEv
3788    fun:_ZN7WebCore22WorkerScriptControllerD1Ev
3789    fun:_ZN3WTF14deleteOwnedPtrIN7WebCore22WorkerScriptControllerEEEvPT_
3790    fun:_ZN3WTF6OwnPtrIN7WebCore22WorkerScriptControllerEE5clearEv
3791    fun:_ZN7WebCore13WorkerContext11clearScriptEv
3792    fun:_ZN7WebCore30WorkerThreadShutdownFinishTask11performTaskEPNS_22ScriptExecutionContextE
3793    fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskERKS0_PNS_22ScriptExecutionContextE
3794    fun:_ZN7WebCore13WorkerRunLoop9runInModeEPNS_13WorkerContextERKNS_13ModePredicateENS0_8WaitModeE
3795    fun:_ZN7WebCore13WorkerRunLoop3runEPNS_13WorkerContextE
3796    fun:_ZN7WebCore12WorkerThread12runEventLoopEv
3797    fun:_ZN7WebCore21DedicatedWorkerThread12runEventLoopEv
3798 }
3799 {
3800    bug_139853
3801    Memcheck:Unaddressable
3802    fun:_ZN11SkGpuDeviceC1EP9GrContextP9GrTexture
3803    fun:_ZN7WebCoreL23createAcceleratedCanvas*
3804    fun:_ZN7WebCore45FrameBufferSkPictureCanvasLayerTextureUpdater17*
3805    fun:_ZN7WebCore45FrameBufferSkPictureCanvasLayerTextureUpdater7Texture10updateRectEPNS_18CCResourceProviderERKNS_7IntRectES6_
3806    fun:_ZN7WebCore12_GLOBAL__N_126UnthrottledTextureUploader13uploadTextureEPNS_19LayerTextureUpdater7TextureEPNS_18CCResourceProviderENS_7IntRectES7_
3807    fun:_ZN7WebCore16CCTextureUpdater6updateEPNS_18CCResourceProviderEPNS_13TextureCopierEPNS_15TextureUploaderEm
3808    fun:_ZN7WebCore19CCSingleThreadProxy8doCommitERNS_16CCTextureUpdaterE
3809    fun:_ZN7WebCore19CCSingleThreadProxy18commitAndCompositeEv
3810    fun:_ZN7WebCore19CCSingleThreadProxy20compositeAndReadbackEPvRKNS_7IntRectE
3811    fun:_ZN7WebCore15CCLayerTreeHost20compositeAndReadbackEPvRKNS_7IntRectE
3812    fun:_ZN5blink16WebLayerTreeView20compositeAndReadbackEPvRKNS_7WebRectE
3813    fun:_ZN5blink11WebViewImpl23doPixelReadbackToCanvasEP8SkCanvasRKN7WebCore7IntRectE
3814    fun:_ZN5blink11WebViewImpl5paintEP8SkCanvasRKNS_7WebRectE
3815    fun:_ZN11WebViewHost9paintRectERKN5blink7WebRectE
3816    fun:_ZN11WebViewHost22paintInvalidatedRegionEv
3817 }
3818 {
3819    bug_139996
3820    Memcheck:Leak
3821    fun:_Znw*
3822    fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
3823    fun:_ZN7WebCore15toWebCoreStringEN2v86HandleINS0_5ValueEEE
3824    fun:_ZN7WebCore6V8Blob19constructorCallbackERKN2v89ArgumentsE
3825    fun:_ZN2v88internalL19HandleApiCallHelperILb1EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3826    fun:_ZN2v88internalL30Builtin_HandleApiCallConstructENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3827 }
3828 {
3829    bug_140196
3830    Memcheck:Uninitialized
3831    fun:_ZNK12SkDescriptor6equalsERKS_
3832    fun:_ZN12SkGlyphCache10VisitCacheEPK12SkDescriptorPFbPKS_PvES5_
3833    ...
3834    fun:_ZNK7SkPaint14descriptorProcEPK8SkMatrixPFvPK12SkDescriptorPvES6_b
3835 }
3836 {
3837    bug_143545
3838    Memcheck:Uninitialized
3839    fun:_ZN4aura10RootWindow10ShowCursorEb
3840    fun:_ZN3ash5Shell10ShowCursorEb
3841    fun:_ZN3ash13CursorManager10ShowCursorEb
3842    fun:_ZN3ash4test11AshTestBase5SetUpEv
3843 }
3844 {
3845    bug_144118
3846    Memcheck:Unaddressable
3847    fun:NPP_SetWindow
3848    fun:_ZN6webkit5npapi14PluginInstance13NPP_SetWindowEP9_NPWindow
3849    fun:_ZN6webkit5npapi21WebPluginDelegateImpl17WindowedSetWindowEv
3850    fun:_ZN6webkit5npapi21WebPluginDelegateImpl22WindowedUpdateGeometryERKN3gfx4RectES5_
3851    fun:_ZN6webkit5npapi21WebPluginDelegateImpl14UpdateGeometryERKN3gfx4RectES5_
3852    fun:_ZN6webkit5npapi13WebPluginImpl14updateGeometryERKN5blink7WebRectES5_RKNS2_9WebVectorIS3_EEb
3853    fun:_ZN5blink22WebPluginContainerImpl14reportGeometryEv
3854    fun:_ZN5blink22WebPluginContainerImpl12setFrameRectERKN7WebCore7IntRectE
3855    ...
3856    fun:_ZN9TestShell4dumpEv
3857 }
3858 {
3859    bug_144118_b
3860    Memcheck:Unaddressable
3861    fun:_ZNK3WTF6OwnPtrIN5blink14ScrollbarGroupEEcvMS3_PS2_Ev
3862    fun:_ZN5blink22WebPluginContainerImpl14reportGeometryEv
3863    fun:_ZN5blink22WebPluginContainerImpl12setFrameRectERKN7WebCore7IntRectE
3864    ...
3865    fun:_ZN9TestShell4dumpEv
3866 }
3867 {
3868    bug_144913
3869    Memcheck:Leak
3870    fun:_Znw*
3871    fun:_ZN8chromeos30BluetoothAdapterClientStubImplC1Ev
3872    fun:_ZN8chromeos22BluetoothAdapterClient6CreateENS_28DBusClientImplementationTypeEPN4dbus3BusEPNS_22BluetoothManagerClientE
3873    fun:_ZN8chromeos21DBusThreadManagerImplC1ENS_28DBusClientImplementationTypeE
3874    fun:_ZN8chromeos17DBusThreadManager10InitializeEv
3875    fun:_ZN8chromeos23KioskModeIdleLogoutTest5SetUpEv
3876 }
3877 {
3878    bug_144913_b
3879    Memcheck:Leak
3880    fun:_Znw*
3881    fun:_ZN8chromeos17DBusThreadManager10InitializeEv
3882    fun:_ZN8chromeos23KioskModeIdleLogoutTest5SetUpEv
3883 }
3884 {
3885    bug_144913_c
3886    Memcheck:Leak
3887    fun:_Znw*
3888    ...
3889    fun:_ZN8chromeos21DBusThreadManagerImplC1ENS_28DBusClientImplementationTypeE
3890    fun:_ZN8chromeos17DBusThreadManager10InitializeEv
3891    fun:_ZN8chromeos23KioskModeIdleLogoutTest5SetUpEv
3892 }
3893 {
3894    bug_144930
3895    Memcheck:Leak
3896    fun:_Znw*
3897    fun:_ZL20cachedPaintLuminancef
3898 }
3899 {
3900    bug_144930_b
3901    Memcheck:Leak
3902    fun:_Znw*
3903    fun:_ZL21cachedDeviceLuminancef
3904 }
3905 {
3906    bug_145244
3907    Memcheck:Uninitialized
3908    fun:_ZN7WebCore15StyleRuleImport17requestStyleSheetEPNS_13CSSStyleSheetERKNS_16CSSParserContextE
3909    fun:_ZN7WebCore18StyleSheetContents26requestImportedStyleSheetsEPNS_13CSSStyleSheetE
3910 }
3911 {
3912    bug_145645
3913    Memcheck:Leak
3914    fun:malloc
3915    fun:_ZN3WTF10fastMallocEm
3916    fun:_ZN3WTF10RefCountedIN7WebCore18InjectedScriptHostEEnwEm
3917    fun:_ZN7WebCore18InjectedScriptHost6createEv
3918    fun:_ZN7WebCore21InjectedScriptManagerC1EPFbPNS_11ScriptStateEE
3919    fun:_ZN7WebCore21InjectedScriptManager15createForWorkerEv
3920    fun:_ZN7WebCore25WorkerInspectorControllerC1EPNS_13WorkerContextE
3921 }
3922 {
3923    bug_145650a
3924    Memcheck:Leak
3925    fun:_Znw*
3926    ...
3927    fun:_ZN14WebDataService10AddKeywordERK15TemplateURLData
3928    fun:_ZN18TemplateURLService11AddNoNotifyEP11TemplateURLb
3929 }
3930 {
3931    bug_145650b
3932    Memcheck:Leak
3933    fun:_Znw*
3934    fun:_ZN14WebDataService13RemoveKeywordEl
3935    fun:_ZN18TemplateURLService14RemoveNoNotifyEP11TemplateURL
3936    fun:_ZN18TemplateURLService6RemoveEP11TemplateURL
3937    fun:_ZN9protector71DefaultSearchProviderChangeTest_CurrentSearchProviderRemovedByUser_Test19RunTestOnMainThreadEv
3938 }
3939 {
3940    bug_145650c
3941    Memcheck:Leak
3942    fun:_Znw*
3943    fun:_ZN14WebDataService13UpdateKeywordERK15TemplateURLData
3944    fun:_ZN18TemplateURLService32SetDefaultSearchProviderNoNotifyEP11TemplateURL
3945 }
3946 {
3947    bug_125692a
3948    Memcheck:Uninitialized
3949    fun:_ZN2v88internal11StoreBuffer28IteratePointersInStoreBufferEPFvPPNS0_10HeapObjectES3_E
3950    fun:_ZN2v88internal11StoreBuffer25IteratePointersToNewSpaceEPFvPPNS0_10HeapObjectES3_E
3951    fun:_ZN2v88internal20MarkCompactCollector29EvacuateNewSpaceAndCandidatesEv
3952    fun:_ZN2v88internal20MarkCompactCollector11SweepSpacesEv
3953    fun:_ZN2v88internal20MarkCompactCollector14CollectGarbageEv
3954    fun:_ZN2v88internal4Heap11MarkCompactEPNS0_8GCTracerE
3955 }
3956 {
3957    bug_125692b
3958    Memcheck:Uninitialized
3959    fun:_ZN2v88internal11StoreBuffer7CompactEv
3960    fun:_ZN2v88internal11StoreBuffer19PrepareForIterationEv
3961    fun:_ZN2v88internal11StoreBuffer25IteratePointersToNewSpaceEPFvPPNS0_10HeapObjectES3_E
3962    fun:_ZN2v88internal20MarkCompactCollector29EvacuateNewSpaceAndCandidatesEv
3963    fun:_ZN2v88internal20MarkCompactCollector11SweepSpacesEv
3964    fun:_ZN2v88internal20MarkCompactCollector14CollectGarbageEv
3965    fun:_ZN2v88internal4Heap11MarkCompactEPNS0_8GCTracerE
3966    fun:_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorEPNS0_8GCTracerE
3967    fun:_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_16GarbageCollectorEPKcS5_
3968    fun:_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceEPKc
3969    fun:_ZN2v88internal4Heap17CollectAllGarbageEiPKc
3970    fun:_ZN2v88internal4Heap16IdleNotificationEi
3971    fun:_ZN2v88internal2V816IdleNotificationEi
3972    fun:_ZN2v82V816IdleNotificationEi
3973    fun:_ZN16RenderThreadImpl11IdleHandlerEv
3974 }
3975 {
3976    bug_145693
3977    Memcheck:Leak
3978    fun:_Znw*
3979    fun:_ZN10extensions18PermissionsUpdater17RecordOAuth2GrantEPKNS_9ExtensionE
3980    fun:_ZN10extensions18PermissionsUpdater22GrantActivePermissionsEPKNS_9ExtensionEb
3981    fun:_ZN10extensions12CrxInstaller25ReportSuccessFromUIThreadEv
3982 }
3983 {
3984    bug_145695
3985    Memcheck:Leak
3986    fun:malloc
3987    fun:NaClDescImcBoundDescAcceptConn
3988    fun:RevRpcHandlerBase
3989    fun:NaClThreadInterfaceStart
3990 }
3991 {
3992    bug_145696
3993    Memcheck:Leak
3994    fun:_Znw*
3995    fun:_ZN10extensions9TabHelper23OnInlineWebstoreInstallEiiRKSsRK4GURL
3996 }
3997 {
3998    bug_145697
3999    Memcheck:Leak
4000    fun:_Znw*
4001    ...
4002    fun:_ZN18SecurityFilterPeer40CreateSecurityFilterPeerForDeniedRequestEN12ResourceType4TypeEPN11webkit_glue20ResourceLoaderBridge4PeerEi
4003    fun:_ZN12_GLOBAL__N_124RendererResourceDelegate17OnRequestCompleteEPN11webkit_glue20ResourceLoaderBridge4PeerEN12ResourceType4TypeERKN3net16URLRequestStatusE
4004    fun:_ZN7content18ResourceDispatcher17OnRequestCompleteEiRKN3net16URLRequestStatusERKSsRKN4base9TimeTicksE
4005 }
4006 {
4007    bug_145699
4008    Memcheck:Leak
4009    fun:_Znw*
4010    fun:_ZN17OAuth2ApiCallFlow24CreateAccessTokenFetcherEv
4011    fun:_ZN17OAuth2ApiCallFlow20BeginMintAccessTokenEv
4012    fun:_ZN17OAuth2ApiCallFlow12BeginApiCallEv
4013    fun:_ZN17OAuth2ApiCallFlow5StartEv
4014    fun:_ZN19OAuth2MintTokenFlow13FireAndForgetEv
4015 }
4016 {
4017    bug_145703
4018    Memcheck:Leak
4019    fun:_Znw*
4020    ...
4021    fun:_ZN7content16SiteInstanceImpl10GetProcessEv
4022    fun:_ZN7content*Render*SiteInstance*
4023    fun:_ZN7content*Render*SiteInstance*
4024    ...
4025    fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
4026 }
4027 {
4028    bug_145704
4029    Memcheck:Leak
4030    fun:_Znw*
4031    fun:_ZN2v88internal5Debug17CreateScriptCacheEv
4032    fun:_ZN2v88internal5Debug16GetLoadedScriptsEv
4033    fun:_ZN2v88internal29Runtime_DebugGetLoadedScriptsENS0_9ArgumentsEPNS0_7IsolateE
4034 }
4035 {
4036    bug_145705
4037    Memcheck:Leak
4038    fun:_Znw*
4039    fun:_ZN10extensions16SettingsFrontendC1ERK13scoped_refptrINS_22SettingsStorageFactoryEEP7Profile
4040    fun:_ZN10extensions16SettingsFrontend6CreateEP7Profile
4041    fun:_ZN16ExtensionServiceC1E*
4042 }
4043 {
4044    bug_145708
4045    Memcheck:Leak
4046    fun:_Znw*
4047    fun:_ZN27ExtensionDevToolsClientHostC1EPN7content11WebContentsERKSsS4_i
4048    fun:_ZN22AttachDebuggerFunction7RunImplEv
4049    fun:_ZN17ExtensionFunction3RunEv
4050    fun:_ZN27ExtensionFunctionDispatcher8DispatchERK31ExtensionHostMsg_Request_ParamsPN7content14RenderViewHostE
4051    fun:_ZN10extensions13ExtensionHost9OnRequestERK31ExtensionHostMsg_Request_Params
4052 }
4053 {
4054    bug_145712
4055    Memcheck:Leak
4056    fun:_Znw*
4057    fun:_ZN5blink25NotificationPresenterImpl17requestPermissionEPN7WebCore22ScriptExecutionContextEN3WTF10PassRefPtrINS1_12VoidCallbackEEE
4058    fun:_ZN7WebCore18NotificationCenter17requestPermissionEN3WTF10PassRefPtrINS_12VoidCallbackEEE
4059    fun:_ZN7WebCore20V8NotificationCenter25requestPermissionCallbackERKN2v89ArgumentsE
4060 }
4061 {
4062    bug_145723
4063    Memcheck:Leak
4064    fun:_Znw*
4065    fun:_Z20NewExtensionFunctionI25TabsExecuteScriptFunctionEP17ExtensionFunctionv
4066    fun:_ZN25ExtensionFunctionRegistry11NewFunctionERKSs
4067    fun:_ZN27ExtensionFunctionDispatcher23CreateExtensionFunctionERK31ExtensionHostMsg_Request_ParamsPKN10extensions9ExtensionEiRKNS3_10ProcessMapEPNS3_12ExtensionAPIEPvPN3IPC6SenderEPN7content14RenderViewHostEi
4068    fun:_ZN27ExtensionFunctionDispatcher8DispatchERK31ExtensionHostMsg_Request_ParamsPN7content14RenderViewHostE
4069    fun:_ZN10extensions13ExtensionHost9OnRequestERK31ExtensionHostMsg_Request_Params
4070 }
4071 {
4072    bug_145735
4073    Memcheck:Leak
4074    fun:_Znw*
4075    fun:_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKv
4076    fun:_ZNSt12_Vector_baseIcSaIcEE11_M_allocateEm
4077    fun:_ZNSt12_Vector_baseIcSaIcEEC2EmRKS0_
4078    fun:_ZNSt6vectorIcSaIcEEC1EmRKcRKS0_
4079    fun:_ZN4base5files12_GLOBAL__N_121InotifyReaderCallbackEPNS1_13InotifyReaderEii
4080 }
4081 {
4082    bug_146464
4083    Memcheck:Leak
4084    fun:realloc
4085    fun:add_codeset.isra.10
4086    ...
4087    fun:XCreatePixmap
4088    fun:XCreateBitmapFromData
4089    ...
4090    fun:_ZN4aura19RootWindowHostLinuxC1EPNS_22RootWindowHostDelegateERKN3gfx4RectE
4091 }
4092 {
4093    bug_146950
4094    Memcheck:Leak
4095    fun:malloc
4096    fun:get_peer_sock_name
4097    fun:_xcb_get_auth_info
4098    fun:xcb_connect_to_display_with_auth_info
4099    fun:_XConnectXCB
4100    fun:XOpenDisplay
4101    fun:_ZN4base18MessagePumpAuraX1118GetDefaultXDisplayEv
4102 }
4103 {
4104    bug_149734a
4105    Memcheck:Leak
4106    fun:malloc
4107    fun:_ZN3WTF10fastMallocEm
4108    fun:_ZN3WTF16VectorBufferBaseIN7WebCore9AttributeEE14allocateBufferEm
4109    fun:_ZN3WTF12VectorBufferIN7WebCore9AttributeELm4EE14allocateBufferEm
4110    fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE22reserveInitialCapacityEm
4111    fun:_ZN7WebCore20ElementAttributeData13cloneDataFromERKS0_RKNS_7ElementERS3_
4112 }
4113 {
4114    bug_149734b
4115    Memcheck:Leak
4116    fun:malloc
4117    fun:_ZN3WTF10fastMallocEm
4118    fun:_ZN3WTF16VectorBufferBaseIN7WebCore9AttributeEE14allocateBufferEm
4119    fun:_ZN3WTF12VectorBufferIN7WebCore9AttributeELm4EE14allocateBufferEm
4120    fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE15reserveCapacityEm
4121    fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE14expandCapacityEm
4122    fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE14expandCapacityEmPKS2_
4123    fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE14appendSlowCaseIS2_EEvRKT_
4124    fun:_ZN7WebCore20ElementAttributeData12addAttributeERKNS_9AttributeEPNS_7ElementENS_30SynchronizationOfLazyAttributeE
4125 }
4126 {
4127    bug_150995
4128    Memcheck:Leak
4129    fun:_Zna*
4130    fun:_ZN14webkit_support12_GLOBAL__N_113DoLibpngWrite*
4131    fun:_ZN14webkit_support26EncodeWithCompressionLevel*
4132    fun:_ZN14webkit_support6EncodeEPKhNS_12_GLOBAL__N_111ColorFormat*
4133    fun:_ZN14webkit_support25EncodeBGRAPNGWithChecksum*
4134    fun:_ZNK9TestShell9dumpImageEP8SkCanvas
4135    fun:_ZN9TestShell4dumpEv
4136    fun:_ZN9TestShell12testFinishedEP11WebViewHost
4137    fun:_ZN11WebViewHost12testFinishedEv
4138    fun:_ZN13WebTestRunner10TestRunner9WorkQueue15processWorkSoonEv
4139 }
4140 {
4141    bug_151006
4142    Memcheck:Leak
4143    fun:malloc
4144    fun:uprv_malloc_46
4145    fun:_ZN6icu_467UMemorynwEm
4146    fun:_ZN6icu_4610DateFormat6createENS0_6EStyleES1_RKNS_6LocaleE
4147    fun:_ZN6icu_4610DateFormat22createDateTimeInstanceENS0_6EStyleES1_RKNS_6LocaleE
4148    fun:udat_open_46
4149    fun:_ZNK7WebCore9LocaleICU14openDateFormatE16UDateFormatStyleS1_
4150    fun:_ZN7WebCore9LocaleICU24initializeDateTimeFormatEv
4151    fun:_ZN7WebCore9LocaleICU15shortTimeFormatEv
4152    fun:_ZN7WebCore19DateTimeEditElement6layoutERKNS_9StepRangeERKNS_14DateComponentsERNS_9LocalizerE
4153    fun:_ZN7WebCore19DateTimeEditElement13setEmptyValueERKNS_9StepRangeERKNS_14DateComponentsERNS_9LocalizerE
4154    fun:_ZN7WebCore13TimeInputType20updateInnerTextValueEv
4155    fun:_ZN7WebCore13TimeInputType19createShadowSubtreeEv
4156    fun:_ZN7WebCore16HTMLInputElement10updateTypeEv
4157    fun:_ZN7WebCore16HTMLInputElement14parseAttributeERKNS_9AttributeE
4158    fun:_ZN7WebCore7Element16attributeChangedERKNS_9AttributeE
4159    fun:_ZN7WebCore13StyledElement16attributeChangedERKNS_9AttributeE
4160    fun:_ZN7WebCore7Element19parserSetAttributesERKN3WTF6VectorINS_9AttributeELm0EEENS_27FragmentScriptingPermissionE
4161    fun:_ZN7WebCore20HTMLConstructionSite17createHTMLElementEPNS_15AtomicHTMLTokenE
4162    fun:_ZN7WebCore20HTMLConstructionSite28insertSelfClosingHTMLElementEPNS_15AtomicHTMLTokenE
4163    fun:_ZN7WebCore15HTMLTreeBuilder24processStartTagForInBodyEPNS_15AtomicHTMLTokenE
4164    fun:_ZN7WebCore15HTMLTreeBuilder15processStartTagEPNS_15AtomicHTMLTokenE
4165 }
4166 {
4167    bug_151007
4168    Memcheck:Leak
4169    fun:malloc
4170    fun:_ZN3WTF10fastMallocEm
4171    fun:_ZN3WTF10RefCountedIN7WebCore15AtomicHTMLTokenEEnwEm
4172    fun:_ZN7WebCore15AtomicHTMLToken6createERNS_9HTMLTokenE
4173    fun:_ZN7WebCore15HTMLTreeBuilder22constructTreeFromTokenERNS_9HTMLTokenE
4174    fun:_ZN7WebCore18HTMLDocumentParser13pumpTokenizerENS0_15SynchronousModeE
4175    fun:_ZN7WebCore18HTMLDocumentParser23pumpTokenizerIfPossibleENS0_15SynchronousModeE
4176    fun:_ZN7WebCore18HTMLDocumentParser6insertERKNS_15SegmentedStringE
4177    fun:_ZN7WebCore18HTMLDocumentParser21parseDocumentFragmentERKN3WTF6StringEPNS_16DocumentFragmentEPNS_7ElementENS_27FragmentScriptingPermissionE
4178    fun:_ZN7WebCore16DocumentFragment9parseHTMLERKN3WTF6StringEPNS_7ElementENS_27FragmentScriptingPermissionE
4179    fun:_ZN7WebCore31createFragmentForInnerOuterHTMLERKN3WTF6StringEPNS_7ElementENS_27FragmentScriptingPermissionERi
4180    fun:_ZN7WebCore11HTMLElement12setInnerHTMLERKN3WTF6StringERi
4181    fun:_ZN7WebCore21HTMLElementV8InternalL19innerHTMLAttrSetterEN2v85LocalINS1_6StringEEENS2_INS1_5ValueEEERKNS1_12AccessorInfoE
4182    fun:_ZN2v88internal21StoreCallbackPropertyENS0_9ArgumentsEPNS0_7IsolateE
4183    ...
4184    fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
4185 }
4186 {
4187    bug_151908
4188    Memcheck:Leak
4189    fun:_Znw*
4190    ...
4191    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4192    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
4193    fun:_ZN14webkit_support23CreateGraphicsContext3DERKN5blink20WebGraphicsContext3D10AttributesEPNS0_7WebViewE
4194    fun:_ZN11WebViewHost19createOutputSurfaceEv
4195    fun:_ZN5blink11WebViewImpl19createOutputSurfaceEv
4196    fun:_ZN5blink20WebLayerTreeViewImpl19createOutputSurfaceEv
4197 }
4198 {
4199    bug_155404
4200    Memcheck:Uninitialized
4201    fun:_ZN2v88internalL21ProfilerSignalHandlerEiP7siginfoPv
4202    obj:/lib/libpthread-2.11.1.so
4203 }
4204 {
4205    bug_156829
4206    Memcheck:Leak
4207    fun:_Znw*
4208    fun:_ZN7content23AudioInputDeviceManager23EnumerateOnDeviceThread*
4209 }
4210 {
4211    bug_158510
4212    Memcheck:Uninitialized
4213    fun:_ZN7WebCore11RenderTable6layoutEv
4214    ...
4215    fun:_ZN7WebCore11RenderBlock6layoutEv
4216 }
4217 {
4218    bug_158514
4219    Memcheck:Uninitialized
4220    ...
4221    fun:_ZN2v88internal16ProfileGenerator16RecordTickSampleERKNS0_10TickSampleE
4222    fun:_ZN2v88internal23ProfilerEventsProcessor12ProcessTicksEj
4223    fun:_ZN2v88internal23ProfilerEventsProcessor3RunEv
4224    fun:_ZN2v88internalL11ThreadEntryEPv
4225 }
4226 {
4227    bug_159005
4228    Memcheck:Uninitialized
4229    fun:_ZN7WebCore13RenderMarquee18updateMarqueeStyleEv
4230    fun:_ZN7WebCore11RenderLayer12styleChangedENS_15StyleDifferenceEPKNS_11RenderStyleE
4231    fun:_ZN7WebCore22RenderLayerModelObject14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4232    fun:_ZN7WebCore9RenderBox14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4233    fun:_ZN7WebCore11RenderBlock14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4234    fun:_ZN7WebCore12RenderObject8setStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
4235 }
4236 {
4237    bug_160877
4238    Memcheck:Leak
4239    fun:_Znw*
4240    ...
4241    fun:_ZN7content*DummyListenSocketC1Ev
4242    fun:_ZNK7content*DummyListenSocketFactory15CreateAndListenEPN3net18StreamListenSocket8DelegateE
4243    ...
4244    fun:_ZN3net10HttpServerC1ERKNS_25StreamListenSocketFactoryEPNS0_8DelegateE
4245    fun:_ZN7content23DevToolsHttpHandlerImpl4InitEv
4246 }
4247 {
4248    bug_162825
4249    Memcheck:Uninitialized
4250    fun:bcmp
4251    fun:_ZNK3gpu5gles221ShaderTranslatorCache26ShaderTranslatorInitParamsltERKS2_
4252    fun:_ZNKSt4lessIN3gpu5gles221ShaderTranslatorCache26ShaderTranslatorInitParamsEEclERKS3_S6_
4253    ...
4254    fun:*ShaderTranslatorInitParams*
4255    ...
4256    fun:_ZN3gpu5gles216GLES2DecoderImpl26InitializeShaderTranslatorEv
4257 }
4258 {
4259    bug_162828
4260    Memcheck:Leak
4261    fun:malloc
4262    fun:_Z15sk_malloc_flagsmj
4263    fun:_Z15sk_malloc_throwm
4264    fun:_ZN6SkMask10AllocImageEm
4265    fun:_ZL17drawRectsIntoMaskPK6SkRectiP6SkMask
4266    fun:_ZN20SkBlurMaskFilterImpl17filterRectsToNineEPK6SkRectiRK8SkMatrixRK7SkIRectPN12SkMaskFilter9NinePatchE
4267    fun:_ZN12SkMaskFilter10filterPathERK6SkPathRK8SkMatrixRK12SkRasterClipP9SkBounderP9SkBlitterN7SkPaint5StyleE
4268    fun:_ZNK6SkDraw8drawPathERK6SkPathRK7SkPaintPK8SkMatrixb
4269 }
4270 {
4271    bug_163922
4272    Memcheck:Leak
4273    fun:_Znw*
4274    fun:_ZN10extensions16SettingsFrontendC1ERK13scoped_refptrINS_22SettingsStorageFactoryEEP7Profile
4275    fun:_ZN10extensions16SettingsFrontend6CreateEP7Profile
4276    fun:_ZN16ExtensionServiceC1E*
4277    fun:_ZN10extensions19ExtensionSystemImpl6Shared4InitEb
4278    fun:_ZN10extensions19ExtensionSystemImpl21InitForRegularProfileEb
4279    fun:_ZN14ProfileManager22DoFinalInitForServicesEP7Profileb
4280    fun:_ZN14ProfileManager11DoFinalInitEP7Profileb
4281    fun:_ZN14ProfileManager10AddProfileEP7Profile
4282    fun:_ZN14ProfileManager10GetProfileE*
4283 }
4284 {
4285    bug_163924
4286    Memcheck:Leak
4287    fun:_Znw*
4288    fun:_ZN28JSONAsynchronousUnpackerImpl22StartProcessOnIOThreadEN7content13BrowserThread2IDERKSs
4289 }
4290 {
4291    bug_164176
4292    Memcheck:Leak
4293    fun:_Znw*
4294    fun:_ZN18BrowserProcessImpl21PreMainMessageLoopRunEv
4295    fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
4296    fun:_ZN22ChromeBrowserMainParts21PreMainMessageLoopRunEv
4297    fun:_ZN7content15BrowserMainLoop13CreateThreadsEv
4298    fun:_ZN7content21BrowserMainRunnerImpl10InitializeERKNS_18MainFunctionParamsE
4299    fun:_ZN7content11BrowserMainERKNS_18MainFunctionParamsE
4300    fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
4301    fun:_ZN7content21ContentMainRunnerImpl3RunEv
4302    fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
4303    fun:ChromeMain
4304 }
4305 {
4306    bug_164178
4307    Memcheck:Leak
4308    fun:_Znw*
4309    fun:_ZN3net25MultiThreadedCertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_6CRLSetEPNS_16CertVerifyResultERKN4base8CallbackIFviEEEPPvRKNS_11BoundNetLogE
4310    fun:_ZN3net25SingleRequestCertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_6CRLSetEPNS_16CertVerifyResultERKN4base8CallbackIFviEEERKNS_11BoundNetLogE
4311    fun:_ZN3net18SSLClientSocketNSS12DoVerifyCertEi
4312    fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
4313    fun:_ZN3net18SSLClientSocketNSS21OnHandshakeIOCompleteEi
4314 }
4315 {
4316    bug_164179
4317    Memcheck:Leak
4318    fun:_Znw*
4319    ...
4320    fun:_ZN3net10URLFetcher6CreateERK4GURLNS0_11RequestTypeEPNS_18URLFetcherDelegateE
4321    fun:_ZN18WebResourceService10StartFetchEv
4322 }
4323 {
4324    bug_164198
4325    Memcheck:Uninitialized
4326    fun:_ZN7WebCore9RenderBox15paintFillLayersERKNS_9PaintInfoERKNS_5ColorEPKNS_9FillLayerERKNS_10LayoutRectENS_24BackgroundBleedAvoidanceENS_17CompositeOperatorEPNS_12RenderObjectE
4327    ...
4328    fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_11LayoutPointE
4329    fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_11LayoutPointE
4330    fun:_ZN7WebCore11RenderLayer18paintLayerContentsEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
4331    fun:_ZN7WebCore11RenderLayer31paintLayerContentsAndReflectionEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
4332    fun:_ZN7WebCore11RenderLayer10paintLayerEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
4333    fun:_ZN7WebCore11RenderLayer9paintListEPN3WTF6VectorIPS0_Lm0EEEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
4334    fun:_ZN7WebCore11RenderLayer18paintLayerContentsEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
4335    fun:_ZN7WebCore11RenderLayer31paintLayerContentsAndReflectionEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
4336    fun:_ZN7WebCore11RenderLayer10paintLayerEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
4337 }
4338 {
4339    bug_166470
4340    Memcheck:Leak
4341    fun:_Znw*
4342    fun:_ZN4base4BindIMN11dom_storage17DomStorageContextEFvRK4GURLE13scoped_refptrIS2_ES3_EENS_8CallbackINS_8internal9BindStateINSB_13FunctorTraitsIT_E12RunnableTypeENSF_7RunTypeEFvNSB_19CallbackParamTraitsIT0_E11StorageTypeENSI_IT1_E11StorageTypeEEE14UnboundRunTypeEEESE_RKSJ_RKSM_
4343    fun:_ZN7content21DOMStorageContextImpl18DeleteLocalStorageERK4GURL
4344   ...
4345    fun:_ZN10extensions11DataDeleter13StartDeletingEP7ProfileRKSsRK4GURL
4346    fun:_ZN16ExtensionService18UninstallExtensionESsbPSbItN4base20string16_char_traitsESaItEE
4347 }
4348 {
4349    bug_166470c
4350    Memcheck:Leak
4351    fun:_Znw*
4352    fun:_ZN11dom_storage19DomStorageNamespace24DeleteLocalStorageOriginERK4GURL
4353    fun:_ZN11dom_storage17DomStorageContext18DeleteLocalStorageERK4GURL
4354 }
4355 {
4356    bug_166470d
4357    Memcheck:Leak
4358    ...
4359    fun:_ZN7fileapi26GetOriginIdentifierFromURLERK4GURL
4360    fun:_ZN11dom_storage14DomStorageArea26DatabaseFileNameFromOriginERK4GURL
4361    fun:_ZN11dom_storage14DomStorageAreaC1E*
4362    fun:_ZN11dom_storage19DomStorageNamespace24DeleteLocalStorageOriginERK4GURL
4363    fun:_ZN11dom_storage17DomStorageContext18DeleteLocalStorageERK4GURL
4364 }
4365 {
4366    bug_166709
4367    Memcheck:Leak
4368    fun:_Znw*
4369    fun:_ZN4base4BindIMNS_12_GLOBAL__N_121PostTaskAndReplyRelayEFvvENS_8internal17UnretainedWrapper*
4370    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8Location*
4371    ...
4372    fun:_ZN16ExtensionService12AddExtensionEPKN10extensions9ExtensionE
4373    fun:_ZN52BackgroundApplicationListModelTest_ExplicitTest_Test8TestBodyEv
4374 }
4375 {
4376    bug_166709b
4377    Memcheck:Leak
4378    fun:_Znw*
4379    fun:_ZN4base12_GLOBAL__N_112CreateThreadEmbPNS_14PlatformThread8DelegateEPmNS_14ThreadPriorityE
4380    fun:_ZN4base14PlatformThread6CreateEmPNS0_8DelegateEPm
4381    fun:_ZN4base12SimpleThread5StartEv
4382    fun:_ZN4base19SequencedWorkerPool6WorkerC1ERK13scoped_refptrIS0_EiRKSs
4383    fun:_ZN4base19SequencedWorkerPool5Inner30FinishStartingAdditionalThreadEi
4384    fun:_ZN4base19SequencedWorkerPool5Inner10ThreadLoopEPNS0_6WorkerE
4385    fun:_ZN4base19SequencedWorkerPool6Worker3RunEv
4386    fun:_ZN4base12SimpleThread10ThreadMainEv
4387    fun:_ZN4base12_GLOBAL__N_110ThreadFuncEPv
4388 }
4389 {
4390    bug_166709c
4391    Memcheck:Leak
4392    fun:_Znw*
4393    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
4394    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
4395    fun:_ZN7content13BrowserThread28PostBlockingPoolTaskAndReplyERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESA_
4396    fun:_ZN10extensions11ImageLoader15LoadImagesAsyncEPKNS_9ExtensionERKSt6vectorINS0_19ImageRepresentationESaIS5_EERKN4base8CallbackIFvRKN3gfx5ImageEEEE
4397 }
4398 {
4399    bug_166818
4400    Memcheck:Leak
4401    fun:malloc
4402    fun:g_malloc
4403    ...
4404    fun:gdk_pixbuf_loader_load_module
4405    fun:gdk_pixbuf_loader_close
4406    fun:_ZN2ui12_GLOBAL__N_110LoadPixbufEPN4base22RefCountedStaticMemoryEb
4407    fun:_ZN2ui14ResourceBundle19GetNativeImageNamedEiNS0_8ImageRTLE
4408    fun:_ZN2ui14ResourceBundle19GetNativeImageNamedEi
4409 }
4410 {
4411    bug_166819
4412    Memcheck:Leak
4413    fun:_Znw*
4414    fun:_ZNK3sql10Connection21GetUntrackedStatementEPKc
4415    fun:_ZNK3sql10Connection21DoesTableOrIndexExistEPKcS2_
4416    fun:_ZNK3sql10Connection14DoesTableExistEPKc
4417    fun:_ZN3sql9MetaTable14DoesTableExistEPNS_10ConnectionE
4418    ...
4419    fun:_ZN7history16TopSitesDatabase4InitE*
4420    fun:_ZN7history15TopSitesBackend16InitDBOnDBThreadE*
4421 }
4422 {
4423    bug_166819b
4424    Memcheck:Leak
4425    fun:_Znw*
4426    fun:_ZNK3sql10Connection21GetUntrackedStatementEPKc
4427    fun:_ZNK3sql10Connection21DoesTableOrIndexExistEPKcS2_
4428    fun:_ZNK3sql10Connection14DoesTableExistEPKc
4429    fun:_ZN7history17ShortcutsDatabase11EnsureTableEv
4430    fun:_ZN7history17ShortcutsDatabase4InitEv
4431    fun:_ZN7history16ShortcutsBackend12InitInternalEv
4432 }
4433 {
4434    bug_166976a
4435    Memcheck:Leak
4436    fun:_Znw*
4437    fun:_ZN4base19SequencedWorkerPool5Inner30FinishStartingAdditionalThreadEi
4438    fun:_ZN4base19SequencedWorkerPool5Inner10ThreadLoopEPNS0_6WorkerE
4439    fun:_ZN4base19SequencedWorkerPool6Worker3RunEv
4440    fun:_ZN4base12SimpleThread10ThreadMainEv
4441    fun:_ZN4base12_GLOBAL__N_110ThreadFuncEPv
4442 }
4443 {
4444    bug_166976b
4445    Memcheck:Leak
4446    fun:_Znw*
4447    fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN4base13WaitableEvent6WaiterEEE8allocateEmPKv
4448    fun:_ZNSt10_List_baseIPN4base13WaitableEvent6WaiterESaIS3_EE11_M_get_nodeEv
4449    fun:_ZNSt4listIPN4base13WaitableEvent6WaiterESaIS3_EE14_M_create_nodeERKS3_
4450    fun:_ZNSt4listIPN4base13WaitableEvent6WaiterESaIS3_EE9_M_insertESt14_List_iteratorIS3_ERKS3_
4451    fun:_ZNSt4listIPN4base13WaitableEvent6WaiterESaIS3_EE9push_backERKS3_
4452    fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
4453    fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
4454    fun:_ZN4base13WaitableEvent4WaitEv
4455    ...
4456    fun:_ZN4base19SequencedWorkerPool6WorkerC1ERK13scoped_refptrIS0_EiRKSs
4457    fun:_ZN4base19SequencedWorkerPool5Inner30FinishStartingAdditionalThreadEi
4458    fun:_ZN4base19SequencedWorkerPool5Inner10ThreadLoopEPNS0_6WorkerE
4459    fun:_ZN4base19SequencedWorkerPool6Worker3RunEv
4460 }
4461 {
4462    bug_167175a
4463    Memcheck:Leak
4464    ...
4465    fun:g_*
4466    ...
4467    fun:_ZN16BrowserWindowGtk11InitWidgetsEv
4468    fun:_ZN16BrowserWindowGtk4InitEv
4469    fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
4470 }
4471 {
4472    bug_167175b
4473    Memcheck:Leak
4474    fun:malloc
4475    obj:/lib/libpng12.so.0.42.0
4476    fun:png_create_read_struct_2
4477    ...
4478    fun:_ZN15ReloadButtonGtkC1EP18LocationBarViewGtkP7Browser
4479    fun:_ZN17BrowserToolbarGtk4InitEP10_GtkWindow
4480    fun:_ZN16BrowserWindowGtk11InitWidgetsEv
4481    fun:_ZN16BrowserWindowGtk4InitEv
4482    fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
4483 }
4484 {
4485    bug_167175d
4486    Memcheck:Leak
4487    fun:_Znw*
4488    fun:_ZN9__gnu_cxx13new_allocatorISbItN4base20string16_char_traitsESaItEEE8allocateEmPKv
4489    fun:_ZNSt12_Vector_baseISbItN4base20string16_char_traitsESaItEESaIS3_EE11_M_allocateEm
4490    ...
4491    fun:_ZN15WrenchMenuModel5BuildEbb
4492    fun:_ZN15WrenchMenuModelC1EPN2ui19AcceleratorProviderEP7Browserbb
4493    fun:_ZN17BrowserToolbarGtkC1EP7BrowserP16BrowserWindowGtk
4494    fun:_ZN16BrowserWindowGtk11InitWidgetsEv
4495    fun:_ZN16BrowserWindowGtk4InitEv
4496    fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
4497 }
4498 {
4499    bug_170340
4500    Memcheck:Uninitialized
4501    fun:_ZN3WTF12AtomicString3addEPKt
4502    fun:_ZN3WTF12AtomicStringC1EPKt
4503    fun:_ZN7WebCore18HTMLPreloadScanner12processTokenEv
4504    fun:_ZN7WebCore18HTMLPreloadScanner4scanEv
4505    fun:_ZN7WebCore18HTMLDocumentParser13pumpTokenizerENS0_15SynchronousModeE
4506    fun:_ZN7WebCore18HTMLDocumentParser23pumpTokenizerIfPossibleENS0_15SynchronousModeE
4507    fun:_ZN7WebCore18HTMLDocumentParser6appendERKNS_15SegmentedStringE
4508    fun:_ZN7WebCore25DecodedDataDocumentParser5flushEPNS_14DocumentWriterE
4509    fun:_ZN7WebCore14DocumentWriter3endEv
4510    fun:_ZN7WebCore14DocumentLoader15finishedLoadingEv
4511 }
4512 {
4513    bug_171722
4514    Memcheck:Leak
4515    fun:_Znw*
4516    fun:_ZN3net12_GLOBAL__N_120URLRequestFtpJobTest9AddSocketEPNS_13MockReadWriteILNS_17MockReadWriteTypeE0EEEmPNS2_ILS3_1EEEm
4517 }
4518 {
4519    bug_172005
4520    Memcheck:Leak
4521    fun:_Znw*
4522    fun:_ZN7leveldb10VersionSet11LogAndApplyEPNS_11VersionEditEPNS_4port5MutexE
4523    fun:_ZN7leveldb2DB4OpenERKNS_7OptionsERKSsPPS0_
4524    fun:_ZN11dom_storage22SessionStorageDatabase9TryToOpenEPPN7leveldb2DBE
4525    fun:_ZN11dom_storage22SessionStorageDatabase8LazyOpenEb
4526    fun:_ZN11dom_storage22SessionStorageDatabase24ReadNamespacesAndOriginsEPSt3mapISsSt6vectorI4GURLSaIS3_EESt4lessISsESaISt4pairIKSsS5_EEE
4527    fun:_ZN11dom_storage17DomStorageContext36FindUnusedNamespacesInCommitSequenceERKSt3setISsSt4lessISsESaISsEES7_
4528 }
4529 {
4530    bug_172005b
4531    Memcheck:Leak
4532    fun:_Znw*
4533    fun:_ZN7leveldb6DBImplC1ERKNS_7OptionsERKSs
4534    fun:_ZN7leveldb2DB4OpenERKNS_7OptionsERKSsPPS0_
4535    fun:_ZN11dom_storage22SessionStorageDatabase9TryToOpenEPPN7leveldb2DBE
4536    fun:_ZN11dom_storage22SessionStorageDatabase8LazyOpenEb
4537    fun:_ZN11dom_storage22SessionStorageDatabase24ReadNamespacesAndOriginsEPSt3mapISsSt6vectorI4GURLSaIS3_EESt4lessISsESaISt4pairIKSsS5_EEE
4538    fun:_ZN11dom_storage17DomStorageContext36FindUnusedNamespacesInCommitSequenceERKSt3setISsSt4lessISsESaISsEES7_
4539 }
4540 {
4541    bug_172025
4542    Memcheck:Uninitialized
4543    fun:_ZN11WebViewHost19didCreateDataSourceEPN5blink8WebFrameEPNS0_13WebDataSourceE
4544    fun:_ZN5blink21FrameLoaderClientImpl20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
4545    fun:_ZN7WebCore11FrameLoader4initEv
4546    fun:_ZN7WebCore5Frame4initEv
4547    fun:_ZN5blink12WebFrameImpl21initializeAsMainFrameEPN7WebCore4PageE
4548    fun:_ZN5blink11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
4549    fun:_ZN9TestShell15createNewWindowERKN5blink6WebURLEP16DRTDevToolsAgentPN13WebTestRunner17WebTestInterfacesE
4550    fun:_ZN9TestShell16createMainWindowEv
4551    fun:_ZN9TestShell10initializeEv
4552 }
4553 {
4554    bug_173096
4555    Memcheck:Uninitialized
4556    fun:bcmp
4557    fun:_ZN2cc19LayerTreeDebugState5equalERKS0_S2_
4558    fun:_ZN2cc13LayerTreeHost13setDebugStateERKNS_19LayerTreeDebugStateE
4559    fun:_ZN5blink20WebLayerTreeViewImpl*set*
4560    fun:_ZN5blink11WebViewImpl33setIsAcceleratedCompositingActiveEb
4561    fun:_ZN5blink11WebViewImpl20setRootGraphicsLayerEPN7WebCore13GraphicsLayerE
4562    fun:_ZN5blink16ChromeClientImpl23attachRootGraphicsLayerEPN7WebCore5FrameEPNS1_13GraphicsLayerE
4563    fun:_ZN7WebCore21RenderLayerCompositor15attachRootLayerENS0_19RootLayerAttachmentE
4564    fun:_ZN7WebCore21RenderLayerCompositor15ensureRootLayerEv
4565    fun:_ZN7WebCore21RenderLayerCompositor21enableCompositingModeEb
4566    fun:_ZN7WebCore21RenderLayerCompositor13updateBackingEPNS_11RenderLayerENS0_24CompositingChangeRepaintE
4567    fun:_ZN7WebCore21RenderLayerCompositor27updateLayerCompositingStateEPNS_11RenderLayerENS0_24CompositingChangeRepaintE
4568    fun:_ZN7WebCore11RenderLayer12styleChangedENS_15StyleDifferenceEPKNS_11RenderStyleE
4569    fun:_ZN7WebCore22RenderLayerModelObject14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4570    fun:_ZN7WebCore9RenderBox14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4571 }
4572 {
4573    bug_175100
4574    Memcheck:Leak
4575    ...
4576    fun:_ZN20OneClickSigninHelper14DidStopLoadingEPN7content14RenderViewHostE
4577    fun:_ZN*OneClickSigninHelperTest*
4578 }
4579 {
4580    bug_175815
4581    Memcheck:Leak
4582    fun:_Znw*
4583    fun:_ZN4base5Value18CreateIntegerValueEi
4584    fun:_ZNK4base16FundamentalValue8DeepCopyEv
4585    fun:_ZN4base8internal12_GLOBAL__N_125DictionaryHiddenRootValue26RemoveWithoutPathExpansionERKSsPPNS_5ValueE
4586    fun:_ZN4base15DictionaryValue6RemoveERKSsPPNS_5ValueE
4587    fun:_ZN32PluginFinderTest_JsonSyntax_Test8TestBodyEv
4588 }
4589 {
4590    bug_175823
4591    Memcheck:Leak
4592    ...
4593    fun:_ZN18ValueStoreFrontend*
4594 }
4595 {
4596     bug_175985
4597     Memcheck:Uninitialized
4598     fun:_ZN2cc13LayerTreeHost13setDebugStateERKNS_19LayerTreeDebugStateE
4599     ...
4600     fun:_ZN5blink20WebLayerTreeViewImpl*
4601 }
4602 {
4603    bug_176270
4604    Memcheck:Uninitialized
4605    fun:_ZNK2cc19LayerTreeDebugState20recordRenderingStatsEv
4606 }
4607 {
4608    bug_176616_a
4609    Memcheck:Uninitialized
4610    fun:_ZN13WebTestRunner16WebTestProxyBase19didCreateDataSourceEPN5blink8WebFrameEPNS1_13WebDataSourceE
4611    fun:_ZN13WebTestRunner12WebTestProxyI11WebViewHostP9TestShellE19didCreateDataSourceEPN5blink8WebFrameEPNS5_13WebDataSourceE
4612    fun:_ZN5blink21FrameLoaderClientImpl20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
4613    fun:_ZN7WebCore11FrameLoader4initEv
4614    fun:_ZN7WebCore5Frame4initEv
4615    fun:_ZN5blink12WebFrameImpl21initializeAsMainFrameEPN7WebCore4PageE
4616    fun:_ZN5blink11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
4617    fun:_ZN9TestShell15createNewWindowERKN5blink6WebURLEP16DRTDevToolsAgentPN13WebTestRunner17WebTestInterfacesE
4618    fun:_ZN9TestShell16createMainWindowEv
4619    fun:_ZN9TestShell10initializeEP25MockWebKitPlatformSupport
4620 }
4621 {
4622    bug_176616_b
4623    Memcheck:Uninitialized
4624    fun:_ZN13WebTestRunner10TestRunner5resetEv
4625    fun:_ZN13WebTestRunner14TestInterfaces8resetAllEv
4626    fun:_ZN13WebTestRunner17WebTestInterfaces8resetAllEv
4627    fun:_ZN9TestShell19resetTestControllerEv
4628    fun:_ZL7runTestR9TestShellR10TestParamsRKSsb
4629 }
4630 {
4631    bug_176619_a
4632    Memcheck:Uninitialized
4633    fun:_ZN3WTF6StringC1EPKt
4634    fun:_ZN7WebCore12WebVTTParser22constructTreeFromTokenEPNS_8DocumentE
4635    fun:_ZN7WebCore12WebVTTParser33createDocumentFragmentFromCueTextERKN3WTF6StringE
4636    fun:_ZN7WebCore12TextTrackCue20createWebVTTNodeTreeEv
4637    fun:_ZN7WebCore12TextTrackCue22createCueRenderingTreeEv
4638    fun:_ZN7WebCore12TextTrackCue17updateDisplayTreeEf
4639 }
4640 {
4641    bug_176619_b
4642    Memcheck:Uninitialized
4643    fun:_ZN7WebCore12WebVTTParser13collectDigitsERKN3WTF6StringEPj
4644    fun:_ZN7WebCore12WebVTTParser16collectTimeStampERKN3WTF6StringEPj
4645    fun:_ZN7WebCore12WebVTTParser22constructTreeFromTokenEPNS_8DocumentE
4646    fun:_ZN7WebCore12WebVTTParser33createDocumentFragmentFromCueTextERKN3WTF6StringE
4647    fun:_ZN7WebCore12TextTrackCue20createWebVTTNodeTreeEv
4648    fun:_ZN7WebCore12TextTrackCue22createCueRenderingTreeEv
4649    fun:_ZN7WebCore12TextTrackCue17updateDisplayTreeEf
4650 }
4651 {
4652    bug_176621
4653    Memcheck:Leak
4654    fun:_Znw*
4655    fun:_ZN13WebTestRunner10TestPlugin6createEPN5blink8WebFrameERKNS1_15WebPluginParamsEPNS_15WebTestDelegateE
4656    fun:_ZN13WebTestRunner16WebTestProxyBase12createPluginEPN5blink8WebFrameERKNS1_15WebPluginParamsE
4657    fun:_ZN13WebTestRunner12WebTestProxyI11WebViewHostP9TestShellE12createPluginEPN5blink8WebFrameERKNS5_15WebPluginParamsE
4658    fun:_ZN5blink21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6String*
4659    fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7*
4660 }
4661 {
4662    bug_176888
4663    Memcheck:Leak
4664    fun:malloc
4665    fun:strdup
4666    fun:p11_kit_registered_module_to_name
4667    fun:gnutls_pkcs11_init
4668    fun:gnutls_global_init
4669    fun:_ZN12_GLOBAL__N_117GcryptInitializer4InitEv
4670    fun:_ZN12_GLOBAL__N_117GcryptInitializerC*
4671    fun:_ZN4base25DefaultLazyInstanceTraitsIN12_GLOBAL__N_117GcryptInitializerEE3NewEPv
4672 }
4673 {
4674    bug_176889_a
4675    Memcheck:Uninitialized
4676    fun:inflateReset2
4677    fun:inflateInit2_
4678    fun:png_create_read_struct_2
4679    obj:/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
4680    obj:/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.2600.1
4681    fun:gdk_pixbuf_loader*
4682 }
4683 {
4684    bug_176889_b
4685    Memcheck:Uninitialized
4686    fun:sse2_composite_over_8888_8888
4687    ...
4688    fun:gdk_pixbuf_loader_close
4689 }
4690 {
4691    bug_176889_c
4692    Memcheck:Uninitialized
4693    fun:sse2_combine_over_u
4694    ...
4695    fun:gdk_pixbuf_loader_close
4696 }
4697 {
4698    bug_176889_d
4699    Memcheck:Uninitialized
4700    obj:*/librsvg-2.so*
4701    fun:rsvg_handle_get_pixbuf_sub
4702    obj:*/libpixbufloader-svg.so
4703    fun:gdk_pixbuf_loader_close
4704 }
4705 {
4706    bug_176889_e
4707    Memcheck:Uninitialized
4708    fun:gdk_pixbuf_saturate_and_pixelate
4709 }
4710 {
4711    bug_176889_f
4712    Memcheck:Uninitialized
4713    fun:cache_magic_matchlet_compare
4714    fun:__gio_xdg_cache_get_mime_type_for_data
4715    fun:g_content_type_guess
4716    obj:/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.2600.1
4717    obj:/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.2600.1
4718    fun:gdk_pixbuf_loader_close
4719 }
4720 {
4721    bug_176891a
4722    Memcheck:Leak
4723    fun:calloc
4724    fun:nss_ZAlloc
4725    fun:nssCryptokiObject_Create
4726    fun:create_objects_from_handles
4727    fun:find_objects
4728    fun:find_objects_by_template
4729    fun:nssToken_FindCertificateByEncodedCertificate
4730    fun:PK11_FindCertFromDERCertItem
4731    fun:_ZN24mozilla_security_manager12_GLOBAL__N_125nsPKCS12Blob_ImportHelper*
4732 }
4733 {
4734    bug_176891b
4735    Memcheck:Leak
4736    ...
4737    fun:nssPKIObject_Create
4738    fun:nssTrustDomain_FindTrustForCertificate
4739    fun:STAN_DeleteCertTrustMatchingSlot
4740    fun:SEC_DeletePermCertificate
4741    ...
4742    fun:_ZN3net15NSSCertDatabase16DeleteCertAndKeyEPKNS_15X509CertificateE
4743 }
4744 {
4745    bug_177213
4746    Memcheck:Leak
4747    ...
4748    fun:_ZN10extensionsL9SerializeERKSt6vectorINS_10UserScriptESaIS1_EE
4749 }
4750 {
4751    bug_179758_a
4752    Memcheck:Leak
4753    fun:_Znw*
4754    fun:_ZN4base54WeakPtrTest_NonOwnerThreadCanCopyAndAssignWeakPtr_Test8TestBodyEv
4755 }
4756 {
4757    bug_179758_b
4758    Memcheck:Leak
4759    fun:_Znw*
4760    fun:_ZN4base58WeakPtrTest_NonOwnerThreadCanCopyAndAssignWeakPtrBase_Test8TestBodyEv
4761 }
4762 {
4763    bug_180381
4764    Memcheck:Leak
4765    fun:_Znw*
4766    ...
4767    fun:_ZN4base8FilePath31StripTrailingSeparatorsInternalEv
4768    fun:_ZNK4base8FilePath7DirNameEv
4769    fun:_ZN11dom_storage18DomStorageDatabase18GetJournalFilePathERKN4base8FilePathE
4770    fun:_ZN11dom_storage27LocalStorageDatabaseAdapter11DeleteFilesEv
4771    fun:_ZN11dom_storage14DomStorageArea12DeleteOriginEv
4772    fun:_ZN11dom_storage19DomStorageNamespace24DeleteLocalStorageOriginERK4GURL
4773    fun:_ZN11dom_storage17DomStorageContext18DeleteLocalStorageERK4GURL
4774 }
4775 {
4776    bug_181082
4777    Memcheck:Leak
4778    fun:_Znw*
4779    fun:_ZN12_GLOBAL__N_124ResourceLoaderBridgeImpl5StartEPN11webkit_glue20ResourceLoaderBridge4PeerE
4780    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN5blink13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
4781    fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN5blink13WebURLRequestEPNS1_18WebURLLoaderClientE
4782    fun:_ZN7WebCore22ResourceHandleInternal5start*
4783    ...
4784    fun:_ZN7WebCore14CachedResource4loadEPNS_20CachedResourceLoaderERKNS_21ResourceLoaderOptionsE
4785    fun:_ZN7WebCore20CachedResourceLoader15requestResourceENS_14CachedResource4TypeERNS_21CachedResourceRequestE
4786 }
4787 {
4788    bug_181680
4789    Memcheck:Leak
4790    fun:_Znw*
4791    fun:_ZN7WebCore11ScriptState10forContextEN2v85LocalINS1_7ContextEEE
4792    fun:_ZN7WebCore17ScriptDebugServer12breakProgramEN2v86HandleINS1_6ObjectEEENS2_INS1_5ValueEEE
4793    fun:_ZN7WebCore17ScriptDebugServer18handleV8DebugEventERKN2v85Debug12EventDetailsE
4794    fun:_ZN7WebCore17ScriptDebugServer20v8DebugEventCallbackERKN2v85Debug12EventDetailsE
4795    fun:_ZN2v88internal8Debugger18CallCEventCallbackENS_10DebugEventENS0_6HandleINS0_6ObjectEEES5_PNS_5Debug10ClientDataE
4796 }
4797 {
4798    bug_181680b
4799    Memcheck:Leak
4800    fun:_Znw*
4801    fun:_ZN7WebCore11ScriptState10forContextEN2v86HandleINS1_7ContextEEE
4802    fun:_ZN7WebCore17ScriptDebugServer18handleProgramBreakEN2v86HandleINS1_6ObjectEEENS2_INS1_5ValueEEENS2_INS1_5ArrayEEE
4803 }
4804 {
4805    bug_184264
4806    Memcheck:Leak
4807    fun:_Znw*
4808    fun:_ZN7WebCore24createDragImageFromImageEPNS_5ImageENS_27RespectImageOrientationEnumE
4809    fun:_ZN7WebCore5Frame21dragImageForSelectionEv
4810    fun:_ZN7WebCore27createDragImageForSelectionEPNS_5FrameE
4811    fun:_ZN7WebCore14DragController9startDragEPNS_5FrameERKNS_9DragStateENS_13DragOperationERKNS_18PlatformMouseEventERKNS_8IntPointE
4812    fun:_ZN7WebCore12EventHandler10handleDragERKNS_28MouseEventWithHitTestResultsENS_19CheckDragHysteresisE
4813    fun:_ZN7WebCore12EventHandler23handleMouseDraggedEventERKNS_28MouseEventWithHitTestResultsE
4814    fun:_ZN7WebCore12EventHandler20handleMouseMoveEventERKNS_18PlatformMouseEventEPNS_13HitTestResultEb
4815    fun:_ZN7WebCore12EventHandler28passMouseMoveEventToSubframeERNS_28MouseEventWithHitTestResultsEPNS_5FrameEPNS_13HitTestResultE
4816    fun:_ZN7WebCore12EventHandler20handleMouseMoveEventERKNS_18PlatformMouseEventEPNS_13HitTestResultEb
4817    fun:_ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventE
4818 }
4819 {
4820    bug_195160_a
4821    Memcheck:Leak
4822    fun:_Znw*
4823    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIiEE8allocateEmPKv
4824    fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE11_M_get_nodeEv
4825    fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE14_M_create_nodeERKi
4826    fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKi
4827    fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE16_M_insert_uniqueERKi
4828    fun:_ZNSt3setIiSt4lessIiESaIiEE6insertERKi
4829    fun:_ZN10extensions10URLMatcher14UpdateTriggersEv
4830    fun:_ZN10extensions10URLMatcher28UpdateInternalDatastructuresEv
4831    fun:_ZN10extensions10URLMatcher16AddConditionSetsERKSt6vectorI13scoped_refptrINS_22URLMatcherConditionSetEESaIS4_EE
4832    fun:_ZN12_GLOBAL__N_113FilterBuilder5BuildEv
4833    fun:_ZN12_GLOBAL__N_134LoadWhitelistsOnBlockingPoolThreadE12ScopedVectorI19ManagedModeSiteListE
4834 }
4835 {
4836    bug_195160_b
4837    Memcheck:Leak
4838    fun:_Znw*
4839    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIPN10extensions13StringPatternEEE8allocateEmPKv
4840    fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE11_M_get_nodeEv
4841    fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE14_M_create_nodeERKS2_
4842    fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS2_
4843    fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE16_M_insert_uniqueERKS2_
4844    fun:_ZNSt3setIPN10extensions13StringPatternENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE6insertERKS2_
4845    fun:_ZN10extensions26URLMatcherConditionFactory15CreateConditionENS_19URLMatcherCondition9CriterionERKSs
4846    fun:_ZN10extensions26URLMatcherConditionFactory35CreateHostSuffixPathPrefixConditionERKSsS2_
4847    fun:_ZN6policy12URLBlacklist18CreateConditionSetEPN10extensions10URLMatcherEiRKSsS5_btS5_
4848    fun:_ZN12_GLOBAL__N_113FilterBuilder10AddPatternERKSsi
4849    fun:_ZN12_GLOBAL__N_113FilterBuilder11AddSiteListEP19ManagedModeSiteList
4850    fun:_ZN12_GLOBAL__N_134LoadWhitelistsOnBlockingPoolThreadE12ScopedVectorI19ManagedModeSiteListE
4851 }
4852 {
4853    bug_195160_c
4854    Memcheck:Leak
4855    fun:_Znw*
4856    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
4857    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
4858    fun:_ZN4base26PostTaskAndReplyWithResultI10scoped_ptrIN20ManagedModeURLFilter8ContentsENS_14DefaultDeleterIS3_EEES6_EEbPNS_10TaskRunnerERKN15tracked_objects8LocationERKNS_8CallbackIFT_vEEERKNSD_IFvT0_EEE
4859    fun:_ZN20ManagedModeURLFilter14LoadWhitelistsE12ScopedVectorI19ManagedModeSiteListE
4860 }
4861 {
4862    bug_222363
4863    Memcheck:Leak
4864    fun:_Znw*
4865    fun:_ZN18WebDatabaseService12LoadDatabaseERKN4base8CallbackIFvN3sql10InitStatusEEEE
4866 }
4867 {
4868    bug_222876
4869    Memcheck:Leak
4870    fun:_Znw*
4871    fun:_ZN21WebDataServiceWrapperC1EP7Profile
4872    fun:_ZNK21WebDataServiceFactory23BuildServiceInstanceForEPN7content14BrowserContextE
4873    fun:_ZN33BrowserContextKeyedServiceFactory27GetServiceForBrowserContextEPN7content14BrowserContextEb
4874    fun:_ZN21WebDataServiceFactory13GetForProfileEP7ProfileNS0_17ServiceAccessTypeE
4875    ...
4876    fun:_ZN12TokenService10InitializeEPKcP7Profile
4877 }
4878 {
4879    bug_222880
4880    Memcheck:Leak
4881    fun:malloc
4882    fun:_ZN3WTF10fastMallocEm
4883    fun:_ZN3WTF16VectorBufferBaseINS_6RefPtrIN7WebCore7ArchiveEEEE14allocateBufferEm
4884    ...
4885    fun:_ZN7WebCore7Archive18addSubframeArchiveEN3WTF10PassRefPtrIS0_EE
4886    fun:_ZN7WebCore11MHTMLParser22parseArchiveWithHeaderEPNS_10MIMEHeaderE
4887    fun:_ZN7WebCore11MHTMLParser12parseArchiveEv
4888    fun:_ZN7WebCore12MHTMLArchive6createERKNS_4KURLEPNS_12SharedBufferE
4889 }
4890 {
4891    bug_222883
4892    Memcheck:Uninitialized
4893    fun:_ZN2v88internal15ScavengeVisitor15ScavengePointerEPPNS0_6ObjectE.isra.*
4894    fun:_ZN2v88internal15ScavengeVisitor13VisitPointersEPPNS0_6ObjectES4_
4895    fun:_ZNK2v88internal13StandardFrame18IterateExpressionsEPNS0_13ObjectVisitorE
4896    ...
4897    fun:_ZN2v88internal4Heap8ScavengeEv
4898    fun:_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorEPNS0_8GCTracer*
4899 }
4900 {
4901    bug_222887
4902    Memcheck:Leak
4903    fun:_Znw*
4904    fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
4905    fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4906    fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN5blink20WebGraphicsContext3D10AttributesEPS3_
4907    fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN5blink20WebGraphicsContext3D10AttributesE
4908    fun:_ZN7WebCore17GraphicsContext3D6createENS0_10AttributesEPNS_10HostWindowENS0_11RenderStyleE
4909 }
4910 {
4911    bug_222898
4912    Memcheck:Leak
4913    fun:malloc
4914    ...
4915    fun:_ZN3WTF9BitVector13OutOfLineBits6createEm
4916    fun:_ZN3WTF9BitVector15resizeOutOfLineEm
4917    fun:_ZN3WTF9BitVector10ensureSizeEm
4918    fun:_ZN3WTF9BitVectorC1Em
4919    fun:_ZN7WebCore10UseCounter10didObserveENS0_7FeatureE
4920    fun:_ZN7WebCore10UseCounter7observeEPNS_8DocumentENS0_7FeatureE
4921 }
4922 {
4923    bug_224747
4924    Memcheck:Leak
4925    fun:_Znw*
4926    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
4927    ...
4928    fun:_ZN64BackgroundApplicationListModelTest_AddRemovePermissionsTest_Test8TestBodyEv
4929 }
4930 {
4931    bug_225028
4932    Memcheck:Leak
4933    fun:_Znw*
4934    fun:_ZN31SafeBrowsingDatabaseFactoryImpl26CreateSafeBrowsingDatabaseEbbbb
4935    fun:_ZN20SafeBrowsingDatabase6CreateEbbbb
4936    fun:_ZN27SafeBrowsingDatabaseManager11GetDatabaseEv
4937 }
4938 {
4939    bug_225596
4940    Memcheck:Leak
4941    fun:_Znw*
4942    fun:_ZN8chromeos12input_method22InputMethodManagerImpl4InitERK13scoped_refptrIN4base19SequencedTaskRunnerEES7_
4943    fun:_ZN8chromeos12input_method10InitializeERK13scoped_refptrIN4base19SequencedTaskRunnerEES6_
4944    fun:_ZN8chromeos12input_method48InputMethodConfigurationTest_TestInitialize_Test8TestBodyEv
4945 }
4946 {
4947    bug_226254
4948    Memcheck:Leak
4949    fun:_Znw*
4950    fun:_ZN4base4BindIMN10extensions16UserScriptMaster14ScriptReloader*
4951    fun:_ZN10extensions16UserScriptMaster14ScriptReloader9StartLoad*
4952    fun:_ZN10extensions16UserScriptMaster9StartLoadEv
4953    fun:_ZN10extensions16UserScriptMaster7ObserveEiRKN7content18NotificationSourceERKNS1_19NotificationDetailsE
4954 }
4955 {
4956    bug_227278a
4957    Memcheck:Uninitialized
4958    ...
4959    fun:_ZN7content35CompositingIOSurfaceTransformerTest13RunResizeTestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
4960    fun:_ZN7content65CompositingIOSurfaceTransformerTest_ResizesTexturesCorrectly_Test8TestBodyEv
4961 }
4962 {
4963    bug_227278b
4964    Memcheck:Uninitialized
4965    ...
4966    fun:_ZN7content35CompositingIOSurfaceTransformerTest25RunTransformRGBToYV12TestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
4967    fun:_ZN7content60CompositingIOSurfaceTransformerTest_TransformsRGBToYV12_Test8TestBodyEv
4968 }
4969 {
4970    bug_227278c
4971    Memcheck:Uninitialized
4972    fun:BitSetNextSetBit
4973    fun:RegistersReInterfere
4974    fun:RegistersMerge
4975    fun:glpPPShaderLinearizeStreamMgr
4976    fun:glpPPShaderLinearize
4977    fun:glePrepareShaderForEmulation
4978    fun:gleSetVPTransformFuncAll
4979    fun:gleVPRenderQuadsSmooth
4980    fun:gleDrawArraysOrElements_ExecCore
4981    fun:glDrawArrays_Exec
4982    fun:glDrawArrays
4983    fun:_ZN7content12_GLOBAL__N_18DrawQuadEffffbff
4984    fun:_ZN7content31CompositingIOSurfaceTransformer14ResizeBilinearEjRKN3gfx4RectERKNS1_4SizeEPj
4985    fun:_ZN7content35CompositingIOSurfaceTransformerTest13RunResizeTestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
4986    fun:_ZN7content65CompositingIOSurfaceTransformerTest_ResizesTexturesCorrectly_Test8TestBodyEv
4987 }
4988 {
4989    bug_227278d
4990    Memcheck:Uninitialized
4991    fun:glViewport_Exec
4992    fun:glViewport
4993    fun:_ZN7content12_GLOBAL__N_139SetTransformationsForOffScreenRenderingERKN3gfx4SizeE
4994    fun:_ZN7content31CompositingIOSurfaceTransformer18TransformRGBToYV12EjRKN3gfx4RectERKNS1_4SizeEPjS8_S8_PS5_S9_
4995    fun:_ZN7content35CompositingIOSurfaceTransformerTest25RunTransformRGBToYV12TestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
4996    fun:_ZN7content60CompositingIOSurfaceTransformerTest_TransformsRGBToYV12_Test8TestBodyEv
4997 }
4998 {
4999    bug_227278e
5000    Memcheck:Free
5001    fun:_ZdlPv
5002    fun:_ZN12BindingTableD2Ev
5003    fun:_ZN14TGenericLinkerD0Ev
5004    fun:ShDestruct
5005    fun:gleFreeProgramObject
5006    fun:gleUnbindDeleteHashNameAndObject
5007    fun:glDeleteObjectARB_Exec
5008    fun:glDeleteProgram
5009    fun:_ZN7content34CompositingIOSurfaceShaderPrograms5ResetEv
5010    fun:_ZN7content35CompositingIOSurfaceTransformerTestD2Ev
5011    fun:_ZN7content69CompositingIOSurfaceTransformerTest_ShaderProgramsCompileAndLink_TestD2Ev
5012    fun:_ZN7content69CompositingIOSurfaceTransformerTest_ShaderProgramsCompileAndLink_TestD1Ev
5013    fun:_ZN7content69CompositingIOSurfaceTransformerTest_ShaderProgramsCompileAndLink_TestD0Ev
5014    fun:_ZN7testing4Test11DeleteSelf_Ev
5015 }
5016 {
5017    bug_233541
5018    Memcheck:Leak
5019    fun:_Znw*
5020    fun:_ZN22DiskCacheTestWithCache13CreateBackendEjPN4base6ThreadE
5021    fun:_ZN22DiskCacheTestWithCache13InitDiskCacheEv
5022    fun:_ZN22DiskCacheTestWithCache9InitCacheEv
5023    fun:*DiskCacheBackendTest_SimpleDoom*
5024 }
5025 {
5026    bug_234845
5027    Memcheck:Leak
5028    fun:malloc
5029    fun:PORT_Alloc_Util
5030    fun:pk11_CreateSymKey
5031    fun:PK11_KeyGenWithTemplate
5032    fun:pk11_TokenKeyGenWithFlagsAndKeyType
5033    fun:pk11_RawPBEKeyGenWithKeyType
5034    fun:PK11_PBEKeyGen
5035    fun:PK11_ExportEncryptedPrivKeyInfo
5036    fun:_ZN6crypto12ECPrivateKey25ExportEncryptedPrivateKeyERKSsiPSt6vectorIhSaIhEE
5037 }
5038 {
5039    bug_235584
5040    Memcheck:Leak
5041    fun:_Znw*
5042    fun:_ZN4base4Bind*
5043    fun:_ZN3net18SSLClientSocketNSS4Core21OnHandshakeIOCompleteEi
5044    fun:_ZN3net18SSLClientSocketNSS4Core28OnGetDomainBoundCertCompleteEi
5045 }
5046 {
5047    bug_236791
5048    Memcheck:Leak
5049    fun:_Znw*
5050    fun:_ZN3ash4test53FocusCyclerTest_CycleFocusThroughWindowWithPanes_Test8TestBodyEv
5051 }
5052 {
5053    bug_238547
5054    Memcheck:Leak
5055    fun:_Znw*
5056    fun:_ZN9__gnu_cxx13new_allocatorIPN4base11PendingTaskEE8allocateEmPKv
5057    fun:_ZNSt11_Deque_baseIN4base11PendingTaskESaIS1_EE15_M_allocate_mapEm
5058    fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE17_M_reallocate_mapEmb
5059    fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE22_M_reserve_map_at_backEm
5060    fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE16_M_push_back_auxERKS1_
5061    fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE9push_backERKS1_
5062    fun:_ZNSt5queueIN4base11PendingTaskESt5dequeIS1_SaIS1_EEE4pushERKS1_
5063    ...
5064    fun:_ZN4base*MessageLoop*15PostDelayedTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEENS_9TimeDeltaE
5065 }
5066 {
5067    bug_239141
5068    Memcheck:Leak
5069    fun:malloc
5070    ...
5071    fun:_ZN3WTF9BitVector13OutOfLineBits6createEm
5072    fun:_ZN3WTF9BitVector15resizeOutOfLineEm
5073    fun:_ZN3WTF9BitVector10ensureSizeEm
5074    fun:_ZN3WTF9BitVectorC1Em
5075    fun:_ZN7WebCore10UseCounter17recordMeasurementENS0_7FeatureE
5076 }
5077 {
5078    bug_241044
5079    Memcheck:Uninitialized
5080    fun:_ZN7WebCore8Settings29setOpenGLMultisamplingEnabledEb
5081    fun:_ZN5blink15WebSettingsImpl29setOpenGLMultisamplingEnabledEb
5082    fun:_ZN7content19ApplyWebPreferencesERK14WebPreferencesPN5blink7WebViewE
5083    fun:_ZN7content14RenderViewImpl22OnUpdateWebPreferencesERK14WebPreferences
5084    fun:_ZN7content14RenderViewImpl20SetWebkitPreferencesERK14WebPreferences
5085 }
5086 {
5087    bug_241932
5088    Memcheck:Leak
5089    fun:calloc
5090    fun:_ZN3WTF13tryFastCallocEmm
5091    fun:_ZN3WTF9RawBufferC1EjjNS0_20InitializationPolicyE
5092    fun:_ZN3WTF19ArrayBufferContentsC1EjjNS_9RawBuffer20InitializationPolicyE
5093    fun:_ZN3WTF11ArrayBuffer6createEPKvj
5094    fun:_ZN7WebCore12_GLOBAL__N_16Reader17doReadArrayBufferEv
5095    fun:_ZN7WebCore12_GLOBAL__N_16Reader15readArrayBufferEPN2v86HandleINS2_5ValueEEE
5096    fun:_ZN7WebCore12_GLOBAL__N_16Reader4readEPN2v86HandleINS2_5ValueEEERNS0_16CompositeCreatorE
5097    fun:_ZN7WebCore12_GLOBAL__N_112Deserializer13doDeserializeEv
5098    fun:_ZN7WebCore12_GLOBAL__N_112Deserializer11deserializeEv
5099    fun:_ZN7WebCore21SerializedScriptValue11deserializeEPN2v87IsolateEPN3WTF6VectorINS4_6RefPtrINS_11MessagePortEEELm1EEE
5100    fun:_ZN7WebCore14V8MessageEvent20dataAttrGetterCustomEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
5101    fun:_ZN7WebCore22MessageEventV8InternalL22dataAttrGetterCallbackEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
5102 }
5103 {
5104    bug_242672
5105    Memcheck:Leak
5106    fun:malloc
5107    ...
5108    fun:_ZN3WTF9BitVector13OutOfLineBits6createEm
5109    fun:_ZN3WTF9BitVector15resizeOutOfLineEm
5110    fun:_ZN3WTF9BitVector10ensureSizeEm
5111    fun:_ZN7WebCore10UseCounterC1Ev
5112    fun:_ZN7WebCore4PageC1ERNS0_11PageClientsE
5113 }
5114 {
5115    bug_243132
5116    Memcheck:Leak
5117    fun:malloc
5118    fun:_ZN3WTF10fastMallocEm
5119    fun:_ZN3WTF10StringImpl19createUninitializedEjRPh
5120    ...
5121    fun:_ZN7WebCoreL24valueForGridTrackBreadthERKNS_10GridLengthEPKNS_11RenderStyleEPNS_10RenderViewE
5122    fun:_ZN7WebCoreL21valueForGridTrackSizeERKNS_13GridTrackSizeEPKNS_11RenderStyleEPNS_10RenderViewE
5123    fun:_ZN7WebCoreL21valueForGridTrackListERKN3WTF6VectorINS_13GridTrackSizeELm0EEERKNS0_7HashMap*
5124    fun:_ZNK7WebCore27CSSComputedStyleDeclaration19getPropertyCSSValueENS_13CSSPropertyIDENS_13EUpdateLayoutE
5125    fun:_ZNK7WebCore27CSSComputedStyleDeclaration19getPropertyCSSValueENS_13CSSPropertyIDE
5126    fun:_ZNK7WebCore27CSSComputedStyleDeclaration16getPropertyValueENS_13CSSPropertyIDE
5127    fun:_ZN7WebCore27CSSComputedStyleDeclaration16getPropertyValueERKN3WTF6StringE
5128 }
5129 {
5130    bug_243137
5131    Memcheck:Leak
5132    fun:_Znw*
5133    fun:_ZN7WebCore11RenderStyle6createEv
5134    fun:_ZN7WebCore13StyleResolver15styleForElementEPNS_7ElementEPNS_11RenderStyle*
5135    fun:_ZN7WebCore7Element16styleForRendererEv
5136    fun:_ZN7WebCore20NodeRenderingContext32createRendererForElementIfNeededEv
5137    fun:_ZN7WebCore7Element22createRendererIfNeededEv
5138    fun:_ZN7WebCore7Element6attachEv
5139    fun:_ZN7WebCore22HTMLPlugInImageElement6attachEv
5140 }
5141 {
5142    bug_243753
5143    Memcheck:Leak
5144    fun:_Znw*
5145    fun:_ZN7fileapi28SandboxFileSystemBackendTest11GetRootPathERK4GURLNS_14FileSystemTypeEbPN4base8FilePathE
5146 }
5147 {
5148    bug_245714
5149    Memcheck:Leak
5150    fun:_Znw*
5151    fun:_ZN7content17WorkerServiceImplC1Ev
5152    fun:_ZN22DefaultSingletonTraitsIN7content17WorkerServiceImplEE3NewEv
5153    fun:_ZN9SingletonIN7content17WorkerServiceImplE22DefaultSingletonTraitsIS1_ES1_E3getEv
5154    fun:_ZN7content17WorkerServiceImpl11GetInstanceEv
5155    fun:_ZN7content19WorkerMessageFilter16OnChannelClosingEv
5156    fun:_ZN3IPC12ChannelProxy7Context15OnChannelClosedEv
5157 }
5158 {
5159    bug_245714b
5160    Memcheck:Leak
5161    fun:_Znw*
5162    fun:_ZN7content17WorkerServiceImplC1Ev
5163    fun:_ZN22DefaultSingletonTraitsIN7content17WorkerServiceImplEE3NewEv
5164    fun:_ZN9SingletonIN7content17WorkerServiceImplE22DefaultSingletonTraitsIS1_ES1_E3getEv
5165    fun:_ZN7content17WorkerServiceImpl11GetInstanceEv
5166    fun:_ZN7content22ResourceRequestDetailsC1EPKN3net10URLRequestEi
5167    fun:_ZN7content26ResourceDispatcherHostImpl18DidReceiveResponseEPNS_14ResourceLoaderE
5168    fun:_ZN7content14ResourceLoader23CompleteResponseStartedEv
5169    fun:_ZN7content14ResourceLoader17OnResponseStartedEPN3net10URLRequestE
5170    fun:_ZN3net10URLRequest21NotifyResponseStartedEv
5171 }
5172 {
5173    bug_245714c
5174    Memcheck:Leak
5175    fun:_Znw*
5176    fun:_ZN7content17WorkerServiceImplC1Ev
5177    fun:_ZN22DefaultSingletonTraitsIN7content17WorkerServiceImplEE3NewEv
5178    fun:_ZN9SingletonIN7content17WorkerServiceImplE22DefaultSingletonTraitsIS1_ES1_E3getEv
5179    fun:_ZN7content17WorkerServiceImpl11GetInstanceEv
5180    fun:_ZN7content22ResourceRequestDetailsC1EPKN3net10URLRequestEi
5181    fun:_ZN7content23ResourceRedirectDetailsC1EPKN3net10URLRequestEiRK4GURL
5182    fun:_ZN7content26ResourceDispatcherHostImpl18DidReceiveRedirectEPNS_14ResourceLoaderERK4GURL
5183    fun:_ZN7content14ResourceLoader18OnReceivedRedirectEPN3net10URLRequestERK4GURLPb
5184    fun:_ZN3net10URLRequest22NotifyReceivedRedirectERK4GURLPb
5185    fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
5186    fun:_ZN3net17URLRequestHttpJob21NotifyHeadersCompleteEv
5187    fun:_ZN3net17URLRequestHttpJob14SaveNextCookieEv
5188    fun:_ZN3net17URLRequestHttpJob35SaveCookiesAndNotifyHeadersCompleteEi
5189    fun:_ZN3net17URLRequestHttpJob16OnStartCompletedEi
5190 }
5191 {
5192    bug_245828
5193    Memcheck:Leak
5194    fun:_Znw*
5195    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
5196    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
5197    fun:_ZN7content13BrowserThread16PostTaskAndReplyENS0_2IDERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESB_
5198 }
5199 {
5200    bug_245866
5201    Memcheck:Leak
5202    fun:_Znw*
5203    fun:_ZN4base23EnsureProcessTerminatedEi
5204    fun:_ZN7content6Zygote17HandleReapRequestEiRK6Pickle14PickleIterator
5205    fun:_ZN7content6Zygote24HandleRequestFromBrowserEi
5206    fun:_ZN7content6Zygote15ProcessRequestsEv
5207    fun:_ZN7content10ZygoteMainERKNS_18MainFunctionParamsEPNS_18ZygoteForkDelegateE
5208    fun:_ZN7content9RunZygoteERKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
5209    fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
5210    fun:_ZN7content21ContentMainRunnerImpl3RunEv
5211    fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
5212 }
5213 {
5214    bug_246148
5215    Memcheck:Leak
5216    fun:_Znw*
5217    ...
5218    fun:_ZN7content16SiteInstanceImpl10GetProcessEv
5219    fun:_ZN7content18RenderViewHostImplC1EPNS_12SiteInstanceEPNS_22RenderViewHostDelegateEPNS_24RenderWidgetHostDelegateEiibPNS_23SessionStorageNamespaceE
5220    fun:_ZN7content21RenderViewHostFactory6CreateEPNS_12SiteInstanceEPNS_22RenderViewHostDelegateEPNS_24RenderWidgetHostDelegateEiibPNS_23SessionStorageNamespaceE
5221    fun:_ZN7content22RenderFrameHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEii
5222    fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
5223    fun:_ZN7content15TestWebContents6CreateEPNS_14BrowserContextEPNS_12SiteInstanceE
5224    fun:_ZN7content17WebContentsTester21CreateTestWebContentsEPNS_14BrowserContextEPNS_12SiteInstanceE
5225    fun:_ZN8autofill12_GLOBAL__N_128AutofillDialogControllerTest5SetUpEv
5226 }
5227 {
5228    bug_246153
5229    Memcheck:Uninitialized
5230    fun:_ZN7WebCore8Settings29setOpenGLMultisamplingEnabledEb
5231    fun:_ZN5blink15WebSettingsImpl29setOpenGLMultisamplingEnabledEb
5232    fun:_ZN7content19ApplyWebPreferencesERK14WebPreferencesPN5blink7WebViewE
5233    ...
5234    fun:_ZN7content14RenderViewImpl10InitializeEPNS_20RenderViewImplParamsE
5235    fun:_ZN7content14RenderViewImpl6CreateE*
5236    fun:_ZN7content16RenderThreadImpl15OnCreateNewViewERK18ViewMsg_New_Params
5237 }
5238 {
5239    bug_247525a
5240    Memcheck:Leak
5241    fun:_Znw*
5242    fun:_ZN7fileapi24SandboxFileSystemBackendC1EPN5quota17QuotaManagerProxyEPN4base19SequencedTaskRunnerERKNS4_8FilePathERKNS_17FileSystemOptionsEPNS1_20SpecialStoragePolicyE
5243    fun:_ZN7fileapi17FileSystemContextC1E10scoped_ptrINS_21FileSystemTaskRunnersEN4base14DefaultDeleterIS2_EEEPNS_19ExternalMountPointsEPN5quota20SpecialStoragePolicyEPNS9_17QuotaManagerProxyE12ScopedVectorINS_17FileSystemBackendEERKNS3_8FilePathERKNS_17FileSystemOptionsE
5244    fun:_ZN7content23CreateFileSystemContextERKN4base8FilePathEbPN7fileapi19ExternalMountPointsEPN5quota20SpecialStoragePolicyEPNS7_17QuotaManagerProxyE
5245    fun:_ZN7content20StoragePartitionImpl6CreateEPNS_14BrowserContextEbRKN4base8FilePathE
5246    fun:_ZN7content23StoragePartitionImplMap3GetERKSsS2_b
5247    fun:_ZN7content12_GLOBAL__N_129GetStoragePartitionFromConfigEPNS_14BrowserContextERKSsS4_b
5248    fun:_ZN7content14BrowserContext19GetStoragePartitionEPS0_PNS_12SiteInstanceE
5249    fun:_ZN7content24NavigationControllerImpl26GetSessionStorageNamespaceEPNS_12SiteInstanceE
5250    fun:_ZN7content22RenderFrameHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEii
5251    fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
5252    fun:_ZN7content15TestWebContents6CreateEPNS_14BrowserContextEPNS_12SiteInstanceE
5253    fun:_ZN7content25RenderViewHostTestHarness21CreateTestWebContentsEv
5254    fun:_ZN7content25RenderViewHostTestHarness5SetUpEv
5255    fun:_ZN31ChromeRenderViewHostTestHarness5SetUpEv
5256 }
5257 {
5258    bug_247525b
5259    Memcheck:Leak
5260    fun:_Znw*
5261    fun:_ZN8appcache19AppCacheStorageImpl10InitializeERKN4base8FilePathEPNS1_16MessageLoopProxyES6_
5262    fun:_ZN8appcache15AppCacheService10InitializeERKN4base8FilePathEPNS1_16MessageLoopProxyES6_
5263    fun:_ZN7content21ChromeAppCacheService20InitializeOnIOThreadERKN4base8FilePathEPNS_15ResourceContextEPN3net23URLRequestContextGetterE13scoped_refptrIN5quota20SpecialStoragePolicyEE
5264 }
5265 {
5266    bug_247525c
5267    Memcheck:Leak
5268    fun:_Znw*
5269    fun:_ZN7content20StoragePartitionImpl6CreateEPNS_14BrowserContextEbRKN4base8FilePathE
5270    fun:_ZN7content23StoragePartitionImplMap3GetERKSsS2_b
5271    fun:_ZN7content12_GLOBAL__N_129GetStoragePartitionFromConfigEPNS_14BrowserContextERKSsS4_b
5272    fun:_ZN7content14BrowserContext19GetStoragePartitionEPS0_PNS_12SiteInstanceE
5273    fun:_ZN7content24NavigationControllerImpl26GetSessionStorageNamespaceEPNS_12SiteInstanceE
5274    fun:_ZN7content22RenderFrameHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEii
5275    fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
5276    fun:_ZN7content15TestWebContents6CreateEPNS_14BrowserContextEPNS_12SiteInstanceE
5277    fun:_ZN7content25RenderViewHostTestHarness21CreateTestWebContentsEv
5278    fun:_ZN7content25RenderViewHostTestHarness5SetUpEv
5279    fun:_ZN31ChromeRenderViewHostTestHarness5SetUpEv
5280 }
5281 {
5282    bug_250529_a
5283    Memcheck:Leak
5284    fun:_Znw*
5285    fun:_ZN14TestingProfile20CreateRequestContextEv
5286    fun:_ZN12_GLOBAL__N_130ProfileSyncServiceTypedUrlTest5SetUpEv
5287 }
5288 {
5289    bug_250529_b
5290    Memcheck:Leak
5291    fun:_Znw*
5292    fun:_ZN14TestingProfile20CreateRequestContextEv
5293    fun:_ZN30ProfileSyncServicePasswordTest5SetUpEv
5294 }
5295 {
5296    bug_250533
5297    Memcheck:Leak
5298    fun:_Znw*
5299    ...
5300    fun:_ZN3net21TestURLRequestContext4InitEv
5301    fun:_ZN3net21TestURLRequestContextC1Ev
5302    fun:_ZN3net27TestURLRequestContextGetter20GetURLRequestContextEv
5303    fun:_ZN11jingle_glue26ProxyResolvingClientSocketC1EPN3net19ClientSocketFactoryERK13scoped_refptrINS1_23URLRequestContextGetterEERKNS1_9SSLConfigERKNS1_12HostPortPairE
5304    fun:_ZN11jingle_glue23XmppClientSocketFactory27CreateTransportClientSocketERKN3net12HostPortPairE
5305    fun:_ZN11jingle_glue17ChromeAsyncSocket7ConnectERKN9talk_base13SocketAddressE
5306 }
5307 {
5308    bug_250533_b
5309    Memcheck:Leak
5310    fun:_Znw*
5311    ...
5312    fun:_ZN3net18HttpNetworkSessionC1ERKNS0_6ParamsE
5313    fun:_ZN11jingle_glue26ProxyResolvingClientSocketC1EPN3net19ClientSocketFactoryERK13scoped_refptrINS1_23URLRequestContextGetterEERKNS1_9SSLConfigERKNS1_12HostPortPairE
5314    fun:_ZN11jingle_glue23XmppClientSocketFactory27CreateTransportClientSocketERKN3net12HostPortPairE
5315    fun:_ZN11jingle_glue17ChromeAsyncSocket7ConnectERKN9talk_base13SocketAddressE
5316 }
5317 {
5318    bug_250688
5319    Memcheck:Leak
5320    fun:_Znw*
5321    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKN3net9HostCache3KeyES2_INS4_5EntryEN4base9TimeTicksEEEEE8allocateEmPKv
5322    fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE11_M_get_nodeEv
5323    fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE14_M_create_nodeERKS9_
5324    fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE10_M_insert_EPKSt18_Rb_tree_node_baseSI_RKS9_
5325    fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE16_M_insert_uniqueERKS9_
5326    fun:_ZNSt3mapIN3net9HostCache3KeyESt4pairINS1_5EntryEN4base9TimeTicksEESt4lessIS2_ESaIS3_IKS2_S7_EEE6insertERKSB_
5327    fun:_ZN3net13ExpiringCacheINS_9HostCache3KeyENS1_5EntryEN4base9TimeTicksESt4lessIS5_ENS1_15EvictionHandlerEE3PutERKS2_RKS3_RKS5_SF_
5328    fun:_ZN3net9HostCache3SetERKNS0_3KeyERKNS0_5EntryEN4base9TimeTicksENS7_9TimeDeltaE
5329    fun:_ZN3net20MockHostResolverBase11ResolveProcEmRKNS_12HostResolver11RequestInfoEPNS_11AddressListE
5330    fun:_ZN3net20MockHostResolverBase10ResolveNowEm
5331 }
5332 {
5333    bug_251004_a
5334    Memcheck:Leak
5335    fun:_Znw*
5336    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
5337    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
5338    fun:_ZN3net10FileStream7Context14CloseAndDeleteEv
5339 }
5340 {
5341    bug_251034
5342    Memcheck:Leak
5343    ...
5344    fun:_ZN3gpu5gles216ShaderTranslator4InitE12ShShaderType12ShShaderSpecPK18ShBuiltInResourcesNS0_25ShaderTranslatorInterface22GlslImplementationTypeENS7_27GlslBuiltInFunctionBehaviorE
5345    fun:_ZN3gpu5gles221ShaderTranslatorCache13GetTranslatorE12ShShaderType12ShShaderSpecPK18ShBuiltInResourcesNS0_25ShaderTranslatorInterface22GlslImplementationTypeENS7_27GlslBuiltInFunctionBehaviorE
5346    fun:_ZN3gpu5gles216GLES2DecoderImpl26InitializeShaderTranslatorEv
5347    fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContextEEbRKNS3_4SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
5348    fun:_ZN3gpu22InProcessCommandBuffer21InitializeOnGpuThreadEbmRKN3gfx4SizeEPKcRKSt6vectorIiSaIiEENS1_13GpuPreferenceE
5349 }
5350 {
5351    bug_252054
5352    Memcheck:Unaddressable
5353    fun:_ZNK7WebCore32PlatformSpeechSynthesisUtterance6clientEv
5354    fun:_ZN7WebCore15SpeechSynthesis17didFinishSpeakingEN3WTF10PassRefPtrINS_32PlatformSpeechSynthesisUtteranceEEE
5355    fun:_ZN7WebCore29PlatformSpeechSynthesizerMock16speakingFinishedEPNS_5TimerIS0_EE
5356    fun:_ZN7WebCore5TimerINS_29PlatformSpeechSynthesizerMockEE5firedEv
5357    fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
5358    fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
5359    fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
5360 }
5361 {
5362    bug_252036
5363    Memcheck:Uninitialized
5364    fun:_ZN2cc9Scheduler27SetupNextBeginFrameIfNeededEv
5365    fun:_ZN2cc9Scheduler23ProcessScheduledActionsEv
5366 }
5367 {
5368    bug_252209
5369    Memcheck:Leak
5370    fun:_Znw*
5371    fun:_ZN7content18ResourceDispatcher12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
5372    fun:_ZN7content11ChildThread12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
5373    fun:_ZN7content25WebKitPlatformSupportImpl20CreateResourceLoaderERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
5374    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN5blink13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
5375    fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN5blink13WebURLRequestEPNS1_18WebURLLoaderClientE
5376    fun:_ZN7WebCore22ResourceHandleInternal5startENS_17StoredCredentialsE
5377    fun:_ZN7WebCore14ResourceHandle5startENS_17StoredCredentialsE
5378    fun:_ZN7WebCore14ResourceHandle6createERKNS_15ResourceRequestEPNS_20ResourceHandleClientEbbNS_17StoredCredentialsE
5379 }
5380 {
5381    bug_252228
5382    Memcheck:Leak
5383    fun:_Znw*
5384    fun:_ZN12_GLOBAL__N_125WorkerGlobalScopeObserver6createEPN7WebCore17WorkerGlobalScopeEN3WTF10PassRefPtrIN5blink31WorkerAllowMainThreadBridgeBaseEEE
5385    fun:_ZN5blink31WorkerAllowMainThreadBridgeBaseC1EPN7WebCore17WorkerGlobalScopeEPNS_13WebWorkerBaseE
5386    fun:*Allow*MainThreadBridge*
5387 }
5388 {
5389    bug_252241_a
5390    Memcheck:Leak
5391    fun:_Znw*
5392    ...
5393    fun:_ZN7content20WebKitTestController20PrepareForLayoutTestERK4GURLRKN4base8FilePathEbRKSs
5394    fun:_Z16ShellBrowserMainRKN7content18MainFunctionParams*
5395    fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
5396    fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
5397    fun:_ZN7content21ContentMainRunnerImpl3RunEv
5398    fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
5399 }
5400 {
5401    bug_252241_b
5402    Memcheck:Leak
5403    fun:_Znw*
5404    fun:_ZN7content19ContentMainDelegate26CreateContentUtilityClientEv
5405    fun:_ZN7content24ContentClientInitializer3SetERKSsPNS_19ContentMainDelegateE
5406    fun:_ZN7content21ContentMainRunnerImpl10InitializeEiPPKcPNS_19ContentMainDelegateE
5407    fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
5408 }
5409 {
5410    bug_252641_a
5411    Memcheck:Uninitialized
5412    fun:pthread_rwlock_init$UNIX2003
5413    fun:_ZN3re25MutexC2Ev
5414    fun:_ZN3re25MutexC1Ev
5415    ...
5416    fun:_ZN11leveldb_env19ParseMethodAndErrorEPKcPNS_8MethodIDEPi
5417 }
5418 {
5419    bug_253797
5420    Memcheck:Uninitialized
5421    fun:_ZNSt11char_traitsIcE6lengthEPKc
5422    fun:_ZN4base8internal17StringPieceDetail*
5423    fun:_ZN4base16BasicStringPieceISsEC1EPKc
5424    fun:_ZN8autofill22AutofillQueryXmlParser13CharacterDataEPN4buzz15XmlParseContextEPKci
5425    fun:_ZN4buzz9XmlParser18ExpatCharacterDataEPKci
5426    fun:_ZN4buzzL21CharacterDataCallbackEPvPKci
5427    obj:*libexpat.so*
5428    obj:*libexpat.so*
5429    obj:*libexpat.so*
5430    obj:*libexpat.so*
5431    fun:XML_ParseBuffer
5432    fun:_ZN4buzz9XmlParser5ParseEPKcmb
5433    fun:_ZN8autofill12_GLOBAL__N_126AutofillQueryXmlParserTest13ParseQueryXMLERKSsb
5434    fun:_ZN8autofill12_GLOBAL__N_149AutofillQueryXmlParserTest_ParseAutofillFlow_Test8TestBodyEv
5435 }
5436 {
5437    bug_255718
5438    Memcheck:Leak
5439    fun:_Znw*
5440    fun:_ZN4base4BindIMNS_12_GLOBAL__N_121PostTaskAndReplyRelayEFvvENS_8internal17UnretainedWrapperIS2_EEEENS_8CallbackINS5_9BindStateINS5_13FunctorTraitsIT_E12RunnableTypeENSC_7RunTypeEFvNS5_19CallbackParamTraitsIT0_E11StorageTypeEEE14UnboundRunTypeEEESB_RKSG_
5441    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
5442    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
5443    fun:_ZN4base26PostTaskAndReplyWithResultIN5quota15QuotaStatusCodeES2_EEbPNS_10TaskRunnerERKN15tracked_objects8LocationERKNS_8CallbackIFT_vEEERKNS9_IFvT0_EEE
5444    fun:_ZN7fileapi21FileSystemQuotaClient16DeleteOriginDataERK4GURLN5quota11StorageTypeERKN4base8CallbackIFvNS4_15QuotaStatusCodeEEEE
5445    fun:_ZN5quota12QuotaManager17OriginDataDeleter3RunEv
5446    fun:_ZN5quota9QuotaTask5StartEv
5447    fun:_ZN5quota12QuotaManager16DeleteOriginDataERK4GURLNS_11StorageTypeEiRKN4base8CallbackIFvNS_15QuotaStatusCodeEEEE
5448    fun:_ZN7content12_GLOBAL__N_134ClearQuotaManagedOriginsOnIOThreadERK13scoped_refptrIN5quota12QuotaManagerEERKSt3setI4GURLSt4lessIS8_ESaIS8_EENS2_11StorageTypeE
5449    fun:_ZN7content12_GLOBAL__N_121ClearOriginOnIOThreadEjRK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEERKS4_IN5quota12QuotaManagerEE
5450 }
5451 {
5452    bug_258466
5453    Memcheck:Leak
5454    fun:_Znw*
5455    fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
5456    fun:_ZN22ChromeBrowserMainParts21PreMainMessageLoopRunEv
5457    fun:_ZN7content15BrowserMainLoop13CreateThreadsEv
5458    fun:_ZN7content21BrowserMainRunnerImpl10InitializeERKNS_18MainFunctionParamsE
5459    fun:_ZN7content11BrowserMainERKNS_18MainFunctionParamsE
5460    fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
5461    fun:_ZN7content21ContentMainRunnerImpl3RunEv
5462    fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
5463    fun:ChromeMain
5464 }
5465 {
5466    bug_258132a
5467    Memcheck:Leak
5468    fun:_Znw*
5469    fun:_ZN5ppapi5proxy15PPP_Class_Proxy19CreateProxiedObjectEPK18PPB_Var_DeprecatedPNS0_10DispatcherEill
5470    fun:_ZN5ppapi5proxy24PPB_Var_Deprecated_Proxy27OnMsgCreateObjectDeprecatedEillNS0_24SerializedVarReturnValueE
5471 }
5472 {
5473    bug_258132b
5474    Memcheck:Leak
5475    fun:_Znw*
5476    fun:_ZN5ppapi5proxy26PluginProxyMultiThreadTest7RunTestEv
5477    fun:_ZN5ppapi*ThreadAwareCallback*Test_*
5478 }
5479 {
5480    bug_259188
5481    Memcheck:Leak
5482    fun:_Znw*
5483    fun:_ZN7WebCore16V8PerIsolateData6createEPN2v87IsolateE
5484    fun:_ZN7WebCore16V8PerIsolateData17ensureInitializedEPN2v87IsolateE
5485    fun:_ZN5blink10initializeEPNS_8PlatformE
5486 }
5487 {
5488    bug_259303
5489    Memcheck:Leak
5490    fun:_Znw*
5491    fun:_ZN3IPC7Message23EnsureFileDescriptorSetEv
5492    fun:_ZN3IPC7Message19file_descriptor_setEv
5493    fun:_ZN3IPC7Channel11ChannelImpl24WillDispatchInputMessageEPNS_7MessageE
5494    fun:_ZN3IPC8internal13ChannelReader17DispatchInputDataEPKci
5495    fun:_ZN3IPC8internal13ChannelReader23ProcessIncomingMessagesEv
5496    fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
5497    fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
5498    fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
5499 }
5500 {
5501    bug_259357d
5502    Memcheck:Uninitialized
5503    ...
5504    fun:_ZN3gpu5gles239ShaderTranslatorTest_OptionsString_Test8TestBodyEv
5505 }
5506 {
5507    bug_259357f
5508    Memcheck:Uninitialized
5509    fun:_ZNK3gpu12AsyncAPIMock6IsArgsclEPKv
5510    fun:_ZNK7testing8internal12TrulyMatcherIN3gpu12AsyncAPIMock6IsArgsEE15MatchAndExplainIPKvEEbRT_PNS_19MatchResultListenerE
5511    fun:_ZNK7testing18PolymorphicMatcherINS_8internal12TrulyMatcherIN3gpu12AsyncAPIMock6IsArgsEEEE15MonomorphicImplIPKvE15MatchAndExplainESA_PNS_19MatchResultListenerE
5512    fun:_ZNK7testing8internal11MatcherBaseIPKvE15MatchAndExplainES3_PNS_19MatchResultListenerE
5513    fun:_ZNK7testing8internal11MatcherBaseIPKvE7MatchesES3_
5514    fun:_ZN7testing8internal11TuplePrefixILm3EE7MatchesINSt3tr15tupleIINS_7MatcherIjEES7_NS6_IPKvEEEEENS5_IIjjS9_EEEEEbRKT_RKT0_
5515    fun:_ZN7testing8internal12TupleMatchesINSt3tr15tupleIINS_7MatcherIjEES5_NS4_IPKvEEEEENS3_IIjjS7_EEEEEbRKT_RKT0_
5516    fun:_ZNK7testing8internal16TypedExpectationIFN3gpu5error5ErrorEjjPKvEE7MatchesERKNSt3tr15tupleIIjjS6_EEE
5517    fun:_ZNK7testing8internal16TypedExpectationIFN3gpu5error5ErrorEjjPKvEE21ShouldHandleArgumentsERKNSt3tr15tupleIIjjS6_EEE
5518    fun:_ZNK7testing8internal18FunctionMockerBaseIFN3gpu5error5ErrorEjjPKvEE29FindMatchingExpectationLockedERKNSt3tr15tupleIIjjS6_EEE
5519    fun:_ZN7testing8internal18FunctionMockerBaseIFN3gpu5error5ErrorEjjPKvEE30UntypedFindMatchingExpectationES6_PS6_PbPSoSB_
5520    fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
5521    fun:_ZN7testing8internal18FunctionMockerBaseIFN3gpu5error5ErrorEjjPKvEE10InvokeWithERKNSt3tr15tupleIIjjS6_EEE
5522    fun:_ZN7testing8internal14FunctionMockerIFN3gpu5error5ErrorEjjPKvEE6InvokeEjjS6_
5523    fun:_ZN3gpu12AsyncAPIMock9DoCommandEjjPKv
5524    fun:_ZN3gpu13CommandParser14ProcessCommandEv
5525    fun:_ZN3gpu12GpuScheduler10PutChangedEv
5526 }
5527 {
5528    bug_259789
5529    Memcheck:Uninitialized
5530    fun:_ZN7WebCore12_GLOBAL__N_116adjustAttributesERKNS_17GraphicsContext3D10AttributesEPNS_8SettingsE
5531    fun:_ZN7WebCore21WebGLRenderingContext19maybeRestoreContextEPNS_5TimerIS0_EE
5532    fun:_ZN7WebCore5TimerINS_21WebGLRenderingContextEE5firedEv
5533    fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
5534    fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
5535    fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
5536 }
5537 {
5538    bug_259789b
5539    Memcheck:Uninitialized
5540    fun:_ZN7WebCore12_GLOBAL__N_116adjustAttributesERKNS_17GraphicsContext3D10AttributesEPNS_8SettingsE
5541    fun:_ZN7WebCore21WebGLRenderingContext6createEPNS_17HTMLCanvasElementEPNS_22WebGLContextAttributesE
5542    fun:_ZN7WebCore17HTMLCanvasElement10getContextERKN3WTF6StringEPNS_23CanvasContextAttributesE
5543 }
5544 {
5545    bug_259799
5546    Memcheck:Leak
5547    fun:_Znw*
5548    fun:_ZN5blink16EditorClientImpl23requestCheckingOfStringEN3WTF10PassRefPtrIN7WebCore19TextCheckingRequestEEE
5549    fun:_ZN7WebCore12SpellChecker13invokeRequestEN3WTF10PassRefPtrINS_17SpellCheckRequestEEE
5550    fun:_ZN7WebCore12SpellChecker18requestCheckingForEN3WTF10PassRefPtrINS_17SpellCheckRequestEEE
5551    fun:_ZN7WebCore6Editor40markAllMisspellingsAndBadGrammarInRangesEjPNS_5RangeES2_
5552    fun:_ZN7WebCore6Editor33markMisspellingsAfterTypingToWordERKNS_15VisiblePositionERKNS_16VisibleSelectionE
5553    fun:_ZN7WebCore13TypingCommand27markMisspellingsAfterTypingENS0_14ETypingCommandE
5554    fun:_ZN7WebCore13TypingCommand24typingAddedToOpenCommandENS0_14ETypingCommandE
5555    fun:_ZN7WebCore13TypingCommand28insertTextRunWithoutNewlinesERKN3WTF6StringEb
5556    fun:_ZNK7WebCore26TypingCommandLineOperationclEmmb
5557 }
5558 {
5559    bug_262875
5560    Memcheck:Leak
5561    fun:_Znw*
5562    ...
5563    fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
5564    ...
5565    fun:_ZN15webkit_database15DatabaseTracker23UpgradeToCurrentVersionEv
5566    fun:_ZN15webkit_database15DatabaseTracker8LazyInitEv
5567    fun:_ZN15webkit_database15DatabaseTracker23GetAllOriginIdentifiersEPSt6vectorISsSaISsEE
5568    fun:_ZN15webkit_database12_GLOBAL__N_120GetOriginsOnDBThreadEPNS_15DatabaseTrackerEPSt3setI4GURLSt4lessIS4_ESaIS4_EE
5569 }
5570 {
5571    bug_262934
5572    Memcheck:Leak
5573    fun:_Znw*
5574    fun:_ZN7GrGpuGL12ProgramCache10getProgramERK15GrGLProgramDescPPK13GrEffectStageS7_
5575    fun:_ZN7GrGpuGL18flushGraphicsStateEN5GrGpu8DrawTypeEPK20GrDeviceCoordTexture
5576    fun:_ZN5GrGpu22setupClipAndFlushStateENS_8DrawTypeEPK20GrDeviceCoordTexturePN11GrDrawState18AutoRestoreEffectsE
5577    fun:_ZN5GrGpu6onDrawERKN12GrDrawTarget8DrawInfoE
5578    ...
5579    fun:_ZN9GrContext22readRenderTargetPixelsEP14GrRenderTargetiiii13GrPixelConfigPvmj
5580 }
5581 {
5582    bug_268258
5583    Memcheck:Leak
5584    fun:malloc
5585    fun:_ZN3WTF10fastMallocEm
5586    fun:_ZN3WTF10StringImpl12createStaticEPKcjj
5587    fun:_ZN7WebCore*Names*init*
5588 }
5589 {
5590    bug_269201
5591    Memcheck:Unaddressable
5592    ...
5593    fun:_ZN4base8internal17IncomingTaskQueue18AddToIncomingQueueERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEENS_9TimeDeltaEb
5594    fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEE
5595    fun:_ZN8printing8PrintJob21UpdatePrintedDocumentEPNS_15PrintedDocumentE
5596    fun:_ZN8printing8PrintJob4StopEv
5597 }
5598 {
5599    bug_269844
5600    Memcheck:Leak
5601    fun:_Znw*
5602    fun:_ZN9__gnu_cxx13new_allocatorIPN4base11PendingTaskEE8allocateEmPKv
5603    fun:_ZNSt11_Deque_baseIN4base11PendingTaskESaIS1_EE15_M_allocate_mapEm
5604    fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE17_M_reallocate_mapEmb
5605    ...
5606    fun:_ZN4base8internal17IncomingTaskQueue15PostPendingTaskEPNS_11PendingTaskE
5607    fun:_ZN4base8internal17IncomingTaskQueue18AddToIncomingQueueERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEENS_9TimeDeltaEb
5608    fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEE
5609 }
5610 {
5611    bug_273398
5612    Memcheck:Leak
5613    ...
5614    fun:_ZN6Pickle6ResizeEm
5615    fun:_ZN6PickleC1Ev
5616    fun:_ZN7content14ZygoteHostImpl20GetTerminationStatusEibPi
5617    fun:_ZN7content20ChildProcessLauncher25GetChildTerminationStatusEbPi
5618 }
5619 {
5620    bug_288804
5621    Memcheck:Leak
5622    fun:_Znw*
5623    fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKN3net12HostPortPairESt3mapINS3_15SpdySettingsIdsES2_INS3_17SpdySettingsFlagsEjESt4lessIS7_ESaIS2_IKS7_S9_EEEEEE8allocateEmPKv
5624    fun:_ZNSt8_Rb_treeIN3net12HostPortPairESt4pairIKS1_St3mapINS0_15SpdySettingsIdsES2_INS0_17SpdySettingsFlagsEjESt4lessIS5_ESaIS2_IKS5_S7_EEEESt10_Select1stISE_ES8_IS1_ESaISE_EE11_M_get_nodeEv
5625    fun:_ZNSt8_Rb_treeIN3net12HostPortPairESt4pairIKS1_St3mapINS0_15SpdySettingsIdsES2_INS0_17SpdySettingsFlagsEjESt4lessIS5_ESaIS2_IKS5_S7_EEEESt10_Select1stISE_ES8_IS1_ESaISE_EE14_M_create_nodeERKSE_
5626    fun:_ZNSt8_Rb_treeIN3net12HostPortPairESt4pairIKS1_St3mapINS0_15SpdySettingsIdsES2_INS0_17SpdySettingsFlagsEjESt4lessIS5_ESaIS2_IKS5_S7_EEEESt10_Select1stISE_ES8_IS1_ESaISE_EE13_M_clone_nodeEPKSt13_Rb_tree_nodeISE_E
5627    fun:_ZNSt8_Rb_treeIN3net12HostPortPairESt4pairIKS1_St3mapINS0_15SpdySettingsIdsES2_INS0_17SpdySettingsFlagsEjESt4lessIS5_ESaIS2_IKS5_S7_EEEESt10_Select1stISE_ES8_IS1_ESaISE_EE7_M_copyEPKSt13_Rb_tree_nodeISE_EPSL_
5628    fun:_ZNSt8_Rb_treeIN3net12HostPortPairESt4pairIKS1_St3mapINS0_15SpdySettingsIdsES2_INS0_17SpdySettingsFlagsEjESt4lessIS5_ESaIS2_IKS5_S7_EEEESt10_Select1stISE_ES8_IS1_ESaISE_EEaSERKSJ_
5629    fun:_ZNSt3mapIN3net12HostPortPairES_INS0_15SpdySettingsIdsESt4pairINS0_17SpdySettingsFlagsEjESt4lessIS2_ESaIS3_IKS2_S5_EEES6_IS1_ESaIS3_IKS1_SB_EEEaSERKSG_
5630    fun:_ZN18chrome_browser_net27HttpServerPropertiesManager24UpdatePrefsFromCacheOnIOERKN4base8CallbackIFvvEEE
5631    fun:_ZN18chrome_browser_net27HttpServerPropertiesManager24UpdatePrefsFromCacheOnIOEv
5632 }
5633 {
5634    bug_290364
5635    Memcheck:Leak
5636    fun:_Znw*
5637    fun:_ZN4base13WaitableEventC1Ebb
5638    fun:_ZN4base12_GLOBAL__N_112ThreadParamsC1Ev
5639    fun:_ZN4base12_GLOBAL__N_112CreateThreadEmbPNS_14PlatformThread8DelegateEPNS_20PlatformThreadHandleENS_14ThreadPriorityE
5640    fun:_ZN4base14PlatformThread6CreateEmPNS0_8DelegateEPNS_20PlatformThreadHandleE
5641    fun:_ZN4base12SimpleThread5StartEv
5642    fun:_ZN4base19SequencedWorkerPool6WorkerC1ERK13scoped_refptrIS0_EiRKSs
5643    fun:_ZN4base19SequencedWorkerPool5Inner30FinishStartingAdditionalThreadEi
5644    fun:_ZN4base19SequencedWorkerPool5Inner10ThreadLoopEPNS0_6WorkerE
5645    fun:_ZN4base19SequencedWorkerPool6Worker3RunEv
5646    fun:_ZN4base12SimpleThread10ThreadMainEv
5647    fun:_ZN4base12_GLOBAL__N_110ThreadFuncEPv
5648 }
5649 {
5650    bug_290405
5651    Memcheck:Uninitialized
5652    fun:_ZNK16GrGradientEffect9onIsEqualERK8GrEffect
5653    fun:_ZNK8GrEffect7isEqualERKS_
5654    fun:_ZNK13GrEffectStage13DeferredStage7isEqualERKS_b
5655    fun:_ZNK11GrDrawState13DeferredState7isEqualERKS_
5656    fun:_ZNK19GrInOrderDrawBuffer13needsNewStateEv
5657    fun:_ZN19GrInOrderDrawBuffer6onDrawERKN12GrDrawTarget8DrawInfoE
5658    fun:_ZN12GrDrawTarget20drawIndexedInstancesE15GrPrimitiveTypeiiiPK6SkRect
5659    fun:_ZN13GrTextContext11flushGlyphsEv
5660 }
5661 {
5662    bug_290407
5663    Memcheck:Leak
5664    fun:calloc
5665    fun:_swrast_new_soft_renderbuffer
5666    fun:_mesa_BindRenderbufferEXT
5667    fun:shared_dispatch_stub_939
5668    fun:_ZN3gfx9GLApiBase23glBindRenderbufferEXTFnEjj
5669    fun:_ZN3gpu5gles216GLES2DecoderImpl18DoBindRenderbufferEjj
5670    fun:_ZN3gpu5gles216GLES2DecoderImpl22HandleBindRenderbufferEjRKNS0_4cmds16BindRenderbufferE
5671    fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
5672    fun:_ZN3gpu13CommandParser14ProcessCommandEv
5673 }
5674 {
5675    bug_290435
5676    Memcheck:Uninitialized
5677    fun:_ZN7WebCore12AudioContext20scheduleNodeDeletionEv
5678    fun:_ZN7WebCore12AudioContext21handlePostRenderTasksEv
5679    fun:_ZN7WebCore20AudioDestinationNode6renderEPNS_8AudioBusES2_m
5680    fun:_ZN7WebCore27OfflineAudioDestinationNode13offlineRenderEv
5681 }
5682 {
5683    bug_290440
5684    Memcheck:Leak
5685    fun:_Znw*
5686    fun:_ZN7WebCore11ScriptState10forContextEN2v86HandleINS1_7ContextEEE
5687    fun:_ZN7WebCore32scriptStateFromWorkerGlobalScopeEPNS_17WorkerGlobalScopeE
5688    ...
5689    fun:_ZN7WebCore13WorkerRunLoop9runInModeEPNS_17WorkerGlobalScopeERKNS_13ModePredicateENS0_8WaitModeE
5690    fun:_ZN7WebCore13WorkerRunLoop3runEPNS_17WorkerGlobalScopeE
5691    fun:_ZN7WebCore12WorkerThread12runEventLoopEv
5692 }
5693 {
5694    bug_290443
5695    Memcheck:Leak
5696    fun:_Znw*
5697    fun:_ZN7WebCore11ScriptState10forContextEN2v86HandleINS1_7ContextEEE
5698    fun:_ZN7WebCore11ScriptState7currentEv
5699    fun:_ZN7WebCore20ImageBitmapFactories17ImageBitmapLoaderC1EPS0_N3WTF10PassRefPtrINS_21ScriptPromiseResolverEEERKNS_7IntRectE
5700    fun:_ZN7WebCore20ImageBitmapFactories17ImageBitmapLoader6createEPS0_N3WTF10PassRefPtrINS_21ScriptPromiseResolverEEERKNS_7IntRectE
5701    fun:_ZN7WebCore20ImageBitmapFactories17createImageBitmapEPNS_11EventTargetEPNS_4BlobERNS_14ExceptionStateE
5702    fun:_ZN7WebCore27WorkerGlobalScopeV8InternalL24createImageBitmap1MethodERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5703    fun:_ZN7WebCore27WorkerGlobalScopeV8InternalL23createImageBitmapMethodERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5704    fun:_ZN7WebCore27WorkerGlobalScopeV8InternalL31createImageBitmapMethodCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5705 }
5706 {
5707    bug_290559a
5708    Memcheck:Leak
5709    fun:_Znw*
5710    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResultsC1Ev
5711    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResults11MaybeCreateEN5blink22WebFileSystemCallbacksE
5712    ...
5713    fun:_ZN2v88internal25FunctionCallbackArguments4Call*
5714 }
5715 {
5716    bug_290559b
5717    Memcheck:Leak
5718    fun:_Znw*
5719    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResultsC1Ev
5720    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResults11MaybeCreateEN5blink22WebFileSystemCallbacksE
5721    ...
5722    fun:_ZN7WebCore*SyncV8Internal*FunctionCallbackInfo*
5723 }
5724 {
5725    bug_293024_b
5726    Memcheck:Leak
5727    fun:malloc
5728    fun:_ZN3WTF10fastMallocEm
5729    fun:_ZN3WTF24ThreadSafeRefCountedBasenwEm
5730    fun:_ZN5blink12_GLOBAL__N_131AllowFileSystemMainThreadBridge6createEPN7WebCore17WorkerGlobalScopeEPNS_13WebWorkerBaseERKN3WTF6StringE
5731    fun:_ZN5blink22WorkerFileSystemClient15allowFileSystem*
5732    ...
5733    fun:_ZN2v88internal25FunctionCallbackArguments4CallEPFvRKNS_20FunctionCallbackInfoINS_5ValueEEEE
5734 }
5735 {
5736    bug_293033
5737    Memcheck:Leak
5738    fun:_Znw*
5739    fun:_ZN7WebCore11ScriptState10forContextEN2v86HandleINS1_7ContextEEE
5740    ...
5741    fun:_ZN7WebCore*V8InternalL*MethodERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5742    fun:_ZN7WebCore*V8InternalL*MethodCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5743 }
5744 {
5745    bug_293058_a
5746    Memcheck:Leak
5747    fun:_Znw*
5748    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResultsC1Ev
5749    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResults11MaybeCreateERKN5blink22WebFileSystemCallbacksE
5750    fun:_ZN7content17WebFileSystemImpl*
5751 }
5752 {
5753    bug_293058_b
5754    Memcheck:Leak
5755    fun:_Znw*
5756    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResultsC1Ev
5757    fun:_ZN7content12_GLOBAL__N_123WaitableCallbackResults11MaybeCreateERKN5blink22WebFileSystemCallbacksE
5758    fun:_ZN7content17WebFileSystemImpl16createFileWriterERKN5blink6WebURLEPNS1_19WebFileWriterClientENS1_22WebFileSystemCallbacksE
5759    fun:_ZN7WebCore17DOMFileSystemSync12createWriterEPKNS_13FileEntrySyncERNS_14ExceptionStateE
5760    fun:_ZN7WebCore13FileEntrySync12createWriterERNS_14ExceptionStateE
5761 }
5762 {
5763    bug_293088
5764    Memcheck:Unaddressable
5765    fun:_ZNK3WTF6RefPtrIN7WebCore19TextResourceDecoderEE3getEv
5766    fun:_ZNK7WebCore8Document7decoderEv
5767    fun:_ZN7WebCore25DecodedDataDocumentParser5flushEv
5768    fun:_ZN7WebCore14DocumentWriter3endEv
5769    fun:_ZN7WebCore14DocumentLoader10endWritingEPNS_14DocumentWriterE
5770    fun:_ZN7WebCore14DocumentLoader15finishedLoadingEd
5771    fun:_ZN7WebCore14DocumentLoader14notifyFinishedEPNS_8ResourceE
5772    fun:_ZN7WebCore8Resource11checkNotifyEv
5773    fun:_ZN7WebCore8Resource13finishOnePartEv
5774    fun:_ZN7WebCore8Resource6finishEd
5775    fun:_ZN7WebCore14ResourceLoader16didFinishLoadingEPN5blink12WebURLLoaderEd
5776    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnCompletedRequestEibRKSsRKN4base9TimeTicksE
5777    fun:_ZN7content18ResourceDispatcher17OnRequestCompleteEiibRKSsRKN4base9TimeTicksE
5778 }
5779 {
5780    bug_298143
5781    Memcheck:Uninitialized
5782    ...
5783    fun:_ZN7WebCore25TypeConversionsV8Internal*AttributeGetterE*
5784 }
5785 {
5786    bug_298788
5787    Memcheck:Leak
5788    fun:_Znw*
5789    fun:_ZN10extensions19TestExtensionSystem22CreateExtensionServiceEPK11CommandLineRKN4base8FilePathEb
5790    fun:_ZN10extensions12_GLOBAL__N_130ExtensionActionIconFactoryTest5SetUpEv
5791 }
5792 {
5793    bug_298887
5794    Memcheck:Leak
5795    ...
5796    fun:_ZN2ui25KeyboardCodeFromXKeyEventEP7_XEvent
5797    fun:_ZN2ui22KeyboardCodeFromNativeERKP7_XEvent
5798    fun:_ZN12_GLOBAL__N_121XModifierStateWatcher20UpdateStateFromEventERKP7_XEvent
5799    fun:_ZN2ui20EventFlagsFromNativeERKP7_XEvent
5800    fun:_ZN2ui8KeyEventC1ERKP7_XEventb
5801    fun:_ZN8chromeos31KeyboardDrivenEventRewriterTest25GetRewrittenEventAsStringEN2ui12KeyboardCodeEiNS1_9EventTypeEhj
5802    fun:_ZN8chromeos48KeyboardDrivenEventRewriterTest_PassThrough_Test8TestBodyEv
5803 }
5804 {
5805    bug_299647
5806    Memcheck:Unaddressable
5807    fun:_ZNK3WTF6OwnPtrIN7WebCore19AnimationControllerEE3getEv
5808    fun:_ZNK7WebCore5Frame9animationEv
5809    fun:_ZNK7WebCore12RenderObject9animationEv
5810    fun:_ZN7WebCore12RenderObject15willBeDestroyedEv
5811    fun:_ZN7WebCore22RenderLayerModelObject15willBeDestroyedEv
5812    fun:_ZN7WebCore20RenderBoxModelObject15willBeDestroyedEv
5813    fun:_ZN7WebCore9RenderBox15willBeDestroyedEv
5814    fun:_ZN7WebCore11RenderBlock15willBeDestroyedEv
5815    fun:_ZN7WebCore16RenderFullScreen15willBeDestroyedEv
5816    fun:_ZN7WebCore12RenderObject7destroyEv
5817    fun:_ZN7WebCore22FullscreenElementStack21setFullScreenRendererEPNS_16RenderFullScreenE
5818    fun:_ZN7WebCore22FullscreenElementStack19documentWasDetachedEv
5819    fun:_ZN7WebCore25DocumentLifecycleNotifier25notifyDocumentWasDetachedEv
5820    fun:_ZN7WebCore8Document6detachERKNS_4Node13AttachContextE
5821    fun:_ZN7WebCore8Document21prepareForDestructionEv
5822    fun:_ZN7WebCore5Frame7setViewEN3WTF10PassRefPtrINS_9FrameViewEEE
5823    fun:_ZN7WebCore5Frame10createViewERKNS_7IntSizeERKNS_5ColorEbS3_bNS_13ScrollbarModeEbS7_b
5824    fun:_ZN5blink12WebFrameImpl15createFrameViewEv
5825    fun:_ZN5blink21FrameLoaderClientImpl31transitionToCommittedForNewPageEv
5826    fun:_ZN7WebCore11FrameLoader21commitProvisionalLoadEv
5827    fun:_ZN7WebCore14DocumentLoader13commitIfReadyEv
5828    fun:_ZN7WebCore14DocumentLoader15finishedLoadingEd
5829 }
5830 {
5831    bug_299804
5832    Memcheck:Uninitialized
5833    fun:_ZN24GrConfigConversionEffect30TestForPreservingPMConversionsEP9GrContextPNS_12PMConversionES3_
5834    fun:_ZN12_GLOBAL__N_119test_pm_conversionsEP9GrContextPiS2_
5835    fun:_ZN9GrContext19createPMToUPMEffectEP9GrTexturebRK8SkMatrix
5836    fun:_ZN9GrContext22readRenderTargetPixelsEP14GrRenderTargetiiii13GrPixelConfigPvmj
5837    fun:_ZN11SkGpuDevice12onReadPixelsERK8SkBitmapiiN8SkCanvas10Config8888E
5838    fun:_ZN12SkBaseDevice10readPixelsEP8SkBitmapiiN8SkCanvas10Config8888E
5839    fun:_ZN8SkCanvas10readPixelsEP8SkBitmapiiNS_10Config8888E
5840    fun:_ZN14DeferredDevice12onReadPixelsERK8SkBitmapiiN8SkCanvas10Config8888E
5841    fun:_ZN12SkBaseDevice10readPixelsEP8SkBitmapiiN8SkCanvas10Config8888E
5842    fun:_ZN8SkCanvas10readPixelsEP8SkBitmapiiNS_10Config8888E
5843    fun:_ZN7WebCore15GraphicsContext10readPixelsEP8SkBitmapiiN8SkCanvas10Config8888E
5844    fun:_ZN7WebCore12getImageDataILNS_8MultiplyE1EEEN3WTF10PassRefPtrINS2_17Uint8ClampedArrayEEERKNS_7IntRectEPNS_15GraphicsContextERKNS_7IntSizeE
5845    fun:_ZNK7WebCore11ImageBuffer24getUnmultipliedImageDataERKNS_7IntRectENS0_16CoordinateSystemE
5846    fun:_ZNK7WebCore24CanvasRenderingContext2D12getImageDataENS_11ImageBuffer16CoordinateSystemEffffRNS_14ExceptionStateE
5847    fun:_ZNK7WebCore24CanvasRenderingContext2D12getImageDataEffffRNS_14ExceptionStateE
5848    fun:_ZN7WebCore34CanvasRenderingContext2DV8InternalL18getImageDataMethodERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5849    fun:_ZN7WebCore34CanvasRenderingContext2DV8InternalL26getImageDataMethodCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5850    fun:_ZN2v88internal25FunctionCallbackArguments4CallEPFvRKNS_20FunctionCallbackInfoINS_5ValueEEEE
5851    fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
5852 }
5853 {
5854    bug_309468
5855    Memcheck:Leak
5856    fun:_Znw*
5857    fun:_ZN19TranslateBubbleView25CreateViewBeforeTranslateEv
5858    fun:_ZN19TranslateBubbleView4InitEv
5859    fun:_ZN5views18BubbleDelegateView12CreateBubbleEPS0_
5860    fun:_ZN23TranslateBubbleViewTest5SetUpEv
5861 }
5862 {
5863    bug_309477
5864    Memcheck:Uninitialized
5865    fun:_ZN13WebTestRunner11EventSender5resetEv
5866    fun:_ZN13WebTestRunner14TestInterfaces26resetTestHelperControllersEv
5867    fun:_ZN13WebTestRunner14TestInterfaces8resetAllEv
5868    ...
5869    fun:_ZN7content26ShellRenderProcessObserver17WebKitInitializedEv
5870    fun:_ZN7content16RenderThreadImpl23EnsureWebKitInitializedEv
5871    fun:_ZN7content16RenderThreadImpl15OnCreateNewViewERK18ViewMsg_New_Params
5872 }
5873 {
5874    bug_310351
5875    Memcheck:Leak
5876    ...
5877    fun:_ZN3WTF12PthreadStatenwEm
5878    fun:_ZN3WTFL35establishIdentifierForPthreadHandleERK*
5879    fun:_ZN3WTF13currentThreadEv
5880    fun:_ZN3WTF20initializeMainThreadEPFvPFvPvES0_E
5881 }
5882 {
5883    bug_312332
5884    Memcheck:Uninitialized
5885    ...
5886    fun:_ZNK7WebCore17RenderTextControl29computeIntrinsicLogicalWidthsERNS_10LayoutUnitES2_
5887    fun:_ZN7WebCore17RenderTextControl29computePreferredLogicalWidthsEv
5888    ...
5889    fun:_ZN7WebCore11RenderBlock6layoutEv
5890 }
5891 {
5892    bug_317166
5893    Memcheck:Leak
5894    fun:malloc
5895    fun:_dl_close_worker
5896    fun:_dl_close
5897    fun:_dl_catch_error
5898    fun:_dlerror_run
5899    fun:dlclose
5900    obj:/usr/lib/x86_64-linux-gnu/libasound.so.2.0.0
5901    fun:snd_config_searcha_hooks
5902    fun:snd_config_searchva_hooks
5903    obj:/usr/lib/x86_64-linux-gnu/libasound.so.2.0.0
5904    fun:snd_config_search_definition
5905    obj:/usr/lib/x86_64-linux-gnu/libasound.so.2.0.0
5906    fun:_ZN5media11AlsaWrapper7PcmOpenEPP8_snd_pcmPKc15_snd_pcm_streami
5907    fun:_ZN9alsa_utilL10OpenDeviceEPN5media11AlsaWrapperEPKc15_snd_pcm_streamii15_snd_pcm_formati
5908    fun:_ZN9alsa_util18OpenPlaybackDeviceEPN5media11AlsaWrapperEPKcii15_snd_pcm_formati
5909    fun:_ZN5media19AlsaPcmOutputStream16AutoSelectDeviceEj
5910    fun:_ZN5media19AlsaPcmOutputStream4OpenEv
5911    fun:_ZN5media25AudioOutputDispatcherImpl19CreateAndOpenStreamEv
5912    fun:_ZN5media25AudioOutputDispatcherImpl10OpenStreamEv
5913    fun:_ZN5media20AudioOutputResampler10OpenStreamEv
5914    fun:_ZN5media16AudioOutputProxy4OpenEv
5915    fun:_ZN5media18AudioStreamHandler20AudioStreamContainer4PlayEv
5916 }
5917 {
5918    bug_321976
5919    Memcheck:Leak
5920    ...
5921    fun:nssList_Create
5922    fun:nssTrustDomain_UpdateCachedTokenCerts
5923 }
5924 {
5925    bug_327672
5926    Memcheck:Uninitialized
5927    fun:_ZNK7WebCore18StyleSheetContents11isCacheableEv
5928    fun:_ZN7WebCore9LinkStyle16setCSSStyleSheetERKN3WTF6StringERKNS_4KURLES4_PKNS_21CSSStyleSheetResourceE
5929    fun:_ZN7WebCore21CSSStyleSheetResource11checkNotifyEv
5930    ...
5931    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnCompletedRequestEibRKSsRKN4base9TimeTicksE
5932 }
5933 {
5934    bug_329960
5935    Memcheck:Leak
5936    fun:_Znw*
5937    fun:_ZN7WebCore22V8PerContextDataHolder7installE*
5938    fun:_ZN7WebCore22WorkerScriptController25initializeContextIfNeededEv
5939    ...
5940    fun:_ZN7WebCore12WorkerThread12workerThreadEv
5941 }
5942 {
5943    bug_331061
5944    Memcheck:Unaddressable
5945    fun:_ZNK3WTF6RefPtrIN7WebCore14SecurityOriginEE3getEv
5946    fun:_ZNK7WebCore15SecurityContext14securityOriginEv
5947    fun:_ZN7WebCore13V8WindowShell16setSecurityTokenEv
5948    fun:_ZN7WebCore13V8WindowShell20updateSecurityOriginEv
5949    fun:_ZN7WebCore16ScriptController20updateSecurityOriginEv
5950    fun:_ZN7WebCore8Document23didUpdateSecurityOriginEv
5951    fun:_ZN7WebCore8Document15setIsViewSourceEb
5952    fun:_ZN7WebCore22HTMLViewSourceDocumentC1ERKNS_12DocumentInitERKN3WTF6StringE
5953    fun:_ZN7WebCore22HTMLViewSourceDocument6createERKNS_12DocumentInitERKN3WTF6StringE
5954    fun:_ZN7WebCore17DOMImplementation14createDocumentERKN3WTF6StringERKNS_12DocumentInitEb
5955    fun:_ZN7WebCore9DOMWindow14createDocumentERKN3WTF6StringERKNS_12DocumentInitEb
5956    fun:_ZN7WebCore9DOMWindow18installNewDocumentERKN3WTF6StringERKNS_12DocumentInitEb
5957    fun:_ZN7WebCore14DocumentLoader15createWriterForEPNS_5FrameEPKNS_8DocumentERKNS_4KURLERKN3WTF12AtomicStringESC_bb
5958    fun:_ZN7WebCore14DocumentLoader12ensureWriterERKN3WTF12AtomicStringERKNS_4KURLE
5959    fun:_ZN7WebCore14DocumentLoader12ensureWriterEv
5960    fun:_ZN7WebCore14DocumentLoader10commitDataEPKcm
5961    fun:_ZN7WebCore14DocumentLoader12dataReceivedEPNS_8ResourceEPKci
5962    fun:_ZN7WebCore11RawResource10appendDataEPKci
5963    fun:_ZN7WebCore14ResourceLoader14didReceiveDataEPN5blink12WebURLLoaderEPKcii
5964    fun:_ZN11webkit_glue16WebURLLoaderImpl7Context14OnReceivedDataEPKcii
5965    fun:_ZN7content18ResourceDispatcher14OnReceivedDataEiiii
5966 }
5967 {
5968    bug_331063
5969    Memcheck:Uninitialized
5970    ...
5971    fun:_ZN7WebCore11RenderImage12imageChangedEPvPKNS_7IntRectE
5972    fun:_ZN7WebCore12RenderObject12imageChangedEPNS_13ImageResourceEPKNS_7IntRectE
5973    fun:_ZN7WebCore13ImageResource12didAddClientEPNS_14ResourceClientE
5974    fun:_ZN7WebCore8Resource9addClientEPNS_14ResourceClientE
5975    fun:_ZN7WebCore19RenderImageResource16setImageResourceEPNS_13ImageResourceE
5976    fun:_ZN7WebCore30PasswordGeneratorButtonElement11updateImageEv
5977    fun:_ZN7WebCore30PasswordGeneratorButtonElement6attachERKNS_4Node13AttachContextE
5978    fun:_ZN7WebCore13ContainerNode14attachChildrenERKNS_4Node13AttachContextE
5979 }
5980 {
5981    bug_331925
5982    Memcheck:Leak
5983    ...
5984    fun:_ZN3net27TestURLRequestContextGetter20GetURLRequestContextEv
5985    fun:_ZN3net14URLFetcherCore30StartURLRequestWhenAppropriateEv
5986    fun:_ZN3net14URLFetcherCore19DidInitializeWriterEi
5987    fun:_ZN3net14URLFetcherCore15StartOnIOThreadEv
5988 }
5989 {
5990    bug_332328
5991    Memcheck:Leak
5992    fun:malloc
5993    fun:_ZN3WTF10fastMallocEm
5994    fun:_ZN7WebCore14XMLHttpRequestnwEm
5995    fun:_ZN7WebCore14XMLHttpRequest6createEPNS_16ExecutionContextEN3WTF10PassRefPtrINS_14SecurityOriginEEE
5996    fun:_ZN7WebCore16V8XMLHttpRequest17constructorCustomERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5997    fun:_ZN7WebCore16V8XMLHttpRequest19constructorCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
5998    fun:_ZN2v88internal25FunctionCallbackArguments4CallEPFvRKNS_20FunctionCallbackInfoINS_5ValueEEEE
5999 }
6000 {
6001    bug_332329
6002    Memcheck:Leak
6003    fun:malloc
6004    fun:_ZN3WTF10fastMallocEm
6005    fun:_ZN3WTF24ThreadSafeRefCountedBasenwEm
6006    fun:_ZN7WebCore7RawData6createEv
6007    fun:_ZN7WebCore6Stream7addDataEPKcm
6008    fun:_ZN7WebCore14XMLHttpRequest14didReceiveDataEPKci
6009    fun:_ZN7WebCore24DocumentThreadableLoader14didReceiveDataEPKci
6010 }
6011 {
6012    bug_332330
6013    Memcheck:Leak
6014    fun:malloc
6015    fun:_ZN3WTF10fastMallocEm
6016    fun:_ZN7WebCore8ResourcenwEm
6017    fun:_ZN7WebCoreL14createResourceENS_8Resource4TypeERKNS_15ResourceRequestERKN3WTF6StringE
6018    fun:_ZN7WebCore15ResourceFetcher12loadResourceENS_8Resource4TypeERNS_12FetchRequestERKN3WTF6StringE
6019    fun:_ZN7WebCore15ResourceFetcher15requestResourceENS_8Resource4TypeERNS_12FetchRequestE
6020    fun:_ZN7WebCore15ResourceFetcher16fetchRawResourceERNS_12FetchRequestE
6021    fun:_ZN7WebCore24DocumentThreadableLoader11loadRequestERKNS_15ResourceRequestENS_19SecurityCheckPolicyE
6022 }
6023 {
6024    bug_332335
6025    Memcheck:Param
6026    sendmsg(msg.msg_iov[0])
6027    fun:sys_sendmsg
6028    fun:_ZN8breakpad12_GLOBAL__N_122NonBrowserCrashHandlerEPKvmPv
6029    fun:_ZN15google_breakpad16ExceptionHandler12HandleSignalEiP7siginfoPv
6030    fun:_ZN15google_breakpad16ExceptionHandler13SignalHandlerEiP7siginfoPv
6031 }
6032 {
6033    bug_333992
6034    Memcheck:Leak
6035    fun:_Znw*
6036    fun:_ZN7content12_GLOBAL__N_123CreateWebFrameTestProxyEPNS_14RenderViewImplEi
6037    fun:_ZN7content15RenderFrameImpl6CreateEPNS_14RenderViewImplEi
6038 }
6039 {
6040    bug_340952
6041    Memcheck:Leak
6042    fun:_Znw*
6043    fun:_ZN7WebCore15DOMWrapperWorldC2Eii
6044    fun:_ZN7WebCore15DOMWrapperWorldC1Eii
6045    fun:_ZN7WebCore15DOMWrapperWorld6createEii
6046    fun:_ZN7WebCore15DOMWrapperWorld9mainWorldEv
6047    fun:_ZN7WebCore16ScriptControllerC2EPNS_10LocalFrameE
6048    fun:_ZN7WebCore16ScriptControllerC1EPNS_10LocalFrameE
6049    fun:_ZN7WebCore10LocalFrame*
6050    fun:_ZN7WebCore10LocalFrame*
6051    fun:_ZN7WebCore10LocalFrame6create*
6052    fun:_ZN5blink17WebLocalFrameImpl21initializeAsMainFrameEPN7WebCore4PageE
6053    fun:_ZN5blink11WebViewImpl12setMainFrameEPNS_8WebFrameE
6054    fun:_ZN7content22BufferedDataSourceTestC2Ev
6055 }
6056 {
6057    bug_340752
6058    Memcheck:Uninitialized
6059    ...
6060    fun:_ZN7WebCore4Heap19checkAndMarkPointerEPNS_7VisitorEPh
6061    fun:_ZN7WebCore11ThreadState10visitStackEPNS_7VisitorE
6062    fun:_ZN7WebCore11ThreadState5traceEPNS_7VisitorE
6063    fun:_ZN7WebCore11ThreadState10visitRootsEPNS_7VisitorE
6064    fun:_ZN7WebCore4Heap14collectGarbageENS_11ThreadState10StackState*
6065 }
6066 {
6067    bug_342591
6068    Memcheck:Param
6069    write(buf)
6070    obj:*libpthread*
6071    fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
6072    fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
6073    fun:_ZN3IPC7Channel4SendEPNS_7MessageE
6074    fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageE10scoped_ptrINS_7MessageEN4base14DefaultDeleterIS3_EEE
6075 }
6076 {
6077    bug_345432
6078    Memcheck:Leak
6079    ...
6080    fun:_ZN7content14GpuChannelHost7ConnectERKN3IPC13ChannelHandle*
6081    fun:_ZN7content14GpuChannelHost6CreateEPNS_21GpuChannelHostFactoryERKN3gpu7GPUInfoERKN3IPC13ChannelHandle*
6082    fun:_ZN7content28BrowserGpuChannelHostFactory21GpuChannelEstablishedEv
6083    fun:_ZN7content28BrowserGpuChannelHostFactory16EstablishRequest12FinishOnMainEv
6084    fun:_ZN7content28BrowserGpuChannelHostFactory16EstablishRequest4WaitEv
6085 }
6086 {
6087    bug_346336_a
6088    Memcheck:Leak
6089    fun:_Znw*
6090    fun:_ZN7content16SiteInstanceImpl10GetProcessEv
6091    fun:_ZN7content22RenderFrameHostManager21CreateRenderFrameHostEPNS_12SiteInstanceEiibb
6092    fun:_ZN7content22RenderFrameHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEii
6093    fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
6094    fun:_ZN7content15WebContentsImpl16CreateWithOpenerERKNS_11WebContents12CreateParamsEPS0_
6095    fun:_ZN7content11WebContents6CreateERKNS0_12CreateParamsE
6096    fun:_ZN7content5Shell15CreateNewWindowEPNS_14BrowserContextERK4GURLPNS_12SiteInstanceEiRKN3gfx4SizeE
6097    fun:_ZN7content20WebKitTestController20PrepareForLayoutTestERK4GURLRKN4base8FilePathEbRKSs
6098    fun:_ZN12_GLOBAL__N_110RunOneTestERKSsPbRK10scoped_ptrIN7content17BrowserMainRunnerEN4base14DefaultDeleterIS5_EEE
6099    fun:_Z16ShellBrowserMainRKN7content18MainFunctionParamsERK10scoped_ptrINS_17BrowserMainRunnerEN4base14DefaultDeleterIS4_EEE
6100    fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
6101    fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6102    fun:_ZN7content21ContentMainRunnerImpl3RunEv
6103    fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
6104 }
6105 {
6106    bug_346336_b
6107    Memcheck:Leak
6108    fun:_Znw*
6109    ...
6110    fun:_ZN7content21RenderProcessHostImpl4InitEv
6111    fun:_ZN7content18RenderViewHostImpl16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEEii
6112    fun:_ZN7content15WebContentsImpl32CreateRenderViewForRenderManagerEPNS_14RenderViewHostEiPNS_26CrossProcessFrameConnectorE
6113    fun:_ZN7content22RenderFrameHostManager14InitRenderViewEPNS_14RenderViewHostEi
6114    fun:_ZN7content22RenderFrameHostManager8NavigateERKNS_19NavigationEntryImplE
6115    fun:_ZN7content13NavigatorImpl15NavigateToEntryEPNS_19RenderFrameHostImplERKNS_19NavigationEntryImplENS_20NavigationController10ReloadTypeE
6116    fun:_ZN7content13NavigatorImpl22NavigateToPendingEntryEPNS_19RenderFrameHostImplENS_20NavigationController10ReloadTypeE
6117    fun:_ZN7content15WebContentsImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6118    fun:_ZN7content24NavigationControllerImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6119    fun:_ZN7content24NavigationControllerImpl9LoadEntryEPNS_19NavigationEntryImplE
6120    fun:_ZN7content24NavigationControllerImpl17LoadURLWithParamsERKNS_20NavigationController13LoadURLParamsE
6121    fun:_ZN7content5Shell15LoadURLForFrameERK4GURLRKSs
6122    fun:_ZN7content5Shell7LoadURLERK4GURL
6123    fun:_ZN7content20WebKitTestController20PrepareForLayoutTestERK4GURLRKN4base8FilePathEbRKSs
6124    fun:_ZN12_GLOBAL__N_110RunOneTestERKSsPbRK10scoped_ptrIN7content17BrowserMainRunnerEN4base14DefaultDeleterIS5_EEE
6125    fun:_Z16ShellBrowserMainRKN7content18MainFunctionParamsERK10scoped_ptrINS_17BrowserMainRunnerEN4base14DefaultDeleterIS4_EEE
6126    fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
6127    fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6128    fun:_ZN7content21ContentMainRunnerImpl3RunEv
6129 }
6130 {
6131    bug_347683
6132    Memcheck:Leak
6133    fun:_Znw*
6134    fun:_ZNK13LoginDatabase9GetLoginsERKN8autofill12PasswordFormEPSt6vectorIPS1_SaIS5_EE
6135    fun:_ZN50LoginDatabaseTest_UpdateIncompleteCredentials_Test8TestBodyEv
6136 }
6137 {
6138    bug_347967
6139    Memcheck:Uninitialized
6140    fun:unpack_RGB*888
6141    fun:_mesa_unpack_rgba_row
6142    fun:slow_read_rgba_pixels
6143    fun:read_rgba_pixels
6144    fun:_mesa_readpixels
6145    ...
6146    fun:shared_dispatch_stub_*
6147    ...
6148    fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
6149    fun:_ZN3gpu13CommandParser14ProcessCommandEv
6150    fun:_ZN3gpu12GpuScheduler10PutChangedEv
6151 }
6152 {
6153    bug_348863
6154    Memcheck:Unaddressable
6155    fun:_ZNK7WebCore32PlatformSpeechSynthesisUtterance6clientEv
6156    fun:_ZN7WebCore15SpeechSynthesis17didFinishSpeakingEN3WTF10PassRefPtrINS_32PlatformSpeechSynthesisUtteranceEEE
6157    fun:_ZN7WebCore29PlatformSpeechSynthesizerMock16speakingFinishedEPNS_5TimerIS0_EE
6158    fun:_ZN7WebCore5TimerINS_29PlatformSpeechSynthesizerMockEE5firedEv
6159    fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
6160    fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
6161    fun:_ZN7content17BlinkPlatformImpl9DoTimeoutEv
6162 }
6163 {
6164    bug_350809
6165    Memcheck:Uninitialized
6166    fun:_ZN7WebCore23ReplaceSelectionCommand7doApplyEv
6167    fun:_ZN7WebCore20CompositeEditCommand5applyEv
6168    fun:_ZN7WebCore6Editor28replaceSelectionWithFragmentEN3WTF10PassRefPtrINS_16DocumentFragmentEEEbbb
6169    fun:_ZN7WebCore6Editor24replaceSelectionWithTextERKN3WTF6StringEbb
6170 }
6171 {
6172   bug_361594
6173   Memcheck:Uninitialized
6174   ...
6175   fun:*SkA8_Shader_Blitter*blitH*
6176   ...
6177   fun:*content*ScreenshotData*EncodeOnWorker*
6178 }
6179 {
6180   bug_363819
6181   Memcheck:Uninitialized
6182   fun:strlen
6183   fun:*
6184   fun:_ZN3net12_GLOBAL__N_114TestHttpClient4ReadEPSs
6185   fun:_ZN3net*HttpServerTest*
6186 }
6187 {
6188   bug_364274
6189   Memcheck:Uninitialized
6190   fun:_ZN7WebCore21RenderLayerCompositor14updateIfNeededEv
6191 }
6192 {
6193   bug_364619
6194   Memcheck:Leak
6195   fun:_Znw*
6196   fun:_ZN7content20ChildProcessLauncherC1EPNS_32SandboxedProcessLauncherDelegateEPN4base11CommandLineEiPNS0_6ClientE
6197   fun:_ZN7content21RenderProcessHostImpl4InitEv
6198   fun:_ZN7content18RenderViewHostImpl16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEEiib
6199   fun:_ZN7content15WebContentsImpl32CreateRenderViewForRenderManagerEPNS_14RenderViewHostEiPNS_26CrossProcessFrameConnectorE
6200   fun:_ZN7content22RenderFrameHostManager14InitRenderViewEPNS_14RenderViewHostEi
6201   fun:_ZN7content22RenderFrameHostManager8NavigateERKNS_19NavigationEntryImplE
6202   fun:_ZN7content13NavigatorImpl15NavigateToEntryEPNS_19RenderFrameHostImplERKNS_19NavigationEntryImplENS_20NavigationController10ReloadTypeE
6203   fun:_ZN7content13NavigatorImpl22NavigateToPendingEntryEPNS_19RenderFrameHostImplENS_20NavigationController10ReloadTypeE
6204   fun:_ZN7content15WebContentsImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6205   fun:_ZN7content24NavigationControllerImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6206   fun:_ZN7content24NavigationControllerImpl9LoadEntryEPNS_19NavigationEntryImplE
6207   fun:_ZN7content24NavigationControllerImpl17LoadURLWithParamsERKNS_20NavigationController13LoadURLParamsE
6208   fun:_ZN7content5Shell15LoadURLForFrameERK4GURLRKSs
6209   fun:_ZN7content5Shell7LoadURLERK4GURL
6210   fun:_ZN7content20WebKitTestController20PrepareForLayoutTestERK4GURLRKN4base8FilePathEbRKSs
6211   fun:_ZN12_GLOBAL__N_110RunOneTestERKSsPbRK10scoped_ptrIN7content17BrowserMainRunnerEN4base14DefaultDeleterIS5_EEE
6212   fun:_Z16ShellBrowserMainRKN7content18MainFunctionParamsERK10scoped_ptrINS_17BrowserMainRunnerEN4base14DefaultDeleterIS4_EEE
6213   fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
6214   fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6215   fun:_ZN7content21ContentMainRunnerImpl3RunEv
6216   fun:_ZN7content11ContentMainERKNS_17ContentMainParamsE
6217 }
6218 {
6219   bug_364619_b
6220   Memcheck:Leak
6221   fun:_Znw*
6222   fun:_ZN7content21RenderProcessHostImpl4InitEv
6223   fun:_ZN7content18RenderViewHostImpl16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEEiib
6224   fun:_ZN7content15WebContentsImpl32CreateRenderViewForRenderManagerEPNS_14RenderViewHostEiPNS_26CrossProcessFrameConnectorE
6225   fun:_ZN7content22RenderFrameHostManager14InitRenderViewEPNS_14RenderViewHostEi
6226   fun:_ZN7content22RenderFrameHostManager8NavigateERKNS_19NavigationEntryImplE
6227   fun:_ZN7content13NavigatorImpl15NavigateToEntryEPNS_19RenderFrameHostImplERKNS_19NavigationEntryImplENS_20NavigationController10ReloadTypeE
6228   fun:_ZN7content13NavigatorImpl22NavigateToPendingEntryEPNS_19RenderFrameHostImplENS_20NavigationController10ReloadTypeE
6229   fun:_ZN7content15WebContentsImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6230   fun:_ZN7content24NavigationControllerImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6231   fun:_ZN7content24NavigationControllerImpl9LoadEntryEPNS_19NavigationEntryImplE
6232   fun:_ZN7content24NavigationControllerImpl17LoadURLWithParamsERKNS_20NavigationController13LoadURLParamsE
6233   fun:_ZN7content5Shell15LoadURLForFrameERK4GURLRKSs
6234   fun:_ZN7content5Shell7LoadURLERK4GURL
6235   fun:_ZN7content20WebKitTestController20PrepareForLayoutTestERK4GURLRKN4base8FilePathEbRKSs
6236   fun:_ZN12_GLOBAL__N_110RunOneTestERKSsPbRK10scoped_ptrIN7content17BrowserMainRunnerEN4base14DefaultDeleterIS5_EEE
6237   fun:_Z16ShellBrowserMainRKN7content18MainFunctionParamsERK10scoped_ptrINS_17BrowserMainRunnerEN4base14DefaultDeleterIS4_EEE
6238   fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
6239   fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6240   fun:_ZN7content21ContentMainRunnerImpl3RunEv
6241   fun:_ZN7content11ContentMainERKNS_17ContentMainParamsE
6242 }
6243 {
6244   bug_364619_c
6245   Memcheck:Leak
6246   fun:_Znw*
6247   fun:_ZN7content21RenderProcessHostImpl20CreateMessageFiltersEv
6248   fun:_ZN7content21RenderProcessHostImpl4InitEv
6249   fun:_ZN7content18RenderViewHostImpl16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEEiib
6250   fun:_ZN7content15WebContentsImpl32CreateRenderViewForRenderManagerEPNS_14RenderViewHostEiPNS_26CrossProcessFrameConnectorE
6251   fun:_ZN7content22RenderFrameHostManager14InitRenderViewEPNS_14RenderViewHostEi
6252   fun:_ZN7content22RenderFrameHostManager8NavigateERKNS_19NavigationEntryImplE
6253   fun:_ZN7content13NavigatorImpl15NavigateToEntryEPNS_19RenderFrameHostImplERKNS_19NavigationEntryImplENS_20NavigationController10ReloadTypeE
6254   fun:_ZN7content13NavigatorImpl22NavigateToPendingEntryEPNS_19RenderFrameHostImplENS_20NavigationController10ReloadTypeE
6255   fun:_ZN7content15WebContentsImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6256   fun:_ZN7content24NavigationControllerImpl22NavigateToPendingEntryENS_20NavigationController10ReloadTypeE
6257   fun:_ZN7content24NavigationControllerImpl9LoadEntryEPNS_19NavigationEntryImplE
6258   fun:_ZN7content24NavigationControllerImpl17LoadURLWithParamsERKNS_20NavigationController13LoadURLParamsE
6259   fun:_ZN7content5Shell15LoadURLForFrameERK4GURLRKSs
6260   fun:_ZN7content5Shell7LoadURLERK4GURL
6261   fun:_ZN7content20WebKitTestController20PrepareForLayoutTestERK4GURLRKN4base8FilePathEbRKSs
6262   fun:_ZN12_GLOBAL__N_110RunOneTestERKSsPbRK10scoped_ptrIN7content17BrowserMainRunnerEN4base14DefaultDeleterIS5_EEE
6263   fun:_Z16ShellBrowserMainRKN7content18MainFunctionParamsERK10scoped_ptrINS_17BrowserMainRunnerEN4base14DefaultDeleterIS4_EEE
6264   fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
6265   fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6266   fun:_ZN7content21ContentMainRunnerImpl3RunEv
6267   fun:_ZN7content11ContentMainERKNS_17ContentMainParamsE
6268 }
6269 {
6270    bug_364724
6271    Memcheck:Param
6272    write(buf)
6273    obj:/lib/x86_64-linux-gnu/libpthread-2.15.so
6274    fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
6275    fun:_ZN3IPC7Channel11ChannelImpl29OnFileCanWriteWithoutBlockingEi
6276    fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher29OnFileCanWriteWithoutBlockingEiPS0_
6277    ...
6278    fun:event_process_active
6279    fun:event_base_loop
6280 }
6281 {
6282    bug_364724b
6283    Memcheck:Uninitialized
6284    fun:_ZN4base17MD5DigestToBase16ERKNS_9MD5DigestE
6285    fun:_ZN7content16WebKitTestRunner17CaptureDumpPixelsERK8SkBitmap
6286 }
6287 {
6288    bug_364821
6289    Memcheck:Leak
6290    fun:malloc
6291    fun:_ZN3WTF10fastMallocEm
6292    fun:_ZN3WTF10RefCountedIN7WebCore11ScriptStateEEnwEm
6293    fun:_ZN7WebCore11ScriptState6createEN2v86HandleINS1_7ContextEEEN3WTF10PassRefPtrINS_15DOMWrapperWorldEEE
6294    fun:_ZN7WebCore22WorkerScriptController25initializeContextIfNeededEv
6295    fun:_ZN7WebCore22WorkerScriptController8evaluateERKN3WTF6StringES4_RKNS1_12TextPositionEPNS_31WorkerGlobalScopeExecutionStateE
6296    fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeEPN3WTF6RefPtrINS_10ErrorEventEEE
6297    fun:_ZN7WebCore12WorkerThread12workerThreadEv
6298    fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
6299    fun:_ZN3WTFL16threadEntryPointEPv
6300    fun:_ZN3WTFL19wtfThreadEntryPointEPv
6301 }
6302 {
6303    bug_365258
6304    Memcheck:Leak
6305    fun:malloc
6306    fun:_ZN3WTF10fastMallocEm
6307    fun:_ZN7WebCore8ResourcenwEm
6308    fun:_ZN7WebCoreL14createResourceENS_8Resource4TypeERKNS_15ResourceRequestERKN3WTF6StringE
6309    fun:_ZN7WebCore15ResourceFetcher18revalidateResourceERKNS_12FetchRequestEPNS_8ResourceE
6310    fun:_ZN7WebCore15ResourceFetcher15requestResourceENS_8Resource4TypeERNS_12FetchRequestE
6311    fun:_ZN7WebCore15ResourceFetcher11fetchScriptERNS_12FetchRequestE
6312    fun:_ZN7WebCore12ScriptLoader11fetchScriptERKN3WTF6StringE
6313    fun:_ZN7WebCore12ScriptLoader13prepareScriptERKN3WTF12TextPositionENS0_17LegacyTypeSupportE
6314    fun:_ZN7WebCore16HTMLScriptRunner9runScriptEPNS_7ElementERKN3WTF12TextPositionE
6315    fun:_ZN7WebCore16HTMLScriptRunner7executeEN3WTF10PassRefPtrINS_7ElementEEERKNS1_12TextPositionE
6316    fun:_ZN7WebCore18HTMLDocumentParser30runScriptsForPausedTreeBuilderEv
6317    fun:_ZN7WebCore18HTMLDocumentParser38processParsedChunkFromBackgroundParserEN3WTF10PassOwnPtrINS0_11ParsedChunkEEE
6318    fun:_ZN7WebCore18HTMLDocumentParser23pumpPendingSpeculationsEv
6319    fun:_ZN7WebCore18HTMLDocumentParser41didReceiveParsedChunkFromBackgroundParserEN3WTF10PassOwnPtrINS0_11ParsedChunkEEE
6320    fun:_ZN3WTF15FunctionWrapperIMN7WebCore18HTMLDocumentParserEFvNS_10PassOwnPtrINS2_11ParsedChunkEEEEEclERKNS_7WeakPtrIS2_EES5_
6321    fun:_ZN3WTF17BoundFunctionImplINS_15FunctionWrapperIMN7WebCore18HTMLDocumentParserEFvNS_10PassOwnPtrINS3_11ParsedChunkEEEEEEFvNS_7WeakPtrIS3_EES6_EEclEv
6322    fun:_ZNK3WTF8FunctionIFvvEEclEv
6323    fun:_ZN3WTFL18callFunctionObjectEPv
6324 }
6325 {
6326    bug_365259
6327    Memcheck:Leak
6328    fun:malloc
6329    fun:_ZN3WTF10fastMallocEm
6330    fun:_ZN3WTF10RefCountedIN7WebCore20IDBDatabaseCallbacksEEnwEm
6331    fun:_ZN7WebCore20IDBDatabaseCallbacks6createEv
6332    fun:_ZN7WebCore10IDBFactory12openInternalEPNS_16ExecutionContextERKN3WTF6StringElRNS_14ExceptionStateE
6333    fun:_ZN7WebCore10IDBFactory4openEPNS_16ExecutionContextERKN3WTF6StringERNS_14ExceptionStateE
6334    fun:_ZN7WebCore20IDBFactoryV8InternalL10openMethodERKN2v820FunctionCallbackInfoINS1_5ValueEEE
6335    fun:_ZN7WebCore20IDBFactoryV8InternalL18openMethodCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
6336 }
6337 {
6338    bug_367809_a
6339    Memcheck:Leak
6340    fun:_Znw*
6341    fun:_ZN4mojo6common13HandleWatcher5StartERKNS_6HandleEjmRKN4base8CallbackIFviEEE
6342    fun:_ZN4mojo8internal12_GLOBAL__N_19AsyncWaitEP15MojoAsyncWaiterjjmPFvPviES4_
6343    fun:_ZN4mojo8internal9Connector14WaitToReadMoreEv
6344    fun:_ZN4mojo8internal9ConnectorC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEP15MojoAsyncWaiter
6345    fun:_ZN4mojo8internal6RouterC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEP15MojoAsyncWaiter
6346    fun:_ZN4mojo9RemotePtrINS_11ShellClientEE5StateC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEPNS_5ShellEPNS_12ErrorHandlerEP15MojoAsyncWaiter
6347    fun:_ZN4mojo9RemotePtrINS_11ShellClientEE5resetENS_16ScopedHandleBaseINS_15InterfaceHandleIS1_EEEEPNS_5ShellEPNS_12ErrorHandlerEP15MojoAsyncWaiter
6348    fun:_ZN7content19MojoApplicationHost4InitEv
6349 }
6350 {
6351    bug_367809_b
6352    Memcheck:Leak
6353    fun:_Znw*
6354    fun:_ZN4mojo8internal12_GLOBAL__N_19AsyncWaitEP15MojoAsyncWaiterjjmPFvPviES4_
6355    fun:_ZN4mojo8internal9Connector14WaitToReadMoreEv
6356    fun:_ZN4mojo8internal9ConnectorC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEP15MojoAsyncWaiter
6357    fun:_ZN4mojo8internal6RouterC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEP15MojoAsyncWaiter
6358    fun:_ZN4mojo9RemotePtrINS_11ShellClientEE5StateC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEPNS_5ShellEPNS_12ErrorHandlerEP15MojoAsyncWaiter
6359    fun:_ZN4mojo9RemotePtrINS_11ShellClientEE5resetENS_16ScopedHandleBaseINS_15InterfaceHandleIS1_EEEEPNS_5ShellEPNS_12ErrorHandlerEP15MojoAsyncWaiter
6360    fun:_ZN7content19MojoApplicationHost4InitEv
6361 }
6362 {
6363    bug_367809_c
6364    Memcheck:Leak
6365    fun:_Znw*
6366    fun:_ZN4mojo8internal10SharedDataIPNS0_6RouterEEC1ERKS3_
6367    fun:_ZN4mojo8internal6RouterC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEP15MojoAsyncWaiter
6368    fun:_ZN4mojo9RemotePtrINS_11ShellClientEE5StateC1ENS_16ScopedHandleBaseINS_17MessagePipeHandleEEEPNS_5ShellEPNS_12ErrorHandlerEP15MojoAsyncWaiter
6369    fun:_ZN4mojo9RemotePtrINS_11ShellClientEE5resetENS_16ScopedHandleBaseINS_15InterfaceHandleIS1_EEEEPNS_5ShellEPNS_12ErrorHandlerEP15MojoAsyncWaiter
6370    fun:_ZN7content19MojoApplicationHost4InitEv
6371 }
6372 {
6373    bug_369843
6374    Memcheck:Leak
6375    fun:_Znw*
6376    fun:_ZN7content27ServiceWorkerContextWrapper12InitInternalERKN4base8FilePathEPNS1_19SequencedTaskRunnerEPN5quota17QuotaManagerProxyE
6377 }
6378 {
6379    bug_370206
6380    Memcheck:Leak
6381    fun:malloc
6382    fun:_ZN3WTF16DefaultAllocator15backingAllocateEm
6383    fun:_ZN3WTF16DefaultAllocator13backingMallocIPN7WebCore14InlineIteratorEvEET_m
6384    ...
6385    fun:_ZN3WTF17HashMapTranslatorINS_18HashMapValueTraitsINS_10HashTraitsIPN7WebCore7BidiRun*
6386 }
6387 {
6388    bug_370210
6389    Memcheck:Leak
6390    fun:_Znw*
6391    fun:_ZN7WebCore20InternalsGeolocation24setGeolocationClientMockERNS_9InternalsEPNS_8DocumentE
6392    fun:_ZN7WebCore19InternalsV8InternalL30setGeolocationClientMockMethodERKN2v820FunctionCallbackInfoINS1_5ValueEEE
6393    fun:_ZN7WebCore19InternalsV8InternalL38setGeolocationClientMockMethodCallbackERKN2v820FunctionCallbackInfoINS1_5ValueEEE
6394    fun:_ZN2v88internal25FunctionCallbackArguments4CallEPFvRKNS_20FunctionCallbackInfoINS_5ValueEEEE
6395 }
6396 {
6397    bug_370327
6398    Memcheck:Leak
6399    fun:_Znw*
6400    fun:_ZN2v88internal6Parser12ParseProgramEv
6401    fun:_ZN2v88internal6Parser5ParseEv
6402    fun:_ZN2v88internal6Parser5ParseEPNS0_15CompilationInfoEb
6403    fun:_ZN2v88internalL15CompileToplevelEPNS0_15CompilationInfoE*
6404    fun:_ZN2v88internal8Compiler13CompileScriptENS0_6HandleINS0_6StringEEENS2_INS0_6ObjectEEEiibNS2_INS0_7Context*
6405    fun:_ZN2v814ScriptCompiler14CompileUnboundEPNS_7IsolateEPNS0_6SourceENS0_14CompileOptionsE
6406 }
6407 {
6408   bug_371844
6409   Memcheck:Uninitialized
6410   fun:bcmp
6411   fun:_ZNK7content15GamepadProvider8PadState5MatchERKN5blink10WebGamepadE
6412   fun:_ZN7content15GamepadProvider6DoPollEv
6413 }
6414 {
6415    bug_371860
6416    Memcheck:Leak
6417    fun:_Znw*
6418    ...
6419    fun:_ZN8feedback20FeedbackUploaderTestC1Ev
6420    fun:_ZN8feedback*FeedbackUploaderTest*
6421    fun:_ZN7testing8internal15TestFactoryImplIN8feedback*
6422 }
6423 {
6424    bug_371974
6425    Memcheck:Leak
6426    fun:_Znw*
6427    fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
6428    fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
6429    fun:_ZN4base26PostTaskAndReplyWithResultIbbEEbPNS_10TaskRunnerERKN15tracked_objects8LocationERKNS_8CallbackIFT_vEEERKNS7_IFvT0_EEE
6430    fun:_ZN4base19ImportantFileWriter8WriteNowERKSs
6431 }