blob: 6d773b747f2eb0e2fd8ed2b6a95fc6400bbaf4d6 [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001# 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 # See also http://www.gnome.org/~johan/gtk.suppression
42 # (which has a smattering of similar pango suppressions)
43 pango_font_leak_todo
44 Memcheck:Leak
45 ...
46 fun:FcFontRenderPrepare
47 obj:*
48 fun:pango_font_map_load_fontset
49}
50{
51 pango_font_leak_todo_2
52 Memcheck:Leak
53 fun:malloc
54 fun:g_malloc
55 fun:g_strdup
56 fun:pango_script_get_sample_language
57 ...
58 fun:pango_font_get_metrics
59}
60{
61 pango_font_leak_todo_3
62 Memcheck:Leak
63 ...
64 fun:FcFontRenderPrepare
65 ...
66 fun:pango_itemize_with_base_dir
67}
68{
69 pango_font_leak_todo_4
70 Memcheck:Leak
71 ...
72 fun:FcFontRenderPrepare
73 ...
74 fun:pango_ot_buffer_output
75}
76{
77 pango_font_leak_todo_5
78 Memcheck:Leak
79 ...
80 fun:FcFontRenderPrepare
81 ...
82 fun:pango_context_get_metrics
83}
84{
85 pango_font_leak_todo_6
86 Memcheck:Leak
87 ...
88 fun:FcDefaultSubstitute
89 ...
90 fun:pango_itemize_with_base_dir
91}
92{
93 # Similar to fontconfig_bug_8428 below. Reported in
94 # https://bugs.freedesktop.org/show_bug.cgi?id=8215
95 fontconfig_bug_8215
96 Memcheck:Leak
97 fun:malloc
98 fun:FcPatternObjectInsertElt
99 fun:FcPatternObjectAddWithBinding
100}
101{
102 # Fontconfig leak, seen in shard 16 of 20 of ui_tests
103 # See https://bugs.freedesktop.org/show_bug.cgi?id=8428
104 # and http://www.gnome.org/~johan/gtk.suppression
105 fontconfig_bug_8428
106 Memcheck:Leak
107 ...
108 fun:realloc
109 fun:FcPatternObjectInsertElt
110 fun:FcPatternObjectAddWithBinding
111}
112{
113 # Another permutation of previous leak.
114 fontconfig_bug_8428_2
115 Memcheck:Leak
116 ...
117 fun:realloc
118 fun:FcPatternObjectInsertElt
119 fun:FcPatternObjectAdd
120}
121{
122 bug_18590 (Third Party)
123 Memcheck:Leak
124 ...
125 fun:malloc
126 fun:FcConfigValues
127 fun:FcConfigValues
128 ...
129 fun:FcConfigValues
130 fun:FcConfigValues
131}
132{
133 bug_18590a (Third Party)
134 Memcheck:Leak
135 fun:malloc
136 fun:FcConfigValues
137 fun:FcConfigSubstituteWithPat
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100138 fun:*SkFontConfigInterfaceDirect*match*
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000139}
140{
141 bug_46177_a (Third Party)
142 Memcheck:Leak
143 ...
144 fun:FcCharSetOperate
145 fun:FcFontSetSort
146 fun:FcFontSort
147 ...
148 fun:pango_layout_get_pixel_size
149}
150{
151 bug_46177_b (Third Party)
152 Memcheck:Leak
153 ...
154 fun:FcCharSetFindLeafCreate
155 fun:FcCharSetAddLeaf
156 fun:FcCharSetOperate
157 fun:FcFontSetSort
158 fun:FcFontSort
159 ...
160 fun:pango_layout_get_iter
161}
162{
163 bug_46177_c (Third Party)
164 Memcheck:Leak
165 ...
166 fun:FcCharSetFindLeafCreate
167 fun:FcCharSetAddLeaf
168 fun:FcCharSetOperate
169 fun:FcFontSetSort
170 fun:FcFontSort
171 ...
172 fun:pango_layout_line_get_extents
173}
174{
175 bug_46177_d (Third Party)
176 Memcheck:Leak
177 fun:malloc
178 fun:FcFontSetCreate
179 fun:FcFontSetSort
180 fun:FcFontSort
181}
182{
183 bug_46177_e (Third Party)
184 Memcheck:Leak
185 ...
186 fun:FcCharSetFindLeafCreate
187 fun:FcCharSetAddChar
188}
189{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000190 bug_181572 (Skia -- global cache of typefaces)
191 Memcheck:Leak
192 fun:_Znw*
193 fun:_ZN10SkFontHost14CreateTypefaceEPK10SkTypefacePKcNS0_5StyleE
194 fun:_ZN10SkTypeface14CreateFromNameEPKcNS_5StyleE
195}
196{
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000197 dlopen invalid read, probably a bug in glibc. TODO(dkegel): file glibc bug
198 Memcheck:Uninitialized
199 ...
200 fun:dlopen@@GLIBC_2.1
201 fun:PR_LoadLibraryWithFlags
202}
203{
204 dlopen leak on error. See http://sourceware.org/bugzilla/show_bug.cgi?id=12878.
205 Memcheck:Leak
206 fun:calloc
207 fun:_dlerror_run
208 fun:dlopen@@GLIBC_2.1
209}
210{
211 glibc leak. See also http://sources.redhat.com/bugzilla/show_bug.cgi?id=2451
212 Memcheck:Leak
213 fun:malloc
214 fun:_dl_map_object_from_fd
215}
216{
217 Pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug.
218 Memcheck:Leak
219 ...
220 fun:NSS_NoDB_Init
221}
222{
223 Another pure NSS leak, does not involve glibc. TODO(dkegel): track down and fix or file bug. Shows up under --show-reachable=yes.
224 Memcheck:Leak
225 ...
226 fun:SECMOD_LoadUserModule
227}
228{
229 Pure NSS leak, does not involve glibc.
230 Memcheck:Leak
231 ...
232 fun:SECMOD_AddNewModule
233}
234{
235 bug_12614 (Third Party)
236 Memcheck:Leak
237 fun:?alloc
238 ...
239 fun:PR_LoadLibraryWithFlags
240 ...
241 fun:SECMOD_LoadModule
242}
243{
244 NSS leak - https://bugzilla.mozilla.org/show_bug.cgi?id=762351 - fixed in NSS 3.13.6/3.14
245 Memcheck:Leak
246 ...
247 fun:PKIX_PL_Malloc
248 ...
249 fun:PKIX_PL_OID_Create
250 ...
251 fun:cert_PKIXMakeOIDList
252 fun:cert_pkixSetParam
253 fun:CERT_PKIXVerifyCert
254}
255{
256 libc_dynamiclinker_foo
257 Memcheck:Uninitialized
258 obj:/lib*/ld-2.*.so
259 obj:/lib*/ld-2.*.so
260}
261{
262 libc_dynamiclinker_bar
263 Memcheck:Unaddressable
264 obj:/lib*/ld-2.*.so
265 obj:/lib*/ld-2.*.so
266}
267{
268 libc_dynamiclinker_bar_2
269 Memcheck:Jump
270 obj:*
271 obj:/lib*/ld-2.*.so
272}
273{
274 FIXME epoll uninitialized data 1
275 Memcheck:Param
276 epoll_ctl(epfd)
277 fun:syscall
278 fun:event_add
279}
280{
281 FIXME epoll uninitialized data 2
282 Memcheck:Param
283 epoll_ctl(epfd)
284 fun:syscall
285 fun:event_del
286}
287{
288 FIXME epoll uninitialized data 3
289 Memcheck:Param
290 epoll_wait(epfd)
291 fun:syscall
292 fun:event_base_loop
293}
294{
295 # "The section of the SQLite library identified works exactly as it should."
296 # http://www.sqlite.org/cvstrac/tktview?tn=536,39
297 # http://www.sqlite.org/cvstrac/tktview?tn=694,39
298 # http://www.sqlite.org/cvstrac/tktview?tn=964,39
299 # This looks like a case where an entire page was allocated, the header and
300 # perhaps some data was written, but the entire buffer was not written to.
301 # The SQLite authors aren't very interested in adding code to clear buffers
302 # for no reason other than pleasing valgrind, but a patch might be accepted
303 # under a macro like SQLITE_SECURE_DELETE which could be construed to apply
304 # to cases like this. (Note that we compile with SQLITE_SECURE_DELETE.)
305 bug_20653a (Third Party)
306 Memcheck:Param
307 write(buf)
308 ...
309 fun:sqlite3OsWrite
310 fun:pager_write_pagelist
311}
312{
313 bug_20653b (Third Party)
314 Memcheck:Param
315 write(buf)
316 ...
317 fun:*Write
318 fun:sqlite3OsWrite
319 ...
320 fun:pager_write
321}
322{
323 # array of weak references freed but not processed?
324 bug_16576
325 Memcheck:Leak
326 ...
327 fun:g_object_weak_ref
328 fun:g_object_add_weak_pointer
329}
330{
331 # Totem plugin leaks when we load it.
332 bug_21326 (Third Party)
333 Memcheck:Leak
334 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000335 fun:_ZN56webkit5npapi9PluginLib17ReadWebPluginInfoE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000336}
337{
338 # NSS bug https://bugzilla.mozilla.org/show_bug.cgi?id=518443
339 https://bugzilla.mozilla.org/show_bug.cgi?id=518443
340 Memcheck:Leak
341 fun:calloc
342 ...
343 fun:PORT_ZAlloc_Util
344 fun:PORT_NewArena_Util
345 fun:PK11_ImportAndReturnPrivateKey
346}
347{
348 bug_23314 (Third Party)
349 Memcheck:Unaddressable
350 fun:sqlite3PcacheClearSyncFlags
351 fun:syncJournal
352 fun:sqlite3PagerCommitPhaseOne
353 fun:sqlite3BtreeCommitPhaseOne
354}
355{
356 bug_23314b (Third Party)
357 Memcheck:Unaddressable
358 fun:sqlite3PcacheClearSyncFlags
359 fun:syncJournal
360 fun:sqlite3PagerCommitPhaseOne
361 fun:sqlite3BtreeCommitPhaseOne
362}
363{
364 http://sources.redhat.com/bugzilla/show_bug.cgi?id=5171
365 Memcheck:Leak
366 fun:calloc
367 fun:allocate_dtv
368 fun:_dl_allocate_tls
369 fun:pthread_create@@GLIBC_2.1
370}
371{
372 bug_33394 (Third Party)
373 Memcheck:Leak
374 fun:calloc
375 fun:PR_Calloc
376 fun:PR_NewLock
377 fun:_PR_UnixInit
378 fun:_PR_ImplicitInitialization
379 ...
380 fun:_ZN4base14EnsureNSPRInitEv
381}
382{
383 bug_33394_b (Third Party)
384 Memcheck:Leak
385 fun:calloc
386 fun:PR_Calloc
387 fun:PR_NewMonitor
388 fun:_PR_UnixInit
389 fun:_PR_ImplicitInitialization
390 ...
391 fun:_ZN4base14EnsureNSPRInitEv
392}
393{
394 # Looks like a leak in gtk's code when loading the im context module.
395 bug_41231 (Third Party)
396 Memcheck:Leak
397 ...
398 fun:malloc
399 fun:g_malloc
400 fun:g_strdup
401 fun:gtk_im_multicontext_get_slave
402 fun:gtk_im_multicontext_set_client_window
403 fun:gtk_im_context_set_client_window
404}
405{
406 bug_51332a (Third Party)
407 Memcheck:Leak
408 ...
409 fun:PORT_NewArena_Util
410 fun:sec_pkcs7_create_content_info
411 fun:SEC_PKCS7CreateData
412 fun:sec_pkcs12_encoder_start_context
413 fun:SEC_PKCS12Encode
414}
415{
416 bug_51332b (Third Party)
417 Memcheck:Leak
418 ...
419 fun:PORT_ArenaZAlloc_Util
420 fun:sec_pkcs7_create_content_info
421 fun:SEC_PKCS7CreateData
422 fun:sec_pkcs12_encoder_start_context
423 fun:SEC_PKCS12Encode
424}
425{
426 bug_51332c (Third Party)
427 Memcheck:Leak
428 fun:calloc
429 fun:PORT_ZAlloc_Util
430 fun:PORT_NewArena_Util
431 fun:sec_pkcs7_create_content_info
432 fun:sec_pkcs12_encoder_start_context
433 fun:SEC_PKCS12Encode
434}
435{
436 bug_51330 (Third Party)
437 Memcheck:Leak
438 ...
439 fun:p12u_DigestOpen
440 ...
441 fun:SEC_PKCS12DecoderUpdate
442}
443{
444 bug_51328a (Third Party)
445 Memcheck:Leak
446 ...
447 fun:SEC_ASN1DecoderUpdate_Util
448 ...
449 fun:SEC_ASN1DecoderUpdate_Util
450 fun:SEC_PKCS7DecoderUpdate
451 ...
452 fun:SEC_ASN1DecoderUpdate_Util
453 fun:SEC_PKCS12DecoderUpdate
454}
455{
456 bug_51328b (Third Party)
457 Memcheck:Leak
458 ...
459 fun:SEC_PKCS7DecoderStart
460 ...
461 fun:SEC_ASN1DecoderUpdate_Util
462 fun:SEC_PKCS12DecoderUpdate
463}
464{
465 # See http://sourceware.org/bugzilla/show_bug.cgi?id=14015.
466 bug_51770 (Third Party)
467 Memcheck:Leak
468 fun:calloc
469 fun:_dlerror_run
470 fun:dlsym
471}
472{
473 bug_58730_strlen_addr8 (Third Party)
474 Memcheck:Unaddressable
475 fun:__strlen_sse2
476}
477{
478 bug_58730_strlen_cond (Third Party)
479 Memcheck:Uninitialized
480 fun:__strlen_sse2
481}
482{
483 bug_58730_strcmp_addr8 (Third Party)
484 Memcheck:Unaddressable
485 fun:__strcmp_ssse3
486}
487{
488 bug_58730_strcmp_cond (Third Party)
489 Memcheck:Uninitialized
490 fun:__strcmp_ssse3
491}
492{
493 bug_58730_strcmp_value8 (Third Party)
494 Memcheck:Uninitialized
495 fun:__strcmp_ssse3
496}
497{
498 bug_58730_strncmp_value8 (Third Party)
499 Memcheck:Uninitialized
500 fun:__strncmp_ssse3
501}
502{
503 bug_58730_memmove_value4 (Third Party)
504 Memcheck:Uninitialized
505 fun:__memmove_ssse3
506}
507{
508 bug_58730_memmove_cond (Third Party)
509 Memcheck:Uninitialized
510 fun:__memmove_ssse3
511}
512{
513 bug_58730_memcpy_value4 (Third Party)
514 Memcheck:Uninitialized
515 fun:__memcpy_ssse3
516}
517{
518 bug_58730_memcpy_addr8 (Third Party)
519 Memcheck:Unaddressable
520 fun:__memcpy_ssse3
521}
522{
523 bug_58730_memcpy_cond (Third Party)
524 Memcheck:Uninitialized
525 fun:__memcpy_ssse3
526}
527{
528 bug_58730_memmove_chk_cond (Third Party)
529 Memcheck:Uninitialized
530 fun:__memmove_chk_ssse3
531}
532{
533 bug_58730_libc.so_addr8 (Third Party)
534 Memcheck:Unaddressable
535 obj:/lib/libc-2.*.so
536}
537{
538 bug_58730_libc.so_cond (Third Party)
539 Memcheck:Uninitialized
540 obj:/lib/libc-2.*.so
541}
542{
543 bug_58730_libc.so_value8 (Third Party)
544 Memcheck:Uninitialized
545 obj:/lib/libc-2.11.1.so
546}
Ben Murdocheb525c52013-07-10 11:40:50 +0100547# net::SniffXML() clearly tries to read < 8 bytes, but strncasecmp() reads 8.
548{
549 bug_58730_strncasecmp_uninit (Third Party)
550 Memcheck:Uninitialized
551 ...
552 fun:strncasecmp
553 fun:_ZN4base11strncasecmpEPKcS1_m
554 fun:_ZN3netL8SniffXMLEPKcmPbPSs
555}
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000556{
557 # I believe it's a bug in gtk+-2.12.x and should already be fixed in recent gtk.
558 bug_61685 (Third Party)
559 Memcheck:Leak
560 fun:malloc
561 ...
562 fun:gtk_text_buffer_select_range
563 fun:*OmniboxViewGtk16SetSelectedRange*
564}
565{
566 bug_66941 (Third Party)
567 Memcheck:Leak
568 ...
569 fun:STAN_ChangeCertTrust
570 fun:CERT_ChangeCertTrust
571}
572{
573 leaks in bash
574 Memcheck:Leak
575 ...
576 obj:/bin/bash
577}
578{
579 bug_73000_fixed_upstream_in_gtk
580 Memcheck:Uninitialized
581 fun:clipboard_clipboard_buffer_received
582 ...
583 fun:gtk_text_view_key_press_event
584 fun:_ZN14OmniboxViewGtk14HandleKeyPressEP10_GtkWidgetP12_GdkEventKey
585}
586{
587 bug_76386a (Third Party)
588 Memcheck:Leak
589 fun:_Znw*
590 fun:_ZNSs4_Rep9_S_createE*RKSaIcE
591 ...
592 fun:_ZNSsC1*KS*
593}
594{
595 bug_76386b (Third Party)
596 Memcheck:Leak
597 fun:_Znw*
598 fun:_ZNSs4_Rep9_S_createE*RKSaIcE
599 fun:_ZNSs4_Rep8_M_cloneERKSaIcE*
600}
601{
602 bug_76386c (Third Party)
603 Memcheck:Leak
604 fun:_Znw*
605 fun:_ZNSs4_Rep9_S_createE*RKSaIcE
606 fun:_ZNSs9_M_mutateEjjj
607}
608{
609 bug_80378_fixed_upstream_for_next_gtk
610 Memcheck:Leak
611 fun:malloc
612 fun:g_malloc
613 fun:g_slice_alloc
614 ...
615 fun:gtk_window_group_list_windows
616 fun:_ZN8gtk_util*AppModal*
617}
618{
619 getpwuid_and_getgrouplist
620 Memcheck:Leak
621 fun:malloc
622 fun:nss_parse_service_list
623 fun:__nss_database_lookup
624 obj:*
625 ...
626 fun:get*
627}
628{
629 dbus_x64_leaks
630 Memcheck:Leak
631 ...
632 obj:/usr/bin/dbus-launch
633}
634{
635 pulseaudio: pa_set_env_and_record
636 Memcheck:Leak
637 fun:malloc
638 fun:realloc
639 fun:pa_xrealloc
640 fun:pa_sprintf_malloc
641 fun:pa_set_env
642 fun:pa_set_env_and_record
643 fun:main
644}
645
646# The following stack suppresses Memcheck false positives on NaCl browser_tests
647# See https://bugs.kde.org/show_bug.cgi?id=270709#c4 for possible reason
648{
649 bug_101755 valgrind_bitfields_false_positive
650 Memcheck:Uninitialized
651 ...
652 fun:_ZN7WebCore13WidthIterator*
653 ...
654 fun:_ZNK7WebCore4Font*
655}
656
657# Invalid frees from exit() and accept().
658{
659 bug_108618 (Third party)
660 Memcheck:Free
661 fun:free
662 fun:__libc_freeres
663 fun:_vgnU_freeres
664}
665
666# XRandRInfo object seems to be leaking inside XRRFindDisplay. This happens the
667# first time it is called, no matter who the caller is. We have observed this
668# problem with both XRRSelectInput and XRRQueryExtension.
669{
670 bug_119677
671 Memcheck:Leak
672 fun:malloc
673 fun:XRRFindDisplay
674}
675{
676 Flash Player Leak
677 Memcheck:Leak
678 ...
679 obj:/usr/lib/flashplugin-installer/libflashplayer.so
680}
681{
682 Flash Player Unaddressable
683 Memcheck:Unaddressable
684 ...
685 obj:/usr/lib/flashplugin-installer/libflashplayer.so
686}
687{
688 Flash Player Uninitialized
689 Memcheck:Uninitialized
690 ...
691 obj:/usr/lib/flashplugin-installer/libflashplayer.so
692}
693{
694 Occasional leak inside setlocale()
695 Memcheck:Leak
696 fun:malloc
697 ...
698 fun:_nl_make_l10nflist
699 fun:_nl_find_locale
700 fun:setlocale
701 fun:_ZN12_GLOBAL__N_121ContentMainRunnerImpl10InitializeEiPPKcPN7content19ContentMainDelegateE
702 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
703 fun:ChromeMain
704}
705{
706 Occasional leak inside gdk_init()
707 Memcheck:Leak
708 fun:malloc
709 ...
710 fun:_nl_find_domain
711 fun:__dcigettext
712 fun:gdk_screen_class_intern_init
713 fun:g_type_class_ref
714 fun:g_type_class_ref
715 fun:g_object_newv
716 fun:g_object_new
717 fun:_gdk_x11_screen_new
718 fun:gdk_display_open
719 fun:gdk_display_open_default_libgtk_only
720 fun:gdk_init_check
721 fun:gdk_init
722}
723{
724 bug_130770_a
725 Memcheck:Unaddressable
726 ...
727 fun:_mesa_glsl_compile_shader
728}
729{
730 bug_130770_b
731 Memcheck:Unaddressable
732 ...
733 fun:_mesa_glsl_link_shader
734}
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000735# leak in OSMesa used to run compositor_unittests in bots.
736{
737 bug_148477
738 Memcheck:Leak
739 fun:malloc
740 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000741 fun:_ZN3gfx9GLApiBase17glCompileShaderFnEj
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000742 fun:_ZN6webkit3gpu33WebGraphicsContext3DInProcessImpl13compileShaderEj
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000743 fun:_ZN2cc18ProgramBindingBase10LoadShaderEPN6WebKit20WebGraphicsContext3DEjRKSs
744 fun:_ZN2cc18ProgramBindingBase4InitEPN6WebKit20WebGraphicsContext3DERKSsS5_
745}
746{
747 bug_148477_link
748 Memcheck:Leak
749 fun:malloc
750 ...
751 fun:_ZN3gfx9GLApiBase15glLinkProgramFnEj
752 fun:_ZN6webkit3gpu33WebGraphicsContext3DInProcessImpl11linkProgramEj
753 fun:_ZN2cc18ProgramBindingBase4LinkEPN6WebKit20WebGraphicsContext3DE
754 fun:_ZN2cc14ProgramBindingINS_*
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000755}
756# bug_todo_getdelim, bug_todo_getdelim2 and bug_todo_grep used to happen on
757# Google Lucid workstations only.
758{
759 bug_todo_getdelim
760 Memcheck:Leak
761 fun:malloc
762 fun:getdelim
763 ...
764 fun:call_init
765 fun:_dl_init
766}
767{
768 bug_todo_getdelim2
769 Memcheck:Leak
770 fun:malloc
771 fun:getdelim
772 obj:/lib/libselinux.so.1
773 obj:/lib/libselinux.so.1
774 obj:/lib/libselinux.so.1
775}
776{
777 bug_todo_grep
778 Memcheck:Leak
779 fun:malloc
780 obj:/bin/grep
781 obj:/bin/grep
782}
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +0000783{
784 Ubuntu_Precise_Fontconfig_Optimized_Code
785 Memcheck:Unaddressable
786 fun:FcConfigFileExists
787}
788{
789 Ubuntu_Precise_Itoa_Optimized_Code
790 Memcheck:Uninitialized
791 fun:_itoa_word
792 fun:vfprintf
793 fun:__vsnprintf_chk
794 fun:__snprintf_chk
795}
796{
797 Ubuntu_Precise_Wcscmp_Optimized_Code_In_Tests
798 Memcheck:Uninitialized
799 fun:wcscmp
800 fun:_ZN7testing8internal6String17WideCStringEqualsEPKwS3_
801}
802{
803 # Most plugins return a constant char * string, but this totem plugin
804 # uses printf and allocates one.
805 Ubuntu_Precise_totem_mime_desc_leak
806 Memcheck:Leak
807 fun:g_strdup_printf
808 obj:*/libtotem-cone-plugin.so
809 fun:_ZN6webkit5npapi9PluginLib17ReadWebPluginInfoERKN4base8FilePathEPNS_13WebPluginInfoE
810}
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100811{
812 glib/gthread malloc leak in component build
813 Memcheck:Leak
814 fun:malloc
815 ...
816 fun:g_thread_proxy
817}
818{
819 glib/gthread calloc leak in component build
820 Memcheck:Leak
821 fun:calloc
822 ...
823 fun:g_thread_proxy
824}
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000825
826#-----------------------------------------------------------------------
827# 2. intentional unit test errors, or stuff that is somehow a false positive
828# in our own code, or stuff that is so trivial it's not worth fixing
829
830# See tools/valgrind/memcheck_analyze.py before modifying sanity tests.
831{
832 Memcheck sanity test 01 (memory leak).
833 Memcheck:Leak
834 fun:_Zna*
835 fun:_ZN4base31ToolsSanityTest_MemoryLeak_Test8TestBodyEv
836}
837{
838 Memcheck sanity test 02 (malloc/read left).
839 Memcheck:Unaddressable
840 fun:*ReadValueOutOfArrayBoundsLeft*
841 ...
842 fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
843}
844{
845 Memcheck sanity test 03 (malloc/read right).
846 Memcheck:Unaddressable
847 fun:*ReadValueOutOfArrayBoundsRight*
848 ...
849 fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
850}
851{
852 Memcheck sanity test 04 (malloc/write left).
853 Memcheck:Unaddressable
854 fun:*WriteValueOutOfArrayBoundsLeft*
855 ...
856 fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
857}
858{
859 Memcheck sanity test 05 (malloc/write right).
860 Memcheck:Unaddressable
861 fun:*WriteValueOutOfArrayBoundsRight*
862 ...
863 fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
864}
865{
866 Memcheck sanity test 06 (new/read left).
867 Memcheck:Unaddressable
868 fun:*ReadValueOutOfArrayBoundsLeft*
869 ...
870 fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
871}
872{
873 Memcheck sanity test 07 (new/read right).
874 Memcheck:Unaddressable
875 fun:*ReadValueOutOfArrayBoundsRight*
876 ...
877 fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
878}
879{
880 Memcheck sanity test 08 (new/write left).
881 Memcheck:Unaddressable
882 fun:*WriteValueOutOfArrayBoundsLeft*
883 ...
884 fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
885}
886{
887 Memcheck sanity test 09 (new/write right).
888 Memcheck:Unaddressable
889 fun:*WriteValueOutOfArrayBoundsRight*
890 ...
891 fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
892}
893{
894 Memcheck sanity test 10 (write after free).
895 Memcheck:Unaddressable
896 fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
897}
898{
899 Memcheck sanity test 11 (write after delete).
900 Memcheck:Unaddressable
901 fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
902}
903{
904 Memcheck sanity test 12 (array deleted without []).
905 Memcheck:Free
906 ...
907 fun:_ZN4base46ToolsSanityTest_ArrayDeletedWithoutBraces_Test8TestBodyEv
908}
909{
910 Memcheck sanity test 13 (single element deleted with []).
911 Memcheck:Free
912 ...
913 fun:_ZN4base51ToolsSanityTest_SingleElementDeletedWithBraces_Test8TestBodyEv
914}
915{
916 Memcheck sanity test 14 (malloc/read uninit).
917 Memcheck:Uninitialized
918 fun:*ReadUninitializedValue*
919 ...
920 fun:_ZN4base43ToolsSanityTest_AccessesToMallocMemory_Test8TestBodyEv
921}
922{
923 Memcheck sanity test 15 (new/read uninit).
924 Memcheck:Uninitialized
925 fun:*ReadUninitializedValue*
926 ...
927 fun:_ZN4base40ToolsSanityTest_AccessesToNewMemory_Test8TestBodyEv
928}
929{
930 bug_86301 This test explicitly verifies PostTaskAndReply leaks the task if the originating MessageLoop has been deleted.
931 Memcheck:Leak
932 fun:_Znw*
933 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
934 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
935 fun:_ZN4base12_GLOBAL__N_169MessageLoopProxyTest_PostTaskAndReply_DeadReplyLoopDoesNotDelete_Test8TestBodyEv
936}
937{
938 logging::InitLogging never frees filename. It would be hard to free properly.
939 Memcheck:Leak
940 ...
941 fun:_ZN7logging11InitLoggingEPKcNS_18LoggingDestinationENS_15LogLockingStateENS_20OldFileDeletionStateE
942}
943{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100944 Linux tests don't bother to undo net::SpawnedTestServer::LoadTestRootCert().
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000945 Memcheck:Leak
946 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +0100947 fun:_ZN3net10SpawnedTestServer16LoadTestRootCertEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +0000948}
949{
950 # uitest's ResourceDispatcherTest.CrossSiteAfterCrash crashes on purpose
951 Intentional_crash
952 Memcheck:Unaddressable
953 fun:_ZN12AboutHandler10AboutCrashEv
954}
955{
956 Intentional_browser_test_crash
957 Memcheck:Unaddressable
958 fun:_ZL18CrashIntentionallyv
959 fun:_ZL19MaybeHandleDebugURLRK4GURL
960 fun:_ZN14RenderViewImpl10OnNavigateERK23ViewMsg_Navigate_Params
961}
962{
963 # Non-joinable thread doesn't clean up all state on program exit
964 # very common in ui tests
965 bug_16096 (WontFix)
966 Memcheck:Leak
967 fun:_Znw*
968 fun:_ZNSs4_Rep9_S_createE*RKSaIcE
969 fun:_ZNSs4_Rep8_M_cloneERKSaIcE*
970 fun:_ZNSs7reserveE*
971 fun:_ZNSs6appendEPKc*
972 fun:*StringAppendV*
973 ...
974 fun:_ZN4base12StringPrintfEPKcz
975}
976{
977 # According to dglazkov, these are one-time leaks and intentional.
978 # They may go away if the change to move these off the heap lands.
979 bug_17996 (Intentional)
980 Memcheck:Leak
981 ...
982 fun:_ZN7WebCore8SVGNames4initEv
983}
984{
985 intentional_BrowserThreadTest_NotReleasedIfTargetThreadNonExistent_Test_leak
986 Memcheck:Leak
987 fun:_Znw*
988 fun:*BrowserThreadTest_NotReleasedIfTargetThreadNonExistent_Test8TestBodyEv
989}
990{
991 # This is an on demand initialization which is done and then intentionally
992 # kept around (not freed) while the process is running.
993 intentional_WebCore_XMLNames_init_leak
994 Memcheck:Leak
995 ...
996 fun:_ZN7WebCore8XMLNames4initEv
997}
998{
999 # This is WebKit wide theading initialization which is intentionally kept
1000 # around (not freed) while the process is running.
1001 intentional_WTF_ThreadIdentifierData_initialize_leak
1002 Memcheck:Leak
1003 ...
1004 fun:_ZN3WTF20ThreadIdentifierData10initializeEj
1005}
1006{
1007 # This is WebKit wide theading initialization which is intentionally kept
1008 # around (not freed) while the process is running.
1009 intentional_WTF_wtfThreadData_leak
1010 Memcheck:Leak
1011 ...
1012 fun:_ZN3WTF13wtfThreadDataEv
1013}
1014{
1015 # Intentional crash test
1016 intentional_RendererCrashTest
1017 Memcheck:Unaddressable
1018 fun:_Z*33HandleRendererErrorTestParametersRK11CommandLine
1019 fun:_Z12RendererMainRKN7content18MainFunctionParams*
1020}
1021{
1022 # PR_GetCurrentThread allocates a PRThread structure and stores it in
1023 # thread-specific data. The PRThread structure is freed by the
1024 # PR_DetachThread call in CertVerifierWorker::Run or when the thread
1025 # terminates. Since we do not shut down worker threads, the PRThread
1026 # structure created for a worker thread may be leaked at Chrome shutdown
1027 # if the worker thread did not make it to the PR_DetachThread call.
1028 bug_32624 (Intentional)
1029 Memcheck:Leak
1030 fun:calloc
1031 fun:PR_Calloc
1032 fun:PR_GetCurrentThread
1033 ...
1034 fun:_ZNK3net15X509Certificate14VerifyInternalERKSsiPNS_16CertVerifyResultE
1035 fun:_ZNK3net15X509Certificate6VerifyERKSsiPNS_16CertVerifyResultE
1036 fun:_ZN3net18CertVerifierWorker3RunEv
1037}
1038{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001039 # Intentionally leaking NSS to prevent shutdown crashes
1040 bug_61585a (Intentional)
1041 Memcheck:Leak
1042 fun:calloc
1043 ...
1044 fun:error_get_my_stack
1045}
1046{
1047 FileStream::Context can leak through WorkerPool by design
1048 Memcheck:Leak
1049 fun:_Znw*
1050 fun:_ZN3net10FileStreamC1EPNS_6NetLogE
1051}
1052{
1053 Tasks posted to WorkerPool can leak by design
1054 Memcheck:Leak
1055 fun:_Znw*
1056 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
1057 fun:_ZN4base10WorkerPool16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_b
1058}
1059{
1060 bug_61585b (Intentional)
1061 Memcheck:Leak
1062 fun:malloc
1063 fun:PL_ArenaAllocate
1064 fun:PORT_ArenaAlloc*
1065}
1066{
1067 # Histograms are used on un-joined threads, and can't be deleted atexit.
1068 Histograms via FactoryGet including Linear Custom Boolean and Basic
1069 Memcheck:Leak
1070 fun:_Znw*
1071 ...
1072 fun:_ZN4base*Histogram10FactoryGet*
1073}
1074{
1075 # Histograms are used on un-joined threads, and can't be deleted atexit.
1076 Histograms via FactoryGet including Stats for disk_cache
1077 Memcheck:Leak
1078 fun:_Znw*
1079 ...
1080 fun:_ZN10disk_cache14StatsHistogram10FactoryGet*
1081}
1082{
1083 Intentional leak for Histogram (in StatisticsRecorderTest, NotInitialized).
1084 Memcheck:Leak
1085 fun:_Znw*
1086 fun:_ZN4base42StatisticsRecorderTest_NotInitialized_Test8TestBodyEv
1087}
1088{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001089 Intentional leak for SampleMap (stores SparseHistogram counts).
1090 Memcheck:Leak
1091 ...
1092 fun:_ZN4base9SampleMap10AccumulateEii
1093 fun:_ZN4base15SparseHistogram3AddEi
1094}
1095{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001096 Intentional leak for list<const BucketRanges*>(in StatisticsRecorderTest, RegisterBucketRanges).
1097 Memcheck:Leak
1098 fun:_Znw*
1099 fun:_ZN4base18StatisticsRecorder31RegisterOrDeleteDuplicateRangesEPKNS_12BucketRangesE
1100 fun:_ZN4base48StatisticsRecorderTest_RegisterBucketRanges_Test8TestBodyEv
1101}
1102{
1103 # See http://code.google.com/p/chromium/issues/detail?id=70062#c8
1104 bug_70062 (Intentional)
1105 Memcheck:Leak
1106 ...
1107 fun:InitSessionCacheLocks
1108 fun:initSessionCacheLocksLazily
1109 ...
1110 fun:ssl_InitSessionCacheLocks
1111}
1112{
1113 bug_83345 (Needs_Annotation)
1114 Memcheck:Leak
1115 ...
1116 fun:_ZN4base*23LeakyLazyInstanceTraits*NewEPv
1117 fun:_ZN4base12LazyInstance*LeakyLazyInstanceTraits*PointerEv
1118}
1119{
1120 bug_87500_a (Intentional)
1121 Memcheck:Leak
1122 ...
1123 fun:_ZN10disk_cache9BackendIO23ExecuteBackendOperationEv
1124 fun:_ZN10disk_cache9BackendIO16ExecuteOperationEv
1125}
1126{
1127 bug_87500_b (Intentional)
1128 Memcheck:Leak
1129 fun:_Znw*
1130 fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001131 fun:_ZN4base11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001132 fun:_ZN4base20MessageLoopProxyImpl14PostTaskHelperERKN15tracked_objects8LocationEP4Taskxb
1133 fun:_ZN4base20MessageLoopProxyImpl8PostTaskERKN15tracked_objects8LocationEP4Task
1134 fun:_ZN10disk_cache10InFlightIO12OnIOCompleteEPNS_12BackgroundIOE
1135}
1136{
1137 bug_87500_c (Intentional)
1138 Memcheck:Leak
1139 fun:_Znw*
1140 fun:_ZN3net9HttpCache*EntryERKSsPPNS0_11ActiveEntryEPNS0_11TransactionE
1141 fun:_ZN3net9HttpCache11Transaction13Do*EntryEv
1142 fun:_ZN3net9HttpCache11Transaction6DoLoopEi
1143 fun:_ZN3net9HttpCache11Transaction12OnIOCompleteEi
1144}
1145{
1146 Intentional, see http://codereview.chromium.org/7670025
1147 Memcheck:Param
1148 msync(start)
1149 fun:msync$UNIX2003
1150 fun:mach_override_ptr
1151 fun:_ZN4base33EnableTerminationOnHeapCorruptionEv
1152}
1153{
1154 # Intentional - data is stored in thread-local storage for an unjoined
1155 # worker thread, and so can occasionally leak. See crbug.com/89553 for
1156 # additional info
1157 bug_89553
1158 Memcheck:Leak
1159 fun:_Znw*
1160 fun:_ZN12_GLOBAL__N_111DnsReloader11MaybeReloadEv
1161}
1162{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001163 bug_79322 (Intentional)
1164 Memcheck:Leak
1165 fun:_Znw*
1166 ...
1167 fun:_ZN4base*StatisticsRecorderTest_*_Test8TestBodyEv
1168}
1169{
1170 # This test simulates a ppapi plugin that fails to decrement a reference
1171 # count. In that case, the ppapi runtime will clean up its internal data
1172 # structures, but intentionally does not delete the plugin object's
1173 # desctructor, because we don't want them to have the opportunity to do
1174 # anything at that part of shutdown.
1175 bug_145710 (Intentional)
1176 Memcheck:Leak
1177 fun:_Znw*
1178 fun:_ZN12TestInstance27TestLeakedObjectDestructorsEv
1179 fun:_ZN12TestInstance8RunTestsERKSs
1180 fun:_ZN15TestingInstance12ExecuteTestsEi
1181 fun:_ZN2pp25CompletionCallbackFactoryI15TestingInstanceNS_22ThreadSafeThreadTraitsEE11Dispatcher0IMS1_FviEEclEPS1_i
1182 fun:_ZN2pp25CompletionCallbackFactoryI15TestingInstanceNS_22ThreadSafeThreadTraitsEE12CallbackDataINS3_11Dispatcher0IMS1_FviEEEE5ThunkEPvi
1183}
1184{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001185 intentional_see_bug_156466
1186 Memcheck:Leak
1187 fun:_Znw*
1188 fun:_ZN3ash5ShellC1EPNS_13ShellDelegateE
1189 fun:_ZN3ash5Shell14CreateInstanceEPNS_13ShellDelegateE
1190}
1191{
1192 intentional OOM in layout test: fast/js/string-replacement-outofmemory.html
1193 Memcheck:Unaddressable
1194 fun:_ZN7WebCoreL28reportFatalErrorInMainThreadEPKcS1_
1195 fun:_ZN2v88internal2V823FatalProcessOutOfMemoryEPKcb
1196 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001197 fun:_ZN7WebCore16HTMLScriptRunner36executePendingScriptAndDispatchEventERNS_13PendingScriptE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001198}
1199
Ben Murdochbb1529c2013-08-08 10:24:53 +01001200# http://crbug.com/269278 causes really widespread, flaky leaks in
1201# value objects that own some memory. These suppressions will cover
1202# all such objects, even though it's possible to get real leaks that
1203# look the same way (e.g. by allocating such an object in an arena).
1204{
1205 bug_269278a
1206 Memcheck:Leak
1207 fun:_Znw*
1208 fun:_ZN4base4Bind*Callback*BindState*
1209}
1210{
1211 bug_269278b
1212 Memcheck:Leak
1213 fun:_Znw*
1214 fun:_ZN9__gnu_cxx13new_allocator*allocate*
1215 fun:_ZNSt12_Vector_base*_M_allocate*
1216}
1217
1218
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001219#-----------------------------------------------------------------------
1220# 3. Suppressions for real chromium bugs that are not yet fixed.
1221# These should all be in chromium's bug tracking system (but a few aren't yet).
1222
1223{
1224 # Chromium flakily leaks tasks at shutdown, see
1225 # http://crbug.com/6532
1226 # http://codereview.chromium.org/20067
1227 # http://codereview.chromium.org/42083
1228 # To reproduce, run ipc tests
1229 # This is the -O0 case
1230 # In Purify, they don't even try to free them anymore.
1231 # For now, in Valgrind, we'll add suppressions to ignore these leaks.
1232 bug_6532
1233 Memcheck:Leak
1234 fun:_Znw*
1235 fun:_Z17NewRunnableMethodIN3IPC12ChannelProxy7ContextEMS2_FvvEEP14CancelableTaskPT_T0_
1236}
1237{
1238 # See http://crbug.com/6532
1239 # This is the -O1 case
1240 bug_6532b
1241 Memcheck:Leak
1242 ...
1243 fun:_ZN3IPC12ChannelProxy7Context14OnChannelErrorEv
1244 fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
1245}
1246{
1247 # webkit leak? See http://crbug.com/9503
1248 bug_9503
1249 Memcheck:Leak
1250 ...
1251 fun:_ZN19TestWebViewDelegate24UpdateSelectionClipboardEb
1252}
1253{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001254 # very common in ui tests
1255 bug_16091
1256 Memcheck:Leak
1257 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001258 fun:_ZN4base11MessageLoop22AddDestructionObserverEPNS0_19DestructionObserverE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001259 ...
1260 fun:_ZN3IPC11SyncChannel11SyncContext15OnChannelOpenedEv
1261}
1262{
1263 # very common in ui tests
1264 bug_16092
1265 Memcheck:Leak
1266 fun:*
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001267 fun:_ZN4base11MessageLoopC1ENS0_4TypeE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001268 fun:_ZN4base6Thread10ThreadMainEv
1269}
1270{
1271 # very common in ui tests
1272 bug_16092b
1273 Memcheck:Leak
1274 ...
1275 fun:_ZNSt11_Deque_baseIN4base11PendingTaskESaIS1_EE17_M_initialize_mapE*
1276 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001277 fun:_ZN4base11MessageLoopC1ENS0_4TypeE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001278}
1279{
1280 # very common in ui tests
1281 bug_16092c
1282 Memcheck:Leak
1283 ...
1284 fun:_ZNSt14priority_queueIN11MessageLoop11PendingTaskESt6vectorIS1_SaIS1_EESt4lessIS1_EEC1ERKS6_RKS4_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001285 fun:_ZN4base11MessageLoopC1ENS0_4TypeE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001286 fun:_ZN4base6Thread10ThreadMainEv
1287}
1288{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001289 # very common in ui tests, also seen in Linux Reliability
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001290 bug_16093
1291 Memcheck:Leak
1292 ...
1293 fun:getaddrinfo
1294}
1295{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001296 # very common in ui tests, also seen in Linux Reliability
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001297 bug_16095
1298 Memcheck:Leak
1299 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001300 fun:_ZN4base11MessageLoop21AddToDelayedWorkQueueERKN*PendingTaskE
1301 fun:_ZN4base11MessageLoop6DoWorkEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001302}
1303{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001304 bug_16128
1305 Memcheck:Leak
1306 fun:_Znw*
1307 ...
1308 fun:_ZN3IPC11SyncChannelC1E*
1309 ...
1310 fun:_ZN7content11ChildThread4InitEv
1311}
1312{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001313 bug_16326
1314 Memcheck:Leak
1315 fun:_Znw*
1316 ...
1317 fun:_ZN11webkit_glue16WebURLLoaderImplC1Ev
1318 fun:_ZN11webkit_glue16WebKitClientImpl15createURLLoaderEv
1319 fun:_ZN7WebCore22ResourceHandleInternal5startEv
1320}
1321{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001322 bug_17291
1323 Memcheck:Leak
1324 fun:malloc
1325 fun:_ZN3WTF10fastMallocE*
1326 ...
1327 fun:_ZN2v88internal8JSObject23SetPropertyWithCallbackEPNS0_6ObjectEPNS0_6StringES3_PS1_
1328}
1329{
1330 # also bug 17979. It's a nest of leaks.
1331 bug_17385
1332 Memcheck:Leak
1333 fun:_Znw*
1334 ...
1335 fun:_ZN3IPC12ChannelProxy7Context13CreateChannelERKSsRKNS_7Channel4ModeE
1336 fun:_ZN3IPC12ChannelProxy4InitERKSsNS_7Channel4ModeEP11MessageLoopb
1337 fun:_ZN3IPC12ChannelProxyC2ERKSsNS_7Channel4ModeEP11MessageLoopPNS0_7ContextEb
1338 ...
1339 fun:_ZN3IPC11SyncChannelC1ERKSsNS_7Channel4ModeEPNS3_8ListenerEPNS_12ChannelProxy13MessageFilterEP11MessageLoopbPN4base13WaitableEventE
1340}
1341{
1342 bug_17540
1343 Memcheck:Leak
1344 fun:_Znw*
1345 fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001346 fun:_ZN4base16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001347 fun:_ZN3IPC7Channel11ChannelImpl7ConnectEv
1348 fun:_ZN3IPC7Channel7ConnectEv
1349 fun:_ZN3IPC12ChannelProxy7Context15OnChannelOpenedEv
1350}
1351{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001352 bug_19196
1353 Memcheck:Leak
1354 fun:_Znw*
1355 fun:_ZN2v817RegisterExtensionEPNS_9ExtensionE
1356 fun:_ZN7WebCore7V8Proxy23registerExtensionWithV8EPN2v89ExtensionE
1357 fun:_ZN7WebCore7V8Proxy17registerExtensionEPN2v89ExtensionEi
1358 fun:_ZN6WebKit17registerExtensionEPN2v89ExtensionEi
1359 fun:_ZN12RenderThread23EnsureWebKitInitializedEv
1360}
1361{
1362 bug_19371
1363 Memcheck:Leak
1364 fun:_Znw*
1365 ...
1366 fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
1367 fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
1368 fun:_ZN4base13WaitableEvent4WaitEv
1369 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
1370}
1371{
1372 # slight variant of the above
1373 bug_19371a
1374 Memcheck:Leak
1375 fun:_Znw*
1376 ...
1377 fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
1378 fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
1379 fun:_ZN4base18MessagePumpDefault3RunEPNS_11MessagePump8DelegateE
1380}
1381{
1382 bug_19377
1383 Memcheck:Leak
1384 fun:calloc
1385 ...
1386 fun:event_base_new
1387 fun:_ZN4base19MessagePumpLibeventC1Ev
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001388 fun:_ZN4base11MessageLoopC1ENS0_4TypeE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001389 fun:_ZN4base6Thread10ThreadMainEv
1390}
1391{
1392 bug_19463
1393 Memcheck:Leak
1394 ...
1395 fun:_ZN4base19MessagePumpLibevent4InitEv
1396 fun:_ZN4base19MessagePumpLibeventC1Ev
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001397 fun:_ZN4base11MessageLoopC1ENS0_4TypeE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001398}
1399{
1400 bug_19775_a
1401 Memcheck:Leak
1402 ...
1403 fun:malloc
1404 fun:sqlite3MemMalloc
1405 fun:mallocWithAlarm
1406 fun:sqlite3Malloc
1407 ...
1408 fun:sqlite3VdbeExec
1409 fun:sqlite3Step
1410 fun:sqlite3_step
1411 fun:sqlite3_exec
1412 fun:_ZN3sql10Connection7Execute*
1413 ...
1414 fun:_ZN7history*Database*Create*
1415}
1416{
1417 bug_19775_c
1418 Memcheck:Leak
1419 ...
1420 fun:openDatabase
1421 fun:sqlite3_open
1422 fun:_ZN3sql10Connection12OpenInternalERKSs
1423}
1424{
1425 bug_19775_g
1426 Memcheck:Leak
1427 fun:malloc
1428 fun:sqlite3MemMalloc
1429 fun:mallocWithAlarm
1430 fun:sqlite3Malloc
1431 fun:sqlite3ParserAlloc
1432 fun:sqlite3RunParser
1433 fun:sqlite3Prepare
1434 fun:sqlite3LockAndPrepare
1435 fun:sqlite3_prepare*
1436}
1437{
1438 bug_19775_h
1439 Memcheck:Leak
1440 ...
1441 fun:malloc
1442 fun:sqlite3MemMalloc
1443 fun:mallocWithAlarm
1444 fun:sqlite3Malloc
1445 ...
1446 fun:yy_reduce
1447}
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001448# IPCing uninitialized data
1449{
1450 bug_20997_a
1451 Memcheck:Param
1452 socketcall.sendmsg(msg.msg_iov[i])
1453 fun:sendmsg*
1454 fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
1455}
1456{
1457 bug_20997_b
1458 Memcheck:Param
1459 socketcall.sendmsg(msg.msg_iov[i])
1460 fun:sendmsg$UNIX2003
1461 ...
1462 fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
1463 ...
1464 fun:event_process_active
1465 fun:event_base_loop
1466}
1467{
1468 bug_22098
1469 Memcheck:Leak
1470 fun:_Znw*
1471 fun:_ZN4base19MessagePumpLibevent19WatchFileDescriptorEibNS0_4ModeEPNS0_21FileDescriptorWatcherEPNS0_7WatcherE
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001472 fun:_ZN4base16MessageLoopForIO19WatchFileDescriptorEibNS_4ModeEPN4base19MessagePumpLibevent21FileDescriptorWatcherEPNS2_7WatcherE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001473 fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
1474 fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
1475 fun:_ZN3IPC7Channel4SendEPNS_7MessageE
1476 fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE
1477 fun:_ZN3IPC8SendTask3RunEv
1478}
1479{
1480 bug_22923
1481 Memcheck:Leak
1482 fun:_Znw*
1483 ...
1484 fun:_ZN13WorkerService12CreateWorker*
1485 fun:_ZN19RenderMessageFilter14OnCreateWorker*
1486}
1487{
1488 bug_27665
1489 Memcheck:Leak
1490 fun:_Znw*
1491 fun:_ZN10SkXfermode6CreateENS_4ModeE
1492 fun:_ZN7SkPaint15setXfermodeModeEN10SkXfermode4ModeE
1493 fun:_ZNK7WebCore19PlatformContextSkia16setupPaintCommonEP7SkPaint
1494 fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceE
1495 fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceENS_17CompositeOperatorE
1496}
1497# The following three suppressions are related to the workers code.
1498{
1499 bug_27837
1500 Memcheck:Leak
1501 fun:_Znw*
1502 fun:_ZN19WebSharedWorkerStub9OnConnectEii
1503}
1504{
1505 bug_27838
1506 Memcheck:Leak
1507 fun:malloc
1508 fun:_ZN3WTF10fastMallocEj
1509 fun:_ZN3WTF13FastAllocBasenwEj
1510 fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMessagePortChannelEEE
1511 fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_15WebSharedWorker15ConnectListenerE
1512 fun:_ZN19WebSharedWorkerStub9OnConnectEii
1513}
1514{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001515 bug_28200
1516 Memcheck:Leak
1517 fun:malloc
1518 fun:malloc
1519 fun:_ZN3WTF10fastMallocEj
1520 fun:_ZN3WTF13FastAllocBasenwEj
1521 fun:_ZN7WebCore18MessagePortChannel6createEN3WTF10PassRefPtrINS_26PlatformMessagePortChannelEEE
1522 fun:_ZN6WebKit19WebSharedWorkerImpl7connectEPNS_21WebMessagePortChannelEPNS_15WebSharedWorker15ConnectListenerE
1523 fun:_ZN19WebSharedWorkerStub9OnConnectEii
1524}
1525{
1526 # GTK tooltip doesn't always initialize variables.
1527 # https://bugzilla.gnome.org/show_bug.cgi?id=554686
1528 tooltip_554686
1529 Memcheck:Uninitialized
1530 fun:child_location_foreach
1531 fun:gtk_fixed_forall
1532 ...
1533 fun:find_widget_under_pointer
1534 fun:gtk_tooltip_show_tooltip
1535 fun:tooltip_popup_timeout
1536 fun:gdk_threads_dispatch
1537 fun:g_timeout_dispatch
1538}
1539{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001540 bug_29675
1541 Memcheck:Leak
1542 fun:_Znw*
1543 fun:_ZN27ChromeBrowserMainPartsPosix24PostMainMessageLoopStartEv
1544 fun:_ZN7content15BrowserMainLoop20MainMessageLoopStartEv
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001545 fun:_ZN7content21BrowserMainRunnerImpl10InitializeERKNS_18MainFunctionParamsE
1546 fun:_ZN7content11BrowserMainERKNS_18MainFunctionParamsE
1547 fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
1548 fun:_ZN7content21ContentMainRunnerImpl3RunEv
1549 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
1550 fun:ChromeMain
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001551}
1552{
1553 bug_30346
1554 Memcheck:Leak
1555 fun:_Znw*
1556 ...
1557 fun:_ZN13TCMallocGuardC1Ev
1558 fun:_Z41__static_initialization_and_destruction_0ii
1559 fun:_GLOBAL__I__ZN61FLAG__namespace_do_not_use_directly_use_DECLARE_int64_instead43FLAGS_tcmalloc_large_alloc_report_thresholdE
1560}
1561{
1562 bug_30346b
1563 Memcheck:Unaddressable
1564 ...
1565 fun:_ZSt22__get_temporary_bufferIPN7WebCore11RenderLayerEESt4pairIPT_iEiS5_
1566 fun:_ZNSt17_Temporary_bufferIPPN7WebCore11RenderLayerES2_EC1ES3_S3_
1567 fun:_ZN7WebCore11RenderLayer17updateZOrderListsEv
1568 fun:_ZN7WebCore11RenderLayer24updateLayerListsIfNeededEv
1569 fun:_ZN7WebCore11RenderLayer38updateCompositingAndLayerListsIfNeededEv
1570}
1571{
1572 bug_30703a
1573 Memcheck:Param
1574 write(buf)
1575 ...
1576 fun:zipCloseFileInZipRaw
1577 fun:zipCloseFileInZip
1578 fun:_Z*13AddEntryToZip*
1579}
1580{
1581 bug_30703b
1582 Memcheck:Uninitialized
1583 fun:deflate
1584 ...
1585 fun:zipCloseFileInZipRaw
1586 fun:zipCloseFileInZip
1587 fun:_Z*13AddEntryToZip*
1588}
1589{
1590 bug_30704a
1591 Memcheck:Uninitialized
1592 fun:crc32
1593 ...
1594 fun:png_write_row
1595}
1596{
1597 bug_30704b
1598 Memcheck:Param
1599 write(buf)
1600 ...
1601 fun:_ZN26SandboxedUnpacker17RewriteImageFilesEv
1602}
1603{
1604 bug_30704c
1605 Memcheck:Param
1606 write(buf)
1607 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001608 fun:_ZNK16BrowserThemePack11WriteToDiskE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001609}
1610{
1611 bug_30704d
1612 Memcheck:Uninitialized
1613 ...
1614 fun:png_process_data
1615 fun:_ZN7WebCore14PNGImageReader6decodeERKNS_12SharedBufferEb
1616 fun:_ZN7WebCore15PNGImageDecoder6decodeEb
1617 fun:_ZN7WebCore15PNGImageDecoder18frameBufferAtIndexEm
1618}
1619{
1620 bug_30704e
1621 Memcheck:Uninitialized
1622 obj:*/libpng*
1623 fun:png_write_row
1624}
1625{
1626 bug_30704f
1627 Memcheck:Uninitialized
1628 ...
1629 fun:wk_png_write_find_filter
1630 fun:wk_png_write_row
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001631}
1632{
1633 bug_30704g
1634 Memcheck:Param
1635 write(buf)
1636 obj:*libpthread*
1637 fun:_ZN9file_util19WriteFileDescriptorE*
1638 fun:_ZN9file_util9WriteFileE*
1639 fun:*SaveScreenshotInternalE*4base8Callback*
1640 fun:*SaveScreenshotE*4base8Callback*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001641}
1642{
1643 bug_87232
1644 Memcheck:Uninitialized
1645 fun:_ZN7WebCore12base64EncodeEPKcjRN3WTF6VectorIcLj0EEEb
1646 fun:_ZN7WebCore12base64EncodeERKN3WTF6VectorIcLj0EEERS2_b
1647 fun:_ZN7WebCore*14ImageToDataURL*SkBitmapEEN3WTF6StringERT_*
1648}
1649{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001650 bug_31985
1651 Memcheck:Leak
1652 fun:_Znw*
1653 ...
1654 fun:_ZN3net16HttpNetworkLayer10GetSessionEv
1655 fun:_ZN3net16HttpNetworkLayer17CreateTransactionEP10scoped_ptrINS_15HttpTransactionEE
1656 fun:_ZN3net9HttpCache11Transaction13DoSendRequestEv
1657 fun:_ZN3net9HttpCache11Transaction6DoLoopEi
1658}
1659{
1660 bug_32085
1661 Memcheck:Leak
1662 fun:_Znw*
1663 fun:_ZN9__gnu_cxx13new_allocatorIN7content21NotificationRegistrar6RecordEE8allocate*
1664 fun:_ZNSt12_Vector_baseIN7content21NotificationRegistrar6RecordESaIS*
1665 fun:_ZNSt6vectorIN7content21NotificationRegistrar6RecordESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S*
1666 fun:_ZNSt6vectorIN7content21NotificationRegistrar6RecordESaIS*
1667 fun:_ZN7content21NotificationRegistrar3Add*
1668}
1669{
1670 bug_32273_a
1671 Memcheck:Leak
1672 fun:_Znw*
1673 fun:_ZN3IPC12ChannelProxy4SendEPNS_7MessageE
1674 fun:_ZN3IPC11SyncChannel15SendWithTimeoutEPNS_7MessageEi
1675 fun:_ZN3IPC11SyncChannel4SendEPNS_7MessageE
1676 fun:_ZN11ChildThread4SendEPN3IPC7MessageE
1677 fun:_ZN12RenderThread4SendEPN3IPC7MessageE
1678 fun:_ZN12RenderWidget4SendEPN3IPC7MessageE
1679 fun:_ZN12RenderWidget16DoDeferredUpdateEv
1680 fun:_ZN12RenderWidget20CallDoDeferredUpdateEv
1681}
1682{
1683 bug_32273_b
1684 Memcheck:Leak
1685 fun:_Znw*
1686 ...
1687 fun:_ZN24BrowserRenderProcessHost4SendEPN3IPC7MessageE
1688 fun:_ZN16RenderWidgetHost4SendEPN3IPC7MessageE
1689}
1690{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001691 bug_32623
1692 Memcheck:Leak
1693 ...
1694 fun:ssl3_HandleHandshakeMessage
1695 fun:ssl3_HandleHandshake
1696 fun:ssl3_HandleRecord
1697 fun:ssl3_GatherCompleteHandshake
1698 fun:SSL_ForceHandshake
1699 fun:_ZN3net18SSLClientSocketNSS4Core11DoHandshakeEv
1700}
1701{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001702 bug_32624_b
1703 Memcheck:Leak
1704 fun:malloc
1705 obj:*
1706 obj:*
1707 obj:*
1708 obj:*
1709 obj:*
1710 obj:*
1711 obj:*
1712 obj:*
1713 obj:*
1714 obj:*
1715 obj:*
1716 obj:*
1717 obj:*
1718 obj:*
1719 obj:*
1720 obj:*
1721 obj:*
1722 obj:*
1723 obj:*
1724 obj:*
1725 fun:secmod_ModuleInit
1726}
1727{
1728 bug_32624_c
1729 Memcheck:Leak
1730 ...
1731 fun:malloc
1732 ...
1733 fun:PORT_Alloc_Util
1734 ...
1735 fun:PK11_InitPin
1736}
1737{
1738 bug_32624_f
1739 Memcheck:Leak
1740 ...
1741 fun:CERT_PKIXVerifyCert
1742 fun:_ZN3net12_GLOBAL__N_114PKIXVerifyCertE*
1743}
1744{
1745 bug_32624_g
1746 Memcheck:Leak
1747 ...
1748 fun:CERT_VerifySignedData
1749 fun:cert_VerifyCertChain
1750 fun:CERT_VerifyCertChain
1751 fun:CERT_VerifyCert
1752}
1753{
1754 bug_38138
1755 Memcheck:Param
1756 write(buf)
1757 obj:*libpthread*
1758 fun:_ZN3IPC7Channel11ChannelImpl23ProcessOutgoingMessagesEv
1759 ...
1760 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001761 fun:_ZN4base11MessageLoop11RunInternalEv
1762 fun:_ZN4base11MessageLoop10RunHandlerEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001763}
1764{
1765 bug_30633_39325
1766 Memcheck:Leak
1767 fun:_Znw*
1768 ...
1769 fun:_ZN11ProfileImpl17GetRequestContextEv
1770 fun:_ZN19SafeBrowsingService5StartEv
1771 fun:_ZN19SafeBrowsingService10InitializeEv
1772 fun:_ZN22ResourceDispatcherHost10InitializeEv
1773 fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
1774 fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
1775 fun:_ZN16ExtensionService4InitEv
1776}
1777{
1778 bug_42842
1779 Memcheck:Leak
1780 fun:_Znw*
1781 fun:_ZN19TestWebViewDelegate12createWorkerEPN6WebKit8WebFrameEPNS0_15WebWorkerClientE
1782 fun:_ZN6WebKit19WebWorkerClientImpl24createWorkerContextProxyEPN7WebCore6WorkerE
1783 fun:_ZN7WebCore18WorkerContextProxy6createEPNS_6WorkerE
1784 fun:_ZN7WebCore6WorkerC1EPNS_22ScriptExecutionContextE
1785 fun:_ZN7WebCore6Worker6createERKN3WTF6StringEPNS_22ScriptExecutionContextERi
1786 fun:_ZN7WebCore8V8Worker19constructorCallbackERKN2v89ArgumentsE
1787}
1788{
1789 bug_42942_a
1790 Memcheck:Leak
1791 fun:_Znw*
1792 ...
1793 fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
1794 fun:_ZN3sql9MetaTable19PrepareGetStatementEPNS_9StatementEPKc
1795 fun:_ZN3sql9MetaTable8GetValueEPKcPi
1796 fun:_ZN3sql9MetaTable26GetCompatibleVersionNumberEv
1797 ...
1798 fun:_ZN3net13CookieMonster9InitStoreEv
1799}
1800{
1801 bug_42942_b
1802 Memcheck:Leak
1803 fun:_Znw*
1804 ...
1805 fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
1806 fun:_ZN3sql9MetaTable19PrepareSetStatementEPNS_9StatementEPKc
1807 fun:_ZN3sql9MetaTable8SetValueEPKci
1808 fun:_ZN3sql9MetaTable16SetVersionNumberEi
1809 ...
1810 fun:_ZN3net13CookieMonster9InitStoreEv
1811}
1812{
1813 bug_42958_a
1814 Memcheck:Leak
1815 fun:malloc
1816 ...
1817 fun:_NPN_RegisterObject
1818 fun:_ZN7WebCore16ScriptController20windowScriptNPObjectEv
1819 fun:_ZNK6WebKit12WebFrameImpl12windowObjectEv
1820 fun:_ZN6webkit5npapi13WebPluginImpl23GetWindowScriptNPObjectEv
1821 fun:NPN_GetValue
1822}
1823{
1824 bug_42958_b
1825 Memcheck:Leak
1826 fun:malloc
1827 ...
1828 fun:_NPN_RegisterObject
1829 fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
1830 fun:_ZN7WebCore16ScriptController18bindToWindowObjectEPNS_5FrameERKN3WTF6StringEP8NPObject
1831 fun:_ZN6WebKit12WebFrameImpl18bindToWindowObjectERKNS_9WebStringEP8NPObject
1832 fun:_ZN13CppBoundClass16bindToJavascriptEPN6WebKit8WebFrameERKNS0_9WebStringE
1833}
1834{
1835 bug_42958_c
1836 Memcheck:Leak
1837 fun:malloc
1838 ...
1839 fun:_NPN_RegisterObject
1840 fun:_ZN7WebCore25createV8ObjectForNPObjectEP8NPObjectS1_
1841 fun:_ZN7WebCore16ScriptController29createScriptInstanceForWidgetEPNS_6WidgetE
1842 fun:_ZN*7WebCore17HTMLPlugInElement11getInstanceEv
1843}
1844{
1845 bug_43471
1846 Memcheck:Leak
1847 fun:_Znw*
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001848 fun:_ZN9__gnu_cxx13new_allocatorIPN4base11MessageLoop19DestructionObserverEE8allocateE*
1849 fun:_ZNSt12_Vector_baseIPN4base11MessageLoop19DestructionObserverESaIS*
1850 fun:_ZNSt6vectorIPN4base11MessageLoop19DestructionObserverESaIS*
1851 fun:_ZNSt6vectorIPN4base11MessageLoop19DestructionObserverESaIS*
1852 fun:_ZN16ObserverListBaseIN4base11MessageLoop19DestructionObserverEE11AddObserverEPS*
1853 fun:_ZN4base11MessageLoop22AddDestructionObserverEPNS0_19DestructionObserverE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001854}
1855{
1856 bug_46250
1857 Memcheck:Leak
1858 fun:_Znw*
1859 fun:_ZN9__gnu_cxx13new_allocatorIPN11MessageLoop12TaskObserverEE8allocateEjPKv
1860 fun:_ZNSt12_Vector_baseIPN11MessageLoop12TaskObserverESaIS2_EE11_M_allocateEj
1861 fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS2_S4_EERKS2_
1862 fun:_ZNSt6vectorIPN11MessageLoop12TaskObserverESaIS2_EE9push_backERKS2_
1863 fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE11AddObserverEPS1_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01001864 fun:_ZN4base11MessageLoop15AddTaskObserverEPNS_12TaskObserverE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001865 fun:*IOJankObserver21AttachToCurrentThreadEv
1866}
1867{
1868 bug_47950
1869 Memcheck:Leak
1870 fun:_Znw*
1871 ...
1872 fun:*CreateSpdyHeadersFromHttpRequestERKN3net15HttpRequestInfoEPSt3mapISsSsSt4lessISsESaISt4pairIKSsSsEEE
1873}
1874{
1875 bug_49279_a
1876 Memcheck:Leak
1877 fun:_Znw*
1878 fun:*ChromeCookieMonsterDelegateC1EP7Profile
1879 fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
1880}
1881{
1882 bug_49279_b
1883 Memcheck:Leak
1884 fun:_Znw*
1885 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00001886 fun:_ZN29ChromeURLRequestContextGetter28CreateRequestContextForMediaE*
1887 fun:_ZN29ChromeURLRequestContextGetter22CreateOriginalForMediaE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001888 fun:_ZN11ProfileImpl25GetRequestContextForMediaEv
1889}
1890{
1891 bug_49279_c
1892 Memcheck:Leak
1893 fun:_Znw*
1894 fun:*ChromeCookieMonsterDelegateC2EP7Profile
1895 fun:*ChromeCookieMonsterDelegateC1EP7Profile
1896 fun:_ZN30ChromeURLRequestContextFactoryC2EP7Profile
1897}
1898{
1899 bug_50304
1900 Memcheck:Leak
1901 ...
1902 fun:_ZN7history14HistoryBackend8InitImpl*
1903 fun:_ZN7history14HistoryBackend4Init*
1904}
1905{
1906 bug_50936
1907 Memcheck:Leak
1908 fun:_Znw*
1909 ...
1910 fun:_ZN23OffTheRecordProfileImpl4InitEv
1911 fun:_ZN7Profile25CreateOffTheRecordProfileEv
1912 fun:_ZN11ProfileImpl22GetOffTheRecordProfileEv
1913}
1914{
1915 bug_50968_a
1916 Memcheck:Leak
1917 ...
1918 fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
1919}
1920{
1921 bug_50968_b
1922 Memcheck:Unaddressable
1923 ...
1924 fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
1925}
1926{
1927 bug_50968_d
1928 Memcheck:Uninitialized
1929 ...
1930 fun:_ZN14WebDataService29InitializeDatabaseIfNecessaryEv
1931}
1932{
1933 bug_56359_a
1934 Memcheck:Leak
1935 fun:_Znw*
1936 fun:_ZN3net9HttpCache24GetBackendForTransactionEPNS0_11TransactionE
1937 fun:_ZN3net9HttpCache11Transaction12DoGetBackendEv
1938 fun:_ZN3net9HttpCache11Transaction6DoLoopEi
1939 fun:_ZN3net9HttpCache11Transaction5StartEPKNS_15HttpRequestInfoEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
1940 fun:_ZN17URLRequestHttpJob16StartTransactionEv
1941 fun:_ZN17URLRequestHttpJob24OnCanGetCookiesCompletedEi
1942 fun:_ZN17URLRequestHttpJob23AddCookieHeaderAndStartEv
1943 fun:_ZN17URLRequestHttpJob5StartEv
1944 fun:_ZN10URLRequest8StartJobEP13URLRequestJob
1945 fun:_ZN10URLRequest5StartEv
1946 fun:_ZN10URLFetcher4Core15StartURLRequestEv
1947}
1948{
1949 bug_51153
1950 Memcheck:Leak
1951 ...
1952 fun:_ZN7history14HistoryBackend16GetFaviconForURLE13scoped_refptrI17CancelableRequestI14CallbackRunnerI6Tuple5IibS1_I16RefCountedMemoryEb4GURLEEEERKS7_
1953}
1954{
1955 bug_51379
1956 Memcheck:Leak
1957 fun:malloc
1958 ...
1959 obj:/usr/lib/libpangocairo-1.0.so.0.2002.3
1960 ...
1961 fun:_ZN3gfx10Canvas13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiiii
1962 fun:_ZN3gfx10Canvas13DrawStringIntERKSbIwSt11char_traitsIwESaIwEERKNS_4FontERKjiiii
1963}
1964{
1965 bug_51590a
1966 Memcheck:Unaddressable
1967 ...
1968 fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
1969 fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
1970}
1971{
1972 bug_51590b
1973 Memcheck:Unaddressable
1974 ...
1975 fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
1976 fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
1977}
1978{
1979 bug_51590c
1980 Memcheck:Unaddressable
1981 ...
1982 fun:_ZN7WebCore13TextRunWalker13nextScriptRunEv
1983 fun:_ZN7WebCore13TextRunWalker14widthOfFullRunEv
1984}
1985{
1986 bug_51679
1987 Memcheck:Leak
1988 fun:_Znw*
1989 ...
1990 fun:_ZN23MessageService16AddEventListenerERKSsi
1991 fun:_ZN24BrowserRenderProcessHost22OnExtensionAddListenerERKSs
1992}
1993{
1994 bug_52831
1995 Memcheck:Leak
1996 fun:_Znw*
1997 ...
1998 fun:*InotifyReaderTask3RunEv
1999 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01002000 fun:_ZN4base11MessageLoop11RunInternalEv
2001 fun:_ZN4base11MessageLoop10RunHandlerEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002002}
2003{
2004 bug_52837
2005 Memcheck:Leak
2006 fun:_Znw*
2007 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00002008 fun:_ZNSt3map*FilePath*insert*
2009 fun:_ZNSt3map*FilePath*ix*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002010 fun:_ZN16ExtensionService15UnloadExtensionERKSs
2011 fun:_ZN16ExtensionService18UninstallExtensionERKSsb
2012 fun:_ZN18AutomationProvider18UninstallExtensionEiPb
2013}
2014{
2015 bug_52957
2016 Memcheck:Unaddressable
2017 fun:glGetString
2018 fun:_ZN18gpu_info_collector19CollectGraphicsInfoER7GPUInfo
2019 fun:_ZN9GpuThread18OnEstablishChannelEi
2020}
2021{
2022 bug_54308
2023 Memcheck:Leak
2024 fun:_Znw*
2025 ...
2026 fun:_ZNK8chromeos25CrosSettingsProviderProxy3GetERKSsPP5Value
2027 fun:_ZNK8chromeos12CrosSettings3GetERKSsPP5Value
2028 fun:_ZN8chromeos26CoreChromeOSOptionsHandler9FetchPrefERKSs
2029 fun:_ZN18CoreOptionsHandler16HandleFetchPrefsEPK9ListValue
2030}
2031{
2032 bug_55533
2033 Memcheck:Leak
2034 fun:_Znw*
2035 ...
2036 fun:_ZN5IDMapIN3IPC7Channel8ListenerEL23IDMapOwnershipSemantics*
2037 fun:_ZN17RenderProcessHost*Profile
2038 fun:_ZN21MockRenderProcessHost*Profile
2039}
2040{
2041 bug_56676
2042 Memcheck:Leak
2043 fun:_Znw*
2044 fun:_ZN9__gnu_cxx13new_allocatorIN4base15file_util_proxy5EntryEE8allocate*
2045 fun:_ZNSt12_Vector_baseIN4base15file_util_proxy5EntryESaIS2_EE11_M_allocate*
2046 fun:_ZNSt6vectorIN4base15file_util_proxy5EntryESaIS2_EE20_M_allocate_and_copyIN9__gnu_cxx17__normal_iteratorIPKS2*
2047 fun:_ZNSt6vectorIN4base15file_util_proxy5EntryESaIS2_EEaSERKS4_
2048 fun:_ZN14MockDispatcher16DidReadDirectoryERKSt6vectorIN4base15file_util_proxy5EntryESaIS3_EEb
2049 fun:_ZN7fileapi19FileSystemOperation16DidReadDirectoryEN4base17PlatformFileErrorERKSt6vectorINS1_15file_util_proxy5EntryESaIS5_EE
2050}
2051{
2052 bug_58321
2053 Memcheck:Unaddressable
2054 fun:_ZNK3WTF6RefPtrIN7WebCore5FrameEE3getEv
2055 fun:_ZN7WebCore14ResourceLoader18didReceiveResponseEPNS_14ResourceHandleERKNS_16ResourceResponseE
2056 fun:_ZN7WebCore22ResourceHandleInternal18didReceiveResponseEPN6WebKit12WebURLLoaderERKNS1_14WebURLResponseE
2057 fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnReceivedResponseERKNS_20ResourceLoaderBridge12ResponseInfoEb
2058 fun:_ZN85_GLOBAL__N_webkit_tools_test_shell_simple_resource_loader_bridge.cc_00000000_*12RequestProxy22NotifyReceivedResponseERKN11webkit_glue20ResourceLoaderBridge12ResponseInfoEb
2059}
2060{
2061 bug_58340
2062 Memcheck:Unaddressable
2063 fun:_ZNK3WTF6RefPtrIN7WebCore5FrameEE3getEv
2064 fun:_ZN7WebCore14ResourceLoader18didReceiveResponseEPNS_14ResourceHandleERKNS_16ResourceResponseE
2065 fun:_ZN7WebCore22ResourceHandleInternal18didReceiveResponseEPN6WebKit12WebURLLoaderERKNS1_14WebURLResponseE
2066 fun:_ZN11webkit_glue16WebURLLoaderImpl7Context18OnReceivedResponseERKNS_20ResourceResponseInfoEb
2067}
2068{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002069 bug_58546
2070 Memcheck:Leak
2071 fun:_Znw*
2072 fun:_ZN27SSLConfigServiceManagerPrefC1EP7Profile
2073 fun:_ZN23SSLConfigServiceManager20CreateDefaultManagerEP7Profile
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00002074 fun:_ZN11ProfileImplC1E*
2075 fun:_ZN7Profile13CreateProfileE*
2076 fun:_ZN14ProfileManager13CreateProfileE*
2077 fun:_ZN14ProfileManager10GetProfileE*
2078 fun:_ZN14ProfileManager17GetDefaultProfileE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002079 fun:_ZN14ProfileManager17GetDefaultProfileEv
2080}
2081{
2082 bug_58561
2083 Memcheck:Leak
2084 fun:_Znw*
2085 ...
2086 fun:_ZN3net8internal26ClientSocketPoolBaseHelper16GetOrCreateGroupERKSs
2087 fun:_ZN3net8internal26ClientSocketPoolBaseHelper13RequestSocketERKSsPKNS1_7RequestE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00002088 fun:_ZN3net20ClientSocketPoolBaseINS_*
2089 fun:_ZN3net*SocketPool13RequestSocketE*
2090 fun:_ZN3net18ClientSocketHandle4InitINS_*
2091 ...
2092 fun:_ZN3net21HttpStreamFactoryImpl3Job16DoInitConnectionEv
2093 fun:_ZN3net21HttpStreamFactoryImpl3Job6DoLoopEi
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002094}
2095{
2096 bug_58564
2097 Memcheck:Leak
2098 fun:calloc
2099 ...
2100 fun:SSL_ImportFD
2101 fun:_ZN3net18SSLClientSocketNSS20InitializeSSLOptionsEv
2102 fun:_ZN3net18SSLClientSocketNSS7ConnectEP14CallbackRunnerI6Tuple1IiEE
2103 fun:_ZN3net13SSLConnectJob12DoSSLConnectEv
2104 fun:_ZN3net13SSLConnectJob6DoLoopEi
2105}
2106{
2107 bug_58574
2108 Memcheck:Unaddressable
2109 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01002110 fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002111 fun:_ZN3net12CertVerifier7Request8DoVerifyEv
2112}
2113{
2114 bug_60556a
2115 Memcheck:Unaddressable
2116 ...
2117 fun:sqlite3_exec
2118 fun:_ZN3sql10Connection7ExecuteEPKc
2119 fun:_ZN11WebDatabase*
2120}
2121{
2122 bug_60556b
2123 Memcheck:Unaddressable
2124 ...
2125 fun:sqlite3_exec
2126 fun:_ZN3sql10Connection7ExecuteEPKc
2127 fun:_ZN11WebDatabase*
2128}
2129{
2130 bug_60556c
2131 Memcheck:Unaddressable
2132 ...
2133 fun:sqlite3_step
2134 fun:_ZN3sql9Statement3RunEv
2135 fun:_ZN3sql10Connection17CommitTransactionEv
2136 fun:_ZN3sql11Transaction6CommitEv
2137 fun:_ZN11WebDatabase*
2138}
2139{
2140 bug_60556d
2141 Memcheck:Unaddressable
2142 ...
2143 fun:sqlite3_step
2144 fun:_ZN3sql9Statement3RunEv
2145 fun:_ZN3sql10Connection17CommitTransactionEv
2146 fun:_ZN3sql11Transaction6CommitEv
2147 fun:_ZN11WebDatabase*
2148}
2149{
2150 bug_60556e
2151 Memcheck:Param
2152 read(buf)
2153 ...
2154 fun:sqlite3_exec
2155 fun:_ZN3sql10Connection7ExecuteEPKc
2156 fun:_ZN11WebDatabase*
2157}
2158{
2159 bug_60556f
2160 Memcheck:Unaddressable
2161 ...
2162 fun:sqlite3_close
2163 fun:_ZN3sql10Connection5CloseEv
2164 fun:_ZN3sql10ConnectionD2Ev
2165 fun:_ZN3sql10ConnectionD1Ev
2166 fun:_ZN11WebDatabase*
2167}
2168{
2169 bug_60556g
2170 Memcheck:Unaddressable
2171 ...
2172 fun:sqlite3_step
2173 fun:_ZN3sql9Statement4StepEv
2174 fun:_ZN7history11URLDatabase12GetRowForURLERK4GURLPNS_6URLRowE
2175 fun:_ZN7history14HistoryBackend12AddPageVisitERK4GURLN4base4TimeExjNS_11VisitSourceE
2176}
2177{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002178 bug_60654
2179 Memcheck:Uninitialized
2180 fun:_ZN7WebCore25GraphicsContext3DInternal7reshapeEii
2181 fun:_ZN7WebCore17GraphicsContext3D7reshapeEii
2182 fun:_ZN7WebCore21WebGLRenderingContextC1EPNS_17HTMLCanvasElementEN3WTF10PassRefPtrINS_17GraphicsContext3DEEE
2183 fun:_ZN7WebCore21WebGLRenderingContext6createEPNS_17HTMLCanvasElementEPNS_22WebGLContextAttributesE
2184 fun:_ZN7WebCore17HTMLCanvasElement10getContextERKN3WTF6StringEPNS_23CanvasContextAttributesE
2185 ...
2186 fun:_ZN2v88internal6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPPPS4_Pb
2187}
2188{
2189 bug_60656
2190 Memcheck:Overlap
2191 fun:strcpy
2192 fun:lFloatConst
2193 fun:byte_scan
2194 fun:yylex_CPP
2195 fun:_Z8yy_inputPci
2196 fun:_Z18yy_get_next_bufferv
2197 fun:_Z5yylexP7YYSTYPEPv
2198 fun:_Z7yyparsePv
2199 fun:_Z14PaParseStringsPKPKcPKiiR13TParseContext
2200 fun:_ZN9TCompiler7compileEPKPKcii
2201 fun:ShCompile
2202 fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl25angleValidateShaderSourceERNS0_17ShaderSourceEntryE
2203 fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl13compileShaderEj
2204 fun:_ZN7WebCore25GraphicsContext3DInternal13compileShaderEi
2205 fun:_ZN7WebCore17GraphicsContext3D13compileShaderEi
2206 fun:_ZN7WebCore21WebGLRenderingContext13compileShaderEPNS_11WebGLShaderERi
2207 fun:_ZN7WebCore29WebGLRenderingContextInternal21compileShaderCallbackERKN2v89ArgumentsE
2208 fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_6ObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_00000000_03DBA2A116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
2209}
2210{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002211 bug_60667c
2212 Memcheck:Leak
2213 ...
2214 obj:*
2215 fun:_ZN3gpu5gles216GLES2DecoderImpl15DoCompileShaderEj
2216 fun:_ZN3gpu5gles216GLES2DecoderImpl19HandleCompileShaderEjRKNS0_13CompileShaderE
2217 fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
2218}
2219{
2220 bug_60668a
2221 Memcheck:Uninitialized
2222 ...
2223 fun:_swrast_write_rgba_span
2224 fun:general_triangle
2225 fun:_swrast_validate_triangle
2226 fun:_swrast_Triangle
2227 fun:triangle_rgba
2228 fun:_tnl_render_triangles_verts
2229 fun:run_render
2230 fun:_tnl_run_pipeline
2231 fun:_tnl_draw_prims
2232 fun:_tnl_vbo_draw_prims
2233 fun:vbo_exec_DrawArrays
2234 fun:neutral_DrawArrays
2235 fun:glDrawArrays
2236}
2237{
2238 bug_60668b
2239 Memcheck:Overlap
2240 fun:memcpy
2241 fun:clip_span
2242 fun:_swrast_write_rgba_span
2243 fun:general_triangle
2244 fun:_swrast_validate_triangle
2245 fun:_swrast_Triangle
2246 fun:triangle_rgba
2247 fun:_tnl_render_poly_elts
2248 fun:_tnl_RenderClippedPolygon
2249 fun:clip_tri_4
2250 fun:clip_elt_triangles
2251 fun:run_render
2252 fun:_tnl_run_pipeline
2253 fun:_tnl_draw_prims
2254 fun:_tnl_vbo_draw_prims
2255 fun:vbo_validated_drawrangeelements
2256 fun:vbo_exec_DrawElements
2257 fun:neutral_DrawElements
2258 fun:glDrawElements
2259 fun:_ZN3gpu5gles216GLES2DecoderImpl14DoDrawElementsEbjijii
2260 fun:_ZN3gpu5gles216GLES2DecoderImpl18HandleDrawElementsEjRKNS0_12DrawElementsE
2261 fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
2262}
2263{
2264 bug_60668c
2265 Memcheck:Overlap
2266 ...
2267 fun:_swrast_write_rgba_span
2268 fun:general_triangle
2269 fun:_swrast_Triangle
2270 fun:triangle_rgba
2271 fun:_tnl_render_poly_elts
2272 fun:_tnl_RenderClippedPolygon
2273 fun:clip_tri_4
2274 fun:clip_render_tri_fan_verts
2275 fun:run_render
2276 fun:_tnl_run_pipeline
2277 fun:_tnl_draw_prims
2278 fun:_tnl_vbo_draw_prims
2279 fun:vbo_exec_DrawArrays
2280 fun:neutral_DrawArrays
2281 fun:glDrawArrays
2282}
2283{
2284 bug_60670a
2285 Memcheck:Unaddressable
2286 fun:swizzle_copy
2287 fun:_mesa_swizzle_ubyte_image
2288 fun:_mesa_texstore_rgba8888
2289 fun:_mesa_texstore
2290 fun:_mesa_store_teximage2d
2291 fun:_mesa_TexImage2D
2292 fun:glTexImage2D
2293 fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl10texImage2DEjjjjjjjjPKv
2294 fun:_ZN7WebCore25GraphicsContext3DInternal10texImage2DEjjjjjjjjPv
2295 fun:_ZN7WebCore17GraphicsContext3D10texImage2DEjjjjjjjjPv
2296}
2297{
2298 bug_60670b
2299 Memcheck:Unaddressable
2300 fun:extract_float_rgba
2301 fun:_mesa_unpack_color_span_chan
2302 fun:_mesa_make_temp_chan_image
2303 fun:_mesa_texstore_rgba8888
2304 fun:_mesa_texstore
2305 fun:_mesa_store_teximage2d
2306 fun:_mesa_TexImage2D
2307 fun:glTexImage2D
2308 fun:_ZN6WebKit31WebGraphicsContext3DDefaultImpl10texImage2DEjjjjjjjjPKv
2309 fun:_ZN7WebCore25GraphicsContext3DInternal10texImage2DEjjjjjjjjPv
2310 fun:_ZN7WebCore17GraphicsContext3D10texImage2DEjjjjjjjjPv
2311}
2312{
2313 bug_69073
2314 Memcheck:Leak
2315 fun:malloc
2316 ...
2317 fun:sqlite3*
2318 ...
2319 fun:find_objects
2320 fun:find_objects_by_template
2321 fun:nssToken_FindCertificatesBySubject
2322 fun:nssTrustDomain_FindCertificatesBySubject
2323 fun:nssCertificate_BuildChain
2324 fun:NSSCertificate_BuildChain
2325}
2326{
2327 bug_61424
2328 Memcheck:Leak
2329 fun:_Znw*
2330 fun:_ZN13FormStructure18EncodeQueryRequestERK12ScopedVectorIS_EPSt6vectorISsSaISsEEPSs
2331 fun:*FormStructureTest_EncodeQueryRequest_Test8TestBodyEv
2332}
2333{
2334 bug_61424_b
2335 Memcheck:Leak
2336 fun:_Znw*
2337 fun:_ZN13FormStructure18EncodeQueryRequestERK12ScopedVectorIS_EPSt6vectorISsSaISsEEPSs
2338 fun:_ZN12_GLOBAL__N_141FormStructureTest_EncodeQueryRequest_Test8TestBodyEv
2339}
2340{
2341 bug_63671
2342 Memcheck:Param
2343 write(buf)
2344 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00002345 fun:_ZN9file_util9WriteFileE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002346 fun:_Z24ConvertWebAppToExtensionRK18WebApplicationInfoRKN4base4TimeE
2347 fun:_ZN30ExtensionFromWebApp_Basic_Test8TestBodyEv
2348}
2349{
2350 bug_63671_b
2351 Memcheck:Param
2352 write(buf)
2353 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00002354 fun:_ZN9file_util9WriteFileE*
2355 fun:_ZN12_GLOBAL__N_110SaveBitmapEPSt6vectorIhSaIhEE*
2356 fun:_ZN4base8internal15RunnableAdapterIPFvPSt6vectorIhSaIhEE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002357}
2358{
2359 bug_64804
2360 Memcheck:Leak
2361 fun:_Znw*
2362 fun:_ZN4base16MessageLoopProxy22currentEv
2363 ...
2364 fun:_ZN10URLFetcher4CoreC1EPS_RK4GURLNS_11RequestTypeEPNS_8DelegateE
2365 fun:_ZN10URLFetcherC*ERK4GURLNS_11RequestTypeEPNS_8DelegateE
2366}
2367{
2368 bug_64887_a
2369 Memcheck:Uninitialized
2370 fun:_itoa_word
2371 fun:vfprintf
2372 fun:vsnprintf
2373 fun:snprintf
2374 fun:_ZN7testing*26PrintByteSegmentInObjectToEPKhmmPSo
2375 fun:_ZN7testing*24PrintBytesInObjectToImplEPKhmPSo
2376 fun:_ZN7testing9internal220PrintBytesInObjectToEPKhmPSo
2377 fun:_ZN7testing9internal220TypeWithoutFormatterI*
2378 fun:_ZN7testing9internal2lsIcSt11char_traitsIcE*
2379 fun:_ZN16testing_internal26DefaultPrintNonContainerToI*
2380 fun:_ZN7testing8internal14DefaultPrintToI*
2381 fun:_ZN7testing8internal7PrintToI*
2382 fun:_ZN7testing8internal16UniversalPrinterI*
2383 fun:_ZN7testing8internal14UniversalPrintI*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002384}
2385{
2386 bug_64887_b
2387 Memcheck:Uninitialized
2388 fun:_itoa_word
2389 fun:vfprintf
2390 fun:*vsnprintf*
2391 fun:*snprintf*
2392 fun:_ZN7testing*PrintByteSegmentInObjectTo*
2393 fun:_ZN7testing*PrintBytesInObjectToImplEPKhjPSo
2394 fun:_ZN7testing9internal220PrintBytesInObjectToEPKhjPSo
2395 fun:_ZN7testing9internal220TypeWithoutFormatter*
2396 fun:_ZN7testing9internal2lsIcSt11char_traitsIcE*
2397 fun:_ZN16testing_internal26DefaultPrintNonContainerTo*
2398 fun:_ZN7testing8internal14DefaultPrintToI*
2399 fun:_ZN7testing8internal7PrintToI*
2400 fun:_ZN7testing8internal16UniversalPrinterI*
2401 fun:_ZN7testing8internal14UniversalPrintI*
2402}
2403{
2404 bug_64887_c
2405 Memcheck:Uninitialized
2406 fun:_itoa_word
2407 fun:vfprintf
2408 fun:*vsnprintf*
2409 fun:*snprintf*
2410 fun:_ZN7testing*PrintByteSegmentInObjectTo*
2411 fun:_ZN7testing*PrintBytesInObjectToImplEPKhjPSo
2412 fun:_ZN7testing9internal220PrintBytesInObjectToEPKhjPSo
2413 fun:_ZN7testing9internal220TypeWithoutFormatter*
2414 fun:_ZN7testing9internal2lsIcSt11char_traitsIcE*
2415 fun:_ZN16testing_internal26DefaultPrintNonContainerTo*
2416 fun:_ZN7testing8internal14DefaultPrintToI*
2417 fun:_ZN7testing8internal7PrintToI*
2418 fun:_ZN7testing8internal16UniversalPrinterI*
2419 fun:_ZN7testing8internal14UniversalPrintI*
2420}
2421{
2422 bug_64887_d
2423 Memcheck:Uninitialized
2424 ...
2425 fun:_ZNSolsEx
2426 fun:_ZN7testing9internal220TypeWithoutFormatterIN5media7PreloadELNS0_8TypeKindE1EE10PrintValueERKS3_PSo
2427 fun:_ZN7testing9internal2lsIcSt11char_traitsIcEN5media7PreloadEEERSt13basic_ostreamIT_T0_ESA_RKT1_
2428 fun:_ZN16testing_internal26DefaultPrintNonContainerToIN5media7PreloadEEEvRKT_PSo
2429 fun:_ZN7testing8internal14DefaultPrintToIN5media7PreloadEEEvcNS0_13bool_constantILb0EEERKT_PSo
2430 fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKT_PSo
2431 fun:_ZN7testing8internal16UniversalPrinterIN5media7PreloadEE5PrintERKS3_PSo
2432 fun:_ZN7testing8internal18TuplePrefixPrinter*
2433 fun:_ZN7testing8internal12PrintTupleToINSt3tr15tupleIN5media7PreloadENS2*
2434 fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKNSt3tr15tupleIT*
2435 fun:_ZN7testing8internal16UniversalPrinterINSt3tr15tupleIN5media7PreloadENS2*
2436 fun:_ZN7testing8internal14UniversalPrintINSt3tr15tupleIN5media7PreloadENS2*
2437 fun:_ZNK7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE32UntypedDescribeUninterestingCallEPKvPSo
2438 fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
2439 fun:_ZN7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE10InvokeWithERKNSt3tr15tupleIS3*
2440 fun:_ZN7testing8internal14FunctionMockerIFvN5media7PreloadEEE6InvokeES3_
2441 fun:_ZN5media11MockDemuxer10SetPreloadENS_7PreloadE
2442}
2443{
2444 bug_64887_e
2445 Memcheck:Uninitialized
2446 ...
2447 fun:_ZNSolsEx
2448 fun:_ZN7testing9internal220TypeWithoutFormatterIN5media7PreloadELNS0_8TypeKindE1EE10PrintValueERKS3_PSo
2449 fun:_ZN7testing9internal2lsIcSt11char_traitsIcEN5media7PreloadEEERSt13basic_ostreamIT_T0_ESA_RKT1_
2450 fun:_ZN16testing_internal26DefaultPrintNonContainerToIN5media7PreloadEEEvRKT_PSo
2451 fun:_ZN7testing8internal14DefaultPrintToIN5media7PreloadEEEvcNS0_13bool_constantILb0EEERKT_PSo
2452 fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKT_PSo
2453 fun:_ZN7testing8internal16UniversalPrinterIN5media7PreloadEE5PrintERKS3_PSo
2454 fun:_ZN7testing8internal18TuplePrefixPrinter*
2455 fun:_ZN7testing8internal12PrintTupleToINSt3tr15tupleIN5media7PreloadENS2*
2456 fun:_ZN7testing8internal7PrintToIN5media7PreloadEEEvRKNSt3tr15tupleIT*
2457 fun:_ZN7testing8internal16UniversalPrinterINSt3tr15tupleIN5media7PreloadENS2*
2458 fun:_ZN7testing8internal14UniversalPrintINSt3tr15tupleIN5media7PreloadENS2*
2459 fun:_ZNK7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE32UntypedDescribeUninterestingCallEPKvPSo
2460 fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
2461 fun:_ZN7testing8internal18FunctionMockerBaseIFvN5media7PreloadEEE10InvokeWithERKNSt3tr15tupleIS3*
2462 fun:_ZN7testing8internal14FunctionMockerIFvN5media7PreloadEEE6InvokeES3_
2463 fun:_ZN5media11MockDemuxer10SetPreloadENS_7PreloadE
2464}
2465{
2466 bug_65940_a
2467 Memcheck:Leak
2468 fun:_Znw*
2469 ...
2470 fun:_ZN3IPC12ChannelProxy7Context13CreateChannelERKNS_13ChannelHandleERKNS_7Channel4ModeE
2471 fun:_ZN3IPC12ChannelProxy4InitERKNS_13ChannelHandleENS_7Channel4ModeEP11MessageLoopb
2472 fun:_ZN3IPC12ChannelProxyC2ERKNS_13ChannelHandleENS_7Channel4ModeEP11MessageLoopPNS0_7ContextEb
2473 fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEP11MessageLoopbPN4base13WaitableEventE
2474}
2475{
2476 bug_65940_b
2477 Memcheck:Leak
2478 fun:_Znw*
2479 ...
2480 fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS_8ListenerEPN4base22SingleThreadTaskRunnerEbPNS8_13WaitableEventE
2481 fun:_ZN7content11ChildThread4InitEv
2482 fun:_ZN7content11ChildThreadC2ERKSs
2483}
2484{
2485 bug_65940_c
2486 Memcheck:Leak
2487 fun:_Znw*
2488 fun:_ZN9__gnu_cxx13new_allocatorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEEE8allocateEmPKv
2489 fun:_ZNSt12_Vector_baseI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE11_M_allocateEm
2490 fun:_ZNSt6vectorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS4_S6_EERKS4_
2491 fun:_ZNSt6vectorI13scoped_refptrIN3IPC12ChannelProxy13MessageFilterEESaIS4_EE9push_backERKS4_
2492 fun:_ZN3IPC12ChannelProxy7Context11OnAddFilterEv
2493}
2494{
2495 bug_65940_d
2496 Memcheck:Leak
2497 fun:_Znw*
2498 fun:_ZN7content11ChildThread4InitEv
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00002499 fun:_ZN7content11ChildThreadC*
2500 ...
2501 fun:_ZN7content21WebRTCAudioDeviceTest5SetUpEv
2502}
2503{
2504 bug_65940_e
2505 Memcheck:Leak
2506 fun:_Znw*
2507 fun:_ZN7content16RenderThreadImpl4InitEv
2508 fun:_ZN7content16RenderThreadImplC*
2509 ...
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002510 fun:_ZN7content21WebRTCAudioDeviceTest5SetUpEv
2511}
2512{
2513 bug_66853_a
2514 Memcheck:Leak
2515 fun:_Znw*
2516 fun:_ZN11ProfileImpl14GetHostZoomMapEv
2517 ...
2518 fun:_ZNK17ProfileImplIOData6Handle27GetMainRequestContextGetterEv
2519 fun:_ZN11ProfileImpl17GetRequestContextEv
2520 fun:_ZN19SafeBrowsingService5StartEv
2521 fun:_ZN19SafeBrowsingService10InitializeEv
2522 fun:_ZN22ResourceDispatcherHost10InitializeEv
2523 fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
2524 fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
2525 fun:_ZN16ExtensionService4InitEv
2526 fun:_ZN11ProfileImpl14InitExtensionsE*
2527 fun:_ZN14ProfileManager10AddProfileEP7Profileb
2528}
2529{
2530 bug_67142
2531 Memcheck:Leak
2532 fun:_Znw*
2533 fun:_ZN16ChildProcessHost13CreateChannelEv
2534 fun:_ZN14GpuProcessHost4InitEv
2535}
2536{
2537 bug_67261
2538 Memcheck:Leak
2539 fun:_Znw*
2540 ...
2541 fun:_ZN3sql10Connection18GetUniqueStatementEPKc
2542 fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
2543 fun:_ZN8appcache16AppCacheDatabase22PrepareCachedStatementERKN3sql11StatementIDEPKcPNS1_9StatementE
2544}
2545{
2546 bug_67553
2547 Memcheck:Leak
2548 fun:_Znw*
2549 ...
2550 fun:_ZNSt3mapISs13scoped_refptrIK9ExtensionESt4lessISsESaISt4pairIKSsS3_EEEixERS7_
2551 fun:_ZN16ExtensionInfoMap12AddExtensionEPK9Extension
2552}
2553{
2554 bug_68069_a
2555 Memcheck:Leak
2556 fun:malloc
2557 obj:*
2558 obj:*
2559 obj:*
2560 obj:*
2561 fun:_ZN3gfx20GetGLCoreProcAddressEPKc
2562 fun:_ZN3gfx22InitializeGLBindingsGLEv
2563 fun:_ZN3gfx20InitializeGLBindingsENS_16GLImplementationE
2564 fun:_ZN3gfx9GLSurface16InitializeOneOffEv
2565}
2566{
2567 bug_68069_b
2568 Memcheck:Leak
2569 fun:malloc
2570 fun:XextCreateExtension
2571 ...
2572 fun:_ZN3gfx12GLSurfaceGLX16InitializeOneOffEv
2573 fun:_ZN3gfx9GLSurface24InitializeOneOffInternalEv
2574 fun:_ZN3gfx9GLSurface16InitializeOneOffEv
2575}
2576{
2577 bug_68553
2578 Memcheck:Leak
2579 fun:_Znw*
2580 fun:_ZN3net25DiskCacheBasedSSLHostInfoC1ERKSsRKNS_9SSLConfigEPNS_12CertVerifierEPNS_9HttpCacheE
2581 fun:_ZN3net9HttpCache25SSLHostInfoFactoryAdaptor10GetForHostERKSsRKNS_9SSLConfigE
2582 fun:_ZN3net13SSLConnectJob12DoTCPConnectEv
2583 fun:_ZN3net13SSLConnectJob6DoLoopEi
2584 fun:_ZN3net13SSLConnectJob15ConnectInternalEv
2585 fun:_ZN3net10ConnectJob7ConnectEv
2586 fun:_ZN3net8internal26ClientSocketPoolBaseHelper21RequestSocketInternalERKSsPKNS1_7RequestE
2587 fun:_ZN3net8internal26ClientSocketPoolBaseHelper13RequestSocketERKSsPKNS1_7RequestE
2588 fun:_ZN3net20ClientSocketPoolBaseINS_15SSLSocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
2589 fun:_ZN3net19SSLClientSocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
2590 fun:_ZN3net18ClientSocketHandle4InitINS_15SSLSocketParamsENS_19SSLClientSocketPoolEEEiRKSsRK13scoped_refptrIT_ENS_15RequestPriorityEP14CallbackRunnerI6Tuple1IiEEPT0_RKNS_11BoundNetLogE
2591}
2592{
2593 Bug_69919
2594 Memcheck:Leak
2595 fun:calloc
2596 ...
2597 fun:_ZN3gfx15OSMesaGLContext10InitializeEjPNS_9GLContextE
2598 fun:_ZN3gfx9GLContext24CreateOffscreenGLContextEPS0_
2599 fun:*InitializeGLContextEv
2600}
2601{
2602 Bug_69934_a
2603 Memcheck:Leak
2604 fun:_Znw*
Ben Murdochbbcdd452013-07-25 10:06:34 +01002605 fun:_ZN*NPObjectProxy10NPAllocateEP4_NPPP7NPClass
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002606 fun:_NPN_CreateObject
2607 fun:_ZN6WebKit11WebBindings12createObjectEP4_NPPP7NPClass
2608}
2609{
2610 Bug_69934_b
2611 Memcheck:Leak
2612 fun:_Znw*
2613 fun:_ZN3IPC11SyncMessage13GenerateReplyEPKNS_7MessageE
2614 fun:_ZN3IPC17SyncMessageSchema*
2615}
2616{
2617 bug_70327
2618 Memcheck:Leak
2619 ...
2620 fun:shaper_font_cache_insert
2621 fun:get_shaper_and_font
2622 fun:itemize_state_process_run
2623 fun:pango_itemize_with_base_dir
2624 fun:pango_layout_check_lines
2625 fun:pango_layout_get_extents_internal
2626 fun:pango_layout_get_pixel_extents
2627 fun:pango_layout_get_pixel_size
2628 fun:_ZN3gfx10Canvas13SizeStringIntERKSbItN4base20string16_char_traitsESaItEERKNS_4FontEPiSA_i
2629}
2630{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002631 bug_71152
2632 Memcheck:Leak
2633 fun:_Znw*
2634 ...
2635 fun:_ZN14SessionService20OnGotSessionCommandsEi13scoped_refptrIN18BaseSessionService26InternalGetCommandsRequestEE
2636}
2637{
2638 bug_71728
2639 Memcheck:Leak
2640 fun:_Znw*
2641 fun:*DownloadFileTest5SetUpEv
2642}
2643{
2644 bug_72544
2645 Memcheck:Leak
2646 fun:malloc
2647 fun:_ZN3WTF10fastMallocEj
2648 fun:_ZN3WTF10RefCountedIN7WebCore14StyleSheetListEEnwEj
2649 fun:_ZN7WebCore14StyleSheetList6createEPNS_8DocumentE
2650 fun:_ZN7WebCore8DocumentC2EPNS_5FrameERKNS_4KURLEbbS5_
2651 fun:_ZN7WebCore12HTMLDocumentC1EPNS_5FrameERKNS_4KURLES5_
2652 fun:_ZN7WebCore12HTMLDocument6createEPNS_5FrameERKNS_4KURLES5_
2653 fun:_ZN7WebCore17DOMImplementation14createDocumentERKN3WTF6StringEPNS_5FrameERKNS_4KURLEb
2654 fun:_ZN7WebCore14DocumentWriter14createDocumentERKNS_4KURLE
2655 fun:_ZN7WebCore14DocumentWriter5beginERKNS_4KURLEbPNS_14SecurityOriginE
2656 fun:_ZN7WebCore11FrameLoader4initEv
2657 fun:_ZN7WebCore5Frame4initEv
2658 fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPNS_11WebViewImplE
2659 fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
2660 fun:_ZN10RenderViewC1EP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEixRKSbItNS8_20string16_char_traitsESaItEE
2661 fun:_ZN10RenderView6CreateEP16RenderThreadBaseiiRK19RendererPreferencesRK14WebPreferencesPN4base14RefCountedDataIiEEixRKSbItNS8_20string16_char_traitsESaItEE
2662 fun:_ZN12RenderThread15OnCreateNewViewERK18ViewMsg_New_Params
2663}
2664{
2665 bug_72698_a
2666 Memcheck:Leak
2667 fun:_Znw*
2668 ...
2669 fun:_ZN13ProfileIOData20InitializeOnUIThreadEP7Profile
2670}
2671{
2672 bug_73299
2673 Memcheck:Leak
2674 fun:_Znw*
2675 ...
2676 fun:_ZN21RenderProcessHostImpl20CreateMessageFiltersEv
2677 fun:_ZN21RenderProcessHostImpl4InitEb
2678 fun:_ZN7content18RenderViewHostImpl16CreateRenderViewERKSbItN4base20string16_char_traitsESaItEEi
2679}
2680{
2681 bug_73415
2682 Memcheck:Unaddressable
2683 fun:_ZN23AccessibilityController36shouldDumpAccessibilityNotificationsEv
2684 fun:_ZN11WebViewHost29postAccessibilityNotificationERKN6WebKit22WebAccessibilityObjectENS0_28WebAccessibilityNotificationE
2685 fun:_ZN6WebKit16ChromeClientImpl29postAccessibilityNotificationEPN7WebCore19AccessibilityObjectENS1_13AXObjectCache14AXNotificationE
2686 fun:_ZN7WebCore13AXObjectCache24postPlatformNotificationEPNS_19AccessibilityObjectENS0_14AXNotificationE
2687}
2688{
2689 bug_73675
2690 Memcheck:Leak
2691 fun:_Znw*
2692 fun:_ZN20LayoutTestController13waitUntilDoneERKN3WTF6VectorI10CppVariantLj0EEEPS2_
2693 fun:_ZN13CppBoundClass14MemberCallbackI20LayoutTestControllerE3runERKN3WTF6VectorI10CppVariantLj0EEEPS5_
2694 fun:_ZN13CppBoundClass6invokeEPvPK10_NPVariantjPS1_
2695 fun:_ZN11CppNPObject6invokeEP8NPObjectPvPK10_NPVariantjPS3_
2696 fun:_ZN7WebCore18npObjectInvokeImplERKN2v89ArgumentsENS_18InvokeFunctionTypeE
2697 fun:_ZN7WebCore21npObjectMethodHandlerERKN2v89ArgumentsE
2698 fun:_ZN2v88internal19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_47_GLOBAL__N_v8_src_builtins.cc_*BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEE
2699 obj:*
2700}
2701{
2702 bug_75019
2703 Memcheck:Leak
2704 fun:_Znw*
2705 ...
2706 fun:_ZN14GpuDataManagerC1Ev
2707 fun:_ZN22DefaultSingletonTraitsI14GpuDataManagerE3NewEv
2708 fun:_ZN9SingletonI14GpuDataManager22DefaultSingletonTraitsIS0_ES0_E3getEv
2709 fun:_ZN14GpuDataManager11GetInstanceEv
2710 fun:_Z11BrowserMainRK18MainFunctionParams
2711 fun:_ZN20InProcessBrowserTest5SetUpEv
2712}
2713{
2714 bug_75051
2715 Memcheck:Leak
2716 fun:_Znw*
2717 ...
2718 fun:_ZN3net12CertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_16CertVerifyResultEP14CallbackRunnerI6Tuple1IiEEPPv
2719 fun:_ZN3net25SingleRequestCertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_16CertVerifyResultEP14CallbackRunnerI6Tuple1IiEE
2720 fun:_ZN3net18SSLClientSocketNSS12DoVerifyCertEi
2721 fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
2722}
2723{
2724 bug_75127a
2725 Memcheck:Uninitialized
2726 ...
2727 fun:png_process_data
2728 fun:_ZN3gfx8PNGCodec6Decode*
2729}
2730{
2731 bug_75127b
2732 Memcheck:Uninitialized
2733 ...
2734 fun:png_process_data
2735 fun:_ZN3gfx8PNGCodec6Decode*
2736}
2737{
2738 bug_75127c
2739 Memcheck:Uninitialized
2740 ...
2741 fun:png_process_data
2742 fun:_ZN3gfx8PNGCodec6Decode*
2743}
2744{
2745 bug_76197a
2746 Memcheck:Unaddressable
2747 fun:sqlite3DbFree
2748 fun:releaseMemArray
2749 fun:sqlite3VdbeDelete
2750 fun:sqlite3VdbeFinalize
2751 fun:sqlite3_finalize
2752 fun:_ZN3sql10Connection12StatementRef5CloseEv
2753 fun:_ZN3sql10Connection12StatementRefD2Ev
2754 fun:_ZN3sql10Connection12StatementRefD1Ev
2755 fun:_ZNK4base10RefCountedIN3sql10Connection12StatementRefEE7ReleaseEv
2756 fun:_ZN13scoped_refptrIN3sql10Connection12StatementRefEED2Ev
2757 fun:_ZN13scoped_refptrIN3sql10Connection12StatementRefEED1Ev
2758 fun:_ZNSt4pairIKN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEEED2Ev
2759 fun:_ZNSt4pairIKN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEEED1Ev
2760 fun:_ZN9__gnu_cxx13new_allocatorISt4pairIKN3sql11StatementIDE13scoped_refptrINS2_10Connection12StatementRefEEEE7destroyEPS9_
2761 fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE12destroy_nodeEPSt13_Rb_tree_nodeIS8_E
2762 fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E
2763 fun:_ZNSt8_Rb_treeIN3sql11StatementIDESt4pairIKS1_13scoped_refptrINS0_10Connection12StatementRefEEESt10_Select1stIS8_ESt4lessIS1_ESaIS8_EE5clearEv
2764 fun:_ZNSt3mapIN3sql11StatementIDE13scoped_refptrINS0_10Connection12StatementRefEESt4lessIS1_ESaISt4pairIKS1_S5_EEE5clearEv
2765 fun:_ZN3sql10Connection5CloseEv
2766 fun:_ZN3sql10ConnectionD2Ev
2767 fun:_ZN3sql10ConnectionD1Ev
2768 fun:_ZN7history16InMemoryDatabaseD0Ev
2769}
2770{
2771 bug_76197b
2772 Memcheck:Unaddressable
2773 ...
2774 fun:sqlite3_step
2775 fun:sqlite3_exec
2776 fun:_ZN3sql10Connection7ExecuteEPKc
2777 fun:_ZN7history11URLDatabase31CreateKeywordSearchTermsIndicesEv
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00002778 fun:_ZN7history16InMemoryDatabase12InitFromDiskE*
2779 fun:_ZN7history22InMemoryHistoryBackend4InitE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002780}
2781{
2782 bug_77766
2783 Memcheck:Leak
2784 fun:malloc
2785 fun:_ZN3WTF10fastMallocEm
2786 fun:_ZN7WebCore18PerformTaskContextnwEm
2787 fun:_ZN7WebCore8Document8postTaskEN3WTF10PassOwnPtrINS_22ScriptExecutionContext4TaskEEE
2788 fun:_ZN7WebCore20WorkerMessagingProxy22workerContextDestroyedEv
2789 fun:_ZN6WebKit19WebWorkerClientImpl22workerContextDestroyedEv
2790 fun:_ZN7WebCore13WorkerContextD2Ev
2791 fun:_ZN7WebCore22DedicatedWorkerContextD0Ev
2792 fun:_ZN3WTF10RefCountedIN7WebCore13WorkerContextEE5derefEv
2793 fun:_ZN3WTF6RefPtrIN7WebCore13WorkerContextEEaSEPS2_
2794 fun:_ZN7WebCore12WorkerThread12workerThreadEv
2795 fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
2796 fun:_ZN3WTFL16threadEntryPointEPv
2797 fun:_ZN3WTFL19wtfThreadEntryPointEPv
2798}
2799{
2800 bug_78201
2801 Memcheck:Leak
2802 fun:_Znw*
2803 fun:_ZN18BrowserProcessImpl28CreateResourceDispatcherHostEv
2804 fun:_ZN18BrowserProcessImpl24resource_dispatcher_hostEv
2805 fun:_ZN16ExtensionService4InitEv
2806 fun:_ZN11ProfileImpl14InitExtensionsE*
2807}
2808{
2809 bug_78786
2810 Memcheck:Leak
2811 fun:_Znw*
2812 fun:*35NonBlockingInvalidationNotifierTest5SetUpEv
2813}
2814{
2815 bug_79357a
2816 Memcheck:Unaddressable
2817 ...
2818 fun:*FilePathWatcherImpl*Watch*Delegate*
2819 fun:*FilePathWatcher*Watch*
2820 fun:_ZN21UserStyleSheetWatcher4InitEv
2821}
2822{
2823 bug_79357b
2824 Memcheck:Leak
2825 ...
2826 fun:*FilePathWatcherImpl*Watch*Delegate*
2827 fun:*FilePathWatcher*Watch*
2828 fun:_ZN21UserStyleSheetWatcher4InitEv
2829}
2830{
2831 bug_79651
2832 Memcheck:Leak
2833 ...
2834 fun:_ZN8notifier14XmppConnectionC1ERKN4buzz18XmppClientSettingsERK13scoped_refptrIN3net23URLRequestContextGetterEEPNS0_8DelegateEPNS1_11PreXmppAuthE
2835 fun:_ZN8notifier18SingleLoginAttempt13OnNewSettingsERKNS_18ConnectionSettingsE
2836 fun:_ZN8notifier23XmppConnectionGenerator17UseNextConnectionEv
2837 fun:_ZN8notifier23XmppConnectionGenerator15StartGeneratingEv
2838 fun:_ZN8notifier18SingleLoginAttemptC1EPNS_13LoginSettingsEPNS0_8DelegateE
2839 fun:_ZN8notifier5Login15StartConnectionEv
2840 fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
2841 fun:*35InvalidationNotifierTest_Basic_Test8TestBodyEv
2842}
2843{
2844 bug_79652
2845 Memcheck:Leak
2846 ...
2847 fun:_ZN8chromeos14AudioMixerAlsa15ConnectInternalEv
2848 fun:_ZN8chromeos14AudioMixerAlsa7ConnectEv
2849}
2850{
2851 bug_79654_a
2852 Memcheck:Leak
2853 fun:_Znw*
2854 ...
2855 fun:_ZNSt3setIP16RenderWidgetHostSt4lessIS1_ESaIS1_EE6insertERKS1_
2856 fun:_ZN*9TabLoader12TabIsLoadingEP24NavigationControllerImpl
2857 fun:_ZN*18SessionRestoreImpl21ProcessSessionWindowsEPSt6vectorIP13SessionWindowSaIS3_EE
2858 fun:_ZN*18SessionRestoreImpl12OnGotSessionEiPSt6vectorIP13SessionWindowSaIS3_EE
2859}
2860{
2861 bug_79654_b
2862 Memcheck:Leak
2863 fun:_Znw*
2864 ...
2865 fun:*RenderWidgetHost*
2866 ...
2867 fun:_ZNSt3setIP16RenderWidgetHostSt4lessIS1_ESaIS1_EE6insertERKS1_
2868 fun:*TabLoader7ObserveEiRKN7content18NotificationSourceERKNS1_19NotificationDetailsE
2869 fun:_ZN23NotificationServiceImpl*
2870 fun:_ZN15WebContentsImpl12SetIsLoading*
2871 fun:_ZN15WebContentsImpl14RenderViewGone*
2872}
2873{
2874 bug_79865a
2875 Memcheck:Leak
2876 fun:_Znw*
2877 ...
2878 fun:_ZN33MalwareDetailsTest_HTTPCache_Test8TestBodyEv
2879}
2880{
2881 bug_79865b
2882 Memcheck:Leak
2883 ...
2884 fun:_Znw*
2885 fun:_ZN14TestingProfile20CreateRequestContextEv
2886 fun:_ZN42MalwareDetailsTest_HTTPCacheNoEntries_Test8TestBodyEv
2887}
2888{
2889 bug_79933a
2890 Memcheck:Leak
2891 fun:_Znw*
2892 ...
2893 fun:_ZN21TestURLRequestContext4InitEv
2894 ...
2895 fun:_ZN21TestURLRequestContextC1Ev
2896 fun:_ZN27TestURLRequestContextGetter20GetURLRequestContextEv
2897}
2898{
2899 bug_16089 WorkerPool threads can leak by design
2900 Memcheck:Leak
2901 fun:_Znw*
2902 fun:_ZN4base22PosixDynamicThreadPool8PostTask*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002903}
2904{
2905 bug_80462_a
2906 Memcheck:Leak
2907 fun:malloc
2908 fun:_ZN7WebCoreL15allocV8NPObjectEP4_NPPP7NPClass
2909 fun:_NPN_CreateObject
2910 fun:_ZN7WebCore22npCreateV8ScriptObjectEP4_NPPN2v86HandleINS2_6ObjectEEEPNS_9DOMWindowE
2911 fun:_ZN6WebKitL16makeIntArrayImplERKNS_9WebVectorIiEE
2912 fun:_ZN6WebKit11WebBindings12makeIntArrayERKNS_9WebVectorIiEE
2913}
2914{
2915 bug_80462_b
2916 Memcheck:Leak
2917 fun:malloc
2918 fun:_ZN7WebCoreL15allocV8NPObjectEP4_NPPP7NPClass
2919 fun:_NPN_CreateObject
2920 fun:_ZN7WebCore22npCreateV8ScriptObjectEP4_NPPN2v86HandleINS2_6ObjectEEEPNS_9DOMWindowE
2921 fun:_ZN6WebKitL19makeStringArrayImplERKNS_9WebVectorINS_9WebStringEEE
2922 fun:_ZN6WebKit11WebBindings15makeStringArrayERKNS_9WebVectorINS_9WebStringEEE
2923}
2924{
2925 bug_80537_a
2926 Memcheck:Leak
2927 fun:calloc
2928 ...
2929 fun:_ZN3gfx15GLContextOSMesa11MakeCurrentEv
2930}
2931{
2932 bug_80537_b
2933 Memcheck:Leak
2934 fun:calloc
2935 ...
2936 fun:_ZN3gfx15GLContextOSMesa11MakeCurrentEPNS_9GLSurfaceE
2937}
2938{
2939 bug_80551
2940 Memcheck:Leak
2941 fun:_Znw*
2942 fun:_Z11BrowserMainRK18MainFunctionParams
2943 fun:_ZN20InProcessBrowserTest5SetUpEv
2944}
2945{
2946 bug_80550_a
2947 Memcheck:Leak
2948 fun:_Znw*
2949 fun:_ZN16RenderWidgetHost11WasRestoredEv
2950}
2951{
2952 bug_80550_b
2953 Memcheck:Leak
2954 fun:_Znw*
2955 fun:_ZN16RenderWidgetHost9WasHiddenEv
2956}
2957{
2958 bug_80663
2959 Memcheck:Leak
2960 fun:_Znw*
2961 fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvPSsPSt6vectorINS1_11CookieStore10CookieInfoESaIS6_EEEPS2_EENS_8internal20InvokerStorageHolderINSD_15InvokerStorage1IT_T0_EEEESG_RKSH_
2962 fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
2963 fun:_ZN3net17URLRequestHttpJob5StartEv
2964 fun:_ZN3net10URLRequest8StartJobEPNS_13URLRequestJobE
2965 fun:_ZN3net10URLRequest5StartEv
2966 fun:_ZN10URLFetcher4Core15StartURLRequestEv
2967 fun:_ZN10URLFetcher4Core30StartURLRequestWhenAppropriateEv
2968}
2969{
2970 bug_82717
2971 Memcheck:Leak
2972 fun:_Znw*
2973 ...
2974 fun:_ZN6chrome26ChromeContentBrowserClient24RenderProcessHostCreatedEPN7content17RenderProcessHostE
2975 fun:_ZN21RenderProcessHostImpl4Init*
2976 ...
2977 fun:_ZN15WebContentsImpl32CreateRenderViewForRenderManagerEP*
2978 fun:_ZN21RenderViewHostManager14InitRenderViewEP*
2979 ...
2980 fun:_ZN21RenderViewHostManager8NavigateERKN7content19NavigationEntryImplE
2981 fun:_ZN15WebContentsImpl15NavigateToEntryERKN7content19NavigationEntryImplENS0_20NavigationController10ReloadTypeE
2982}
2983{
2984 bug_83609
2985 Memcheck:Leak
2986 fun:_Znw*
2987 fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01002988 fun:_ZN4base11MessageLoop15PostDelayedTaskERKN15tracked_objects8LocationEP4Taskx
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002989 fun:_ZN13BrowserThread14PostTaskHelperENS_2IDERKN15tracked_objects8LocationEP4Taskxb
2990 fun:_ZN13BrowserThread8PostTaskENS_2IDERKN15tracked_objects8LocationEP4Task
2991}
2992{
2993 bug_83609b
2994 Memcheck:Leak
2995 fun:_Znw*
2996 fun:_ZN4base4Bind*TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01002997 fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationEP4Task
Torne (Richard Coles)58218062012-11-14 11:43:16 +00002998}
2999{
3000 bug_84224_a
3001 Memcheck:Leak
3002 fun:_Znw*
3003 fun:_ZN9__gnu_cxx13new_allocator*PendingTaskEE8allocate*
3004 fun:_ZN*_Deque_baseIN*PendingTaskESaIS1_*_M_allocate_*
3005 ...
3006 fun:_ZNSt5dequeIN*PendingTaskESaIS1_EE*push_back*
3007 fun:_ZNSt5queueIN4*PendingTask*deque*push*
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01003008 fun:_ZN4base11MessageLoop18AddToIncomingQueueEPN*PendingTaskE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003009}
3010{
3011 bug_84224_b
3012 Memcheck:Unaddressable
3013 fun:_ZN13scoped_refptrIN4base8internal18InvokerStorageBaseEEC2ERKS3_
3014 fun:_ZN13scoped_refptrIN4base8internal18InvokerStorageBaseEEC1ERKS3_
3015 fun:_ZN4base8internal12CallbackBaseC2ERKS1_
3016 fun:_ZN4base8CallbackIFvvEEC2ERKS2_
3017 fun:_ZN4base8CallbackIFvvEEC1ERKS2_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01003018 fun:_ZN4base11MessageLoop11PendingTaskC2ERKS0_
3019 fun:_ZN4base11MessageLoop11PendingTaskC1ERKS0_
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003020 fun:_ZN9__gnu_cxx13new_allocatorIN11MessageLoop11PendingTaskEE9constructEPS2_RKS2_
3021 fun:_ZNSt5dequeIN11MessageLoop11PendingTaskESaIS1_EE9push_backERKS1_
3022 fun:_ZNSt5queueIN11MessageLoop11PendingTaskESt5dequeIS1_SaIS1_EEE4pushERKS1_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01003023 fun:_ZN4base11MessageLoop18AddToIncomingQueueEPNS_11PendingTaskE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003024}
3025{
3026 bug_84265
3027 Memcheck:Leak
3028 fun:_Znw*
3029 fun:_ZN12LoginHandler6CreateEPN3net17AuthChallengeInfoEPNS0_10URLRequestE
3030 fun:_Z17CreateLoginPromptPN3net17AuthChallengeInfoEPNS_10URLRequestE
3031 fun:_ZN22ResourceDispatcherHost14OnAuthRequiredEPN3net10URLRequestEPNS0_17AuthChallengeInfoE
3032 fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
3033}
3034{
3035 bug_84770_a
3036 Memcheck:Unaddressable
3037 fun:_ZN6WebKit21FrameLoaderClientImpl12allowPluginsEb
3038 fun:_ZN7WebCore14SubframeLoader12allowPluginsENS_28ReasonForCallingAllowPluginsE
3039}
3040{
3041 bug_84770_b
3042 Memcheck:Unaddressable
3043 fun:_ZN6WebKit21FrameLoaderClientImpl15allowJavaScriptEb
3044 fun:_ZN7WebCore16ScriptController17canExecuteScriptsENS_33ReasonForCallingCanExecuteScriptsE
3045}
3046{
3047 bug_84770_c
3048 Memcheck:Unaddressable
3049 fun:_ZN6WebKit21FrameLoaderClientImpl20allowScriptExtensionERKN3WTF6StringEi
3050 fun:_ZN7WebCore16V8DOMWindowShell16createNewContextEN2v86HandleINS1_6ObjectEEEi
3051}
3052{
3053 bug_86481
3054 Memcheck:Leak
3055 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003056 fun:_ZN9__gnu_cxx13new_allocator*FilePath*allocate*
3057 fun:_ZNSt11_Deque_base*FilePath*_M_allocate_map*
3058 fun:_ZNSt11_Deque_base*FilePath*_M_initialize_map*
3059 fun:_ZNSt11_Deque_baseI*FilePath*
3060 fun:_ZNSt5dequeI*FilePath*
3061 fun:_ZNSt5stackI*FilePath*deque*
3062 fun:_ZN9file_util14FileEnumeratorC1E*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003063 fun:_ZN7history20ExpireHistoryBackend25DoExpireHistoryIndexFilesEv
3064}
3065{
3066 bug_87423
3067 Memcheck:Uninitialized
3068 fun:_ZNK3net15HttpBasicStream23LogNumRttVsBytesMetricsEv
3069 fun:_ZN3net22HttpNetworkTransaction18DoReadBodyCompleteEi
3070 fun:_ZN3net22HttpNetworkTransaction6DoLoopEi
3071 fun:_ZN3net22HttpNetworkTransaction4ReadEPNS_8IOBufferEiP14CallbackRunnerI6Tuple1IiEE
3072 fun:_Z15ReadTransactionPN3net15HttpTransactionEPSs
3073 fun:_ZN3net73HttpNetworkTransactionTest_ErrorResponseTofHttpsConnectViaHttpsProxy_Test8TestBodyEv
3074}
3075{
3076 bug_88640_a
3077 Memcheck:Leak
3078 fun:_Znw*
3079 fun:_ZN11ProfileImpl30InitRegisteredProtocolHandlersEv
3080 fun:_ZN11ProfileImpl11DoFinalInitEv
3081 fun:_ZN11ProfileImpl13OnPrefsLoadedEb
3082}
3083{
3084 bug_88640_b
3085 Memcheck:Leak
3086 ...
3087 fun:_ZN11ProfileImpl13OnPrefsLoadedEb
3088 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003089 fun:_ZN11ProfileImplC*E*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003090}
3091{
3092 bug_88640_c
3093 Memcheck:Leak
3094 fun:_Znw*
3095 fun:_ZN29ChromeURLRequestContextGetter14CreateOriginalEP7ProfilePK13ProfileIOData
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003096 fun:_ZN17ProfileImplIOData6Handle4InitE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003097 fun:_ZN11ProfileImpl11DoFinalInitEv
3098 fun:_ZN11ProfileImpl13OnPrefsLoadedEb
3099}
3100{
3101 bug_81796
3102 Memcheck:Leak
3103 fun:_Znw*
3104 fun:_ZN4base16MessageLoopProxy22currentEv
3105 fun:_ZN3IPC12ChannelProxy7ContextC1EPNS_7Channel8ListenerEPN4base16MessageLoopProxyE
3106 fun:_ZN3IPC12ChannelProxyC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEPN4base16MessageLoopProxyE
3107}
3108{
3109 bug_89304
3110 Memcheck:Leak
3111 fun:_Znw*
3112 ...
3113 fun:_ZN3net20ClientSocketPoolBaseINS_*SocketParamsEE13RequestSocketERKSsRK13scoped_refptrIS1_ENS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
3114 fun:_ZN3net*SocketPool13RequestSocketERKSsPKvNS_15RequestPriorityEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEERKNS_11BoundNetLogE
3115 fun:_ZN3net18ClientSocketHandle4Init*
3116 ...
3117 fun:_ZN3net23ClientSocketPoolManager30InitSocketHandleForHttpRequestERK4GURLRKNS_18HttpRequestHeadersEiNS_15RequestPriorityEPNS_18HttpNetworkSessionERKNS_9ProxyInfoEbbRKNS_9SSLConfigESF_RKNS_11BoundNetLogEPNS_18ClientSocketHandleEP14CallbackRunnerI6Tuple1IiEE
3118 fun:_ZN3net21HttpStreamFactoryImpl3Job16DoInitConnectionEv
3119}
3120{
3121 bug_89311
3122 Memcheck:Leak
3123 fun:_Znw*
3124 ...
3125 fun:_ZN3net16HttpStreamParser22DoParseResponseHeadersEi
3126 fun:_ZN3net16HttpStreamParser20ParseResponseHeadersEv
3127 fun:_ZN3net16HttpStreamParser21DoReadHeadersCompleteEi
3128}
3129{
3130 bug_89942_a
3131 Memcheck:Leak
3132 ...
3133 fun:_ZN10ZygoteHost11ForkRequestERKSt6vectorISsSaISsEERKS0_ISt4pairIjiESaIS6_EERKSs
3134 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalE13scoped_refptrIS0_EN13BrowserThread2IDEbRKSt6vectorISt4pairISsSsESaIS7_EEiP11CommandLine
3135}
3136{
3137 bug_89942_b
3138 Memcheck:Leak
3139 ...
3140 fun:_ZNSt6vectorISt4pairIjiESaIS1_EE9push_backERKS1_
3141 fun:_ZN20ChildProcessLauncher7Context14LaunchInternalE13scoped_refptrIS0_EN13BrowserThread2IDEbRKSt6vectorISt4pairISsSsESaIS7_EEiP11CommandLine
3142}
3143{
3144 bug_90057a
3145 Memcheck:Leak
3146 ...
3147 fun:_ZN3net13CookieMonster9InitStoreEv
3148 fun:_ZN3net13CookieMonster15InitIfNecessaryEv
3149 fun:_ZN3net13CookieMonster30GetAllCookiesForURLWithOptionsERK4GURLRKNS_13CookieOptionsE
3150 fun:_ZN3net13CookieMonster19GetAllCookiesForURLERK4GURL
3151 fun:_ZN22ResourceDispatcherHost13CanGetCookiesEPN3net10URLRequestE
3152 fun:_ZN3net10URLRequest13CanGetCookiesEv
3153 fun:_ZN3net13URLRequestJob13CanGetCookiesEv
3154 fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
3155}
3156{
3157 bug_90057b
3158 Memcheck:Leak
3159 ...
3160 fun:_ZN3net13CookieMonster9InitStoreEv
3161 fun:_ZN3net13CookieMonster15InitIfNecessaryEv
3162 fun:_ZN3net13CookieMonster21GetCookiesWithOptionsERK4GURLRKNS_13CookieOptionsE
3163 fun:_ZN3net13CookieMonster26GetCookiesWithOptionsAsyncERK4GURLRKNS_13CookieOptionsERKN4base8CallbackIFvRKSsEEE
3164 fun:_ZN3net11CookieStore15GetCookiesAsyncERK4GURLRKN4base8CallbackIFvRKSsEEE
3165 fun:_ZN12_GLOBAL__N_120GetCookiesOnIOThreadERK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSs
3166}
3167{
3168 bug_90057c
3169 Memcheck:Leak
3170 fun:_Znw*
3171 ...
3172 fun:_ZN3net17URLRequestHttpJob14SaveNextCookieEv
3173 fun:_ZN3net17URLRequestHttpJob35SaveCookiesAndNotifyHeadersCompleteEv
3174 fun:_ZN3net17URLRequestHttpJob16OnStartCompletedEi
3175}
3176{
3177 bug_90215_c
3178 Memcheck:Leak
3179 ...
3180 fun:_ZN3net13URLRequestJob21NotifyRestartRequiredEv
3181 fun:_ZN8appcache21AppCacheURLRequestJob13BeginDeliveryEv
3182}
3183{
3184 bug_90215_d
3185 Memcheck:Leak
3186 ...
3187 fun:_ZN8appcache19AppCacheStorageImpl23RunOnePendingSimpleTaskEv
3188}
3189{
3190 bug_90215_e
3191 Memcheck:Leak
3192 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003193 fun:_ZN8appcache15AppCacheService10InitializeE*
3194 fun:_ZN21ChromeAppCacheService20InitializeOnIOThreadE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003195}
3196{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01003197 bug_90215_f
3198 Memcheck:Leak
3199 fun:_Znw*
3200 ...
3201 fun:_ZN26TransportSecurityPersisterC1EPN3net22TransportSecurityStateERKN4base8FilePathEb
3202 fun:_ZNK13ProfileIOData4InitEPSt3mapISs10linked_ptrIN3net20URLRequestJobFactory15ProtocolHandlerEESt4lessISsESaISt4pairIKSsS5_EEE
3203 fun:_ZN12_GLOBAL__N_114FactoryForMain6CreateEv
3204 fun:_ZN29ChromeURLRequestContextGetter20GetURLRequestContextEv
3205 fun:_ZN7content21ChromeAppCacheService20InitializeOnIOThreadERKN4base8FilePathEPNS_15ResourceContextEPN3net23URLRequestContextGetterE13scoped_refptrIN5quota20SpecialStoragePolicyEE
3206}
3207{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003208 bug_90240
3209 Memcheck:Leak
3210 fun:_Znw*
3211 ...
3212 fun:_ZN2pp5proxy26PPP_Instance_Private_Proxy22OnMsgGetInstanceObjectEiNS0_24SerializedVarReturnValueE
3213}
3214{
3215 bug_90400
3216 Memcheck:Leak
3217 fun:_Znw*
3218 fun:_ZN11ProfileImpl24GetUserStyleSheetWatcherEv
3219 fun:_ZN6chrome26ChromeContentBrowserClient14GetWebkitPrefs*
3220 fun:_ZN15WebContentsImpl14GetWebkitPrefsEv
3221}
3222{
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01003223 bug_90487a
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003224 Memcheck:Leak
3225 fun:_Znw*
3226 fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN5quota11QuotaClientEEE8allocateEjPKv
3227 fun:_ZNSt10_List_baseIPN5quota11QuotaClientESaIS2_EE11_M_get_nodeEv
3228 fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE14_M_create_nodeERKS2_
3229 fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE9_M_insertESt14_List_iteratorIS2_ERKS2_
3230 fun:_ZNSt4listIPN5quota11QuotaClientESaIS2_EE9push_backERKS2_
3231 fun:_ZN5quota12QuotaManager14RegisterClientEPNS_11QuotaClientE
3232 fun:_ZN5quota17QuotaManagerProxy14RegisterClientEPNS_11QuotaClientE
3233}
3234{
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01003235 bug_90487b
3236 Memcheck:Leak
3237 fun:_Znw*
3238 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
3239 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
3240 ...
3241 fun:_ZN5quota12QuotaManager*
3242}
3243{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003244 bug_90496a
3245 Memcheck:Leak
3246 ...
3247 fun:_ZN3IPC16MessageWithTupleI6Tuple2Ii23ResourceHostMsg_RequestEE8DispatchI22ResourceDispatcherHostS6_iRKS2_EEbPKNS_7MessageEPT_PT0_MSC_FvRSA_T1_T2_E
3248 fun:_ZN22ResourceDispatcherHost17OnMessageReceivedERKN3IPC7MessageEP21ResourceMessageFilterPb
3249 fun:_ZN21ResourceMessageFilter17OnMessageReceivedERKN3IPC7MessageEPb
3250 fun:_ZN20BrowserMessageFilter15DispatchMessageERKN3IPC7MessageE
3251 fun:_ZN20BrowserMessageFilter17OnMessageReceivedERKN3IPC7MessageE
3252 fun:_ZN3IPC12ChannelProxy7Context10TryFiltersERKNS_7MessageE
3253 fun:_ZN3IPC12ChannelProxy7Context17OnMessageReceivedERKNS_7MessageE
3254 fun:_ZN3IPC7Channel11ChannelImpl23ProcessIncomingMessagesEv
3255 fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
3256}
3257{
3258 bug_90496b
3259 Memcheck:Leak
3260 fun:_Znw*
3261 fun:_ZN22ResourceDispatcherHost23CompleteResponseStartedEPN3net10URLRequestE
3262 fun:_ZN22ResourceDispatcherHost17OnResponseStartedEPN3net10URLRequestE
3263 fun:_ZN3net10URLRequest21NotifyResponseStartedEv
3264 fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
3265}
3266{
3267 bug_90496c
3268 Memcheck:Leak
3269 fun:_Znw*
3270 fun:_ZN20AsyncResourceHandler15OnReadCompletedEiPi
3271 fun:_ZN23BufferedResourceHandler15OnReadCompletedEiPi
3272 fun:_ZN27SafeBrowsingResourceHandler15OnReadCompletedEiPi
3273 fun:_ZN22OfflineResourceHandler15OnReadCompletedEiPi
3274 fun:_ZN22ResourceDispatcherHost12CompleteReadEPN3net10URLRequestEPi
3275 fun:_ZN22ResourceDispatcherHost15OnReadCompletedEPN3net10URLRequestEi
3276 fun:_ZN3net10URLRequest19NotifyReadCompletedEi
3277 fun:_ZN3net13URLRequestJob18NotifyReadCompleteEi
3278 fun:_ZN19URLRequestChromeJob13DataAvailableEP16RefCountedMemory
3279 fun:_ZN27ChromeURLDataManagerBackend13DataAvailableEiP16RefCountedMemory
3280 fun:_ZN20ChromeURLDataManager10DataSource22SendResponseOnIOThreadEi13scoped_refptrI16RefCountedMemoryE
3281}
3282{
3283 bug_90496d
3284 Memcheck:Leak
3285 ...
3286 fun:_ZN24CrossSiteResourceHandler14ResumeResponseEv
3287 fun:_ZN22ResourceDispatcherHost12OnSwapOutACKERK22ViewMsg_SwapOut_Params
3288 fun:_ZN18RenderWidgetHelper21OnCrossSiteSwapOutACKERK22ViewMsg_SwapOut_Params
3289}
3290{
3291 bug_90496e
3292 Memcheck:Leak
3293 ...
3294 fun:_ZN14SharedIOBuffer4InitEv
3295 fun:_ZN20AsyncResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
3296 fun:_ZN24CrossSiteResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
3297 fun:_ZN23BufferedResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
3298 fun:_ZN27SafeBrowsingResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
3299 fun:_ZN22OfflineResourceHandler10OnWillReadEiPPN3net8IOBufferEPii
3300 fun:_ZN22ResourceDispatcherHost4ReadEPN3net10URLRequestEPi
3301 fun:_ZN22ResourceDispatcherHost12StartReadingEPN3net10URLRequestE
3302}
3303{
3304 bug_90671
3305 Memcheck:Leak
3306 fun:_Znw*
3307 ...
3308 fun:_ZNK3sql9Statement*ColumnString*
3309 fun:_ZN7history11URLDatabase10FillURLRowERN3sql9StatementEPNS_6URLRowE
3310 fun:_ZN7history11URLDatabase13URLEnumerator10GetNextURLEPNS_6URLRowE
3311 fun:_ZN7history14HistoryBackend11IterateURLsEPN14HistoryService13URLEnumeratorE
3312}
3313{
3314 bug_91199
3315 Memcheck:Leak
3316 fun:_Znw*
3317 fun:_ZN19URLRequestChromeJob15GetResponseInfoEPN3net16HttpResponseInfoE
3318 fun:_ZN3net13URLRequestJob21NotifyHeadersCompleteEv
3319 fun:_ZN19URLRequestChromeJob10StartAsyncEv
3320}
3321{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003322 bug_92571
3323 Memcheck:Leak
3324 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003325 fun:_ZN7history16TopSitesDatabase8CreateDBE*
3326 fun:_ZN7history16TopSitesDatabase4InitE*
3327 fun:_ZN7history15TopSitesBackend16InitDBOnDBThreadE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003328}
3329{
3330 bug_92741a
3331 Memcheck:Leak
3332 fun:_Znw*
3333 fun:_ZN4base4BindIPFvPNS_13WaitableEventEPSsRKSsES2_S3_EENS_8internal20InvokerStorageHolderINS8_15InvokerStorage2IT_T0_T1_EEEESB_RKSC_RKSD_
3334 fun:_ZN12_GLOBAL__N_120GetCookiesOnIOThreadERK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSs
3335 fun:_Z18DispatchToFunctionIPFvRK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEEPN4base13WaitableEventEPSsES0_S6_SB_SC_EvT_RK6Tuple4IT0_T1_T2_T3_E
3336}
3337{
3338 bug_92741b
3339 Memcheck:Leak
3340 fun:_Znw*
3341 fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvPSsPSt6vectorINS1_11CookieStore10CookieInfoESaIS6_EEENS_7WeakPtrIS2_EEEENS_8internal20InvokerStorageHolderINSE_15InvokerStorage1IT_T0_EEEESH_RKSI_
3342 fun:_ZN3net17URLRequestHttpJob24CheckCookiePolicyAndLoadERKNS_10CookieListE
3343}
3344{
3345 bug_92741c
3346 Memcheck:Leak
3347 fun:_Znw*
3348 fun:_ZN4base4BindIMN3net17URLRequestHttpJobEFvRKNS1_10CookieListEENS_7WeakPtrIS2_EEEENS_8internal20InvokerStorageHolderINSA_15InvokerStorage1IT_T0_EEEESD_RKSE_
3349 fun:_ZN3net17URLRequestHttpJob23AddCookieHeaderAndStartEv
3350 fun:_ZN3net17URLRequestHttpJob5StartEv
3351 fun:_ZN3net10URLRequest8StartJobEPNS_13URLRequestJobE
3352 fun:_ZN3net10URLRequest5StartEv
3353}
3354{
3355 bug_92876a
3356 Memcheck:Leak
3357 fun:_Znw*
3358 fun:_ZN3net18SSLClientSocketNSS10BufferSendEv
3359 fun:_ZN3net18SSLClientSocketNSS13DoTransportIOEv
3360 fun:_ZN3net18SSLClientSocketNSS11DoWriteLoopEi
3361 fun:_ZN3net18SSLClientSocketNSS5WriteEPNS_8IOBufferEiP14CallbackRunnerI6Tuple1IiEE
3362 fun:_ZN3net11SpdySession11WriteSocketEv
3363}
3364{
3365 bug_92876b
3366 Memcheck:Leak
3367 fun:_Znw*
3368 fun:_ZN3net18SSLClientSocketNSS10BufferSendEv
3369 fun:_ZN3net18SSLClientSocketNSS13DoTransportIOEv
3370 fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
3371 fun:_ZN3net18SSLClientSocketNSS7ConnectEP14CallbackRunnerI6Tuple1IiEE
3372 fun:_ZN3net13SSLConnectJob12DoSSLConnectEv
3373 fun:_ZN3net13SSLConnectJob6DoLoopEi
3374 fun:_ZN3net13SSLConnectJob12OnIOCompleteEi
3375}
3376{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003377 bug_93250a
3378 Memcheck:Leak
3379 fun:_Znw*
3380 ...
3381 fun:*SHA1Fingerprint*
3382 fun:_ZN3net16CertVerifyResultaSERKS0_
3383 fun:_ZN3net12CertVerifier12HandleResultEPNS_15X509CertificateERKSsiiRKNS_16CertVerifyResultE
3384 fun:_ZN3net18CertVerifierWorker7DoReplyEv
3385}
3386{
3387 bug_93250b
3388 Memcheck:Leak
3389 fun:_Znw*
3390 fun:_ZN4base4BindIMNS_6subtle18TaskClosureAdapterEFvvEPS2_EENS_8internal20InvokerStorageHolderINS6_15InvokerStorage1IT_T0_EEEES9_RKSA_
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01003391 fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationEP4Task
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003392 fun:_ZN3net18CertVerifierWorker6FinishEv
3393 fun:_ZN3net18CertVerifierWorker3RunEv
3394}
3395{
3396 bug_93730_a
3397 Memcheck:Leak
3398 fun:_Znw*
3399 fun:_ZN14ServiceProcess10InitializeEP16MessageLoopForUIRK11CommandLineP19ServiceProcessState
3400 fun:_Z18ServiceProcessMainRK18MainFunctionParams
3401 ...
3402 fun:ChromeMain
3403 fun:main
3404}
3405{
3406 bug_93730_b
3407 Memcheck:Leak
3408 fun:_Zna*
3409 fun:_ZN4base13LaunchProcessERKSt6vectorISsSaISsEERKNS_13LaunchOptionsEPi
3410 fun:_ZN4base13LaunchProcessERK11CommandLineRKNS_13LaunchOptionsEPi
3411 fun:_ZN21ServiceProcessControl8Launcher5DoRunEv
3412}
3413{
3414 bug_93730_c
3415 Memcheck:Leak
3416 fun:_Znw*
3417 fun:_Z17NewRunnableMethodIN21ServiceProcessControl8LauncherEMS1_FvvEEP14CancelableTaskPT_T0_
3418 fun:_ZN21ServiceProcessControl8Launcher5DoRunEv
3419}
3420{
3421 bug_93730_d
3422 Memcheck:Leak
3423 fun:_Znw*
3424 fun:_ZN3IPC11SyncChannelC1ERKNS_13ChannelHandleENS_7Channel4ModeEPNS4_8ListenerEPN4base16MessageLoopProxyEbPNS8_13WaitableEventE
3425 fun:_ZN16ServiceIPCServer13CreateChannelEv
3426 fun:_ZN16ServiceIPCServer4InitEv
3427 fun:_ZN14ServiceProcess10InitializeEP16MessageLoopForUIRK11CommandLineP19ServiceProcessState
3428 fun:_Z18ServiceProcessMainRK18MainFunctionParams
3429 ...
3430 fun:ChromeMain
3431 fun:main
3432}
3433{
3434 bug_94195
3435 Memcheck:Leak
3436 ...
3437 fun:_ZN12GpuBlacklist16LoadGpuBlacklistERKSsNS_8OsFilterE
3438}
3439{
3440 bug_94345
3441 Memcheck:Leak
3442 fun:_Znw*
3443 fun:_ZNK4base8internal18WeakReferenceOwner6GetRefEv
3444 fun:_ZN4base15SupportsWeakPtrI16ObserverListBaseIN11MessageLoop12TaskObserverEEE9AsWeakPtrEv
3445 fun:_ZN16ObserverListBaseIN11MessageLoop12TaskObserverEE8IteratorC1ERS2_
3446}
3447{
3448 bug_94764
3449 Memcheck:Leak
3450 fun:_Znw*
3451 fun:_ZN8remoting13ClientSession11UnpressKeysEv
3452 fun:_ZN8remoting34ClientSessionTest_UnpressKeys_Test8TestBodyEv
3453}
3454{
3455 bug_95448
3456 Memcheck:Leak
3457 fun:_Znw*
3458 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKSsPN4base5ValueEEEE8allocateEjPKv
3459 fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE11_M_get_nodeEv
3460 fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE14_M_create_nodeERKS5_
3461 fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE10_M_insert_EPKSt18_Rb_tree_node_baseSE_RKS5_
3462 fun:_ZNSt8_Rb_treeISsSt4pairIKSsPN4base5ValueEESt10_Select1stIS5_ESt4lessISsESaIS5_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS5_ERKS5_
3463 fun:_ZNSt3mapISsPN4base5ValueESt4lessISsESaISt4pairIKSsS2_EEE6insertESt17_Rb_tree_iteratorIS7_ERKS7_
3464 fun:_ZNSt3mapISsPN4base5ValueESt4lessISsESaISt4pairIKSsS2_EEEixERS6_
3465 fun:_ZN4base15DictionaryValue23SetWithoutPathExpansionERKSsPNS_5ValueE
3466 fun:_ZN4base15DictionaryValue3SetERKSsPNS_5ValueE
3467 fun:_ZN4base15DictionaryValue9SetStringERKSsRKSbItNS_20string16_char_traitsESaItEE
3468 fun:_ZN11PluginPrefs23CreatePluginFileSummaryERKN6webkit13WebPluginInfoE
3469 fun:_ZN11PluginPrefs19OnUpdatePreferencesESt6vectorIN6webkit13WebPluginInfoESaIS2_EES0_INS1_5npapi11PluginGroupESaIS6_EE
3470}
3471{
3472 bug_95902
3473 Memcheck:Leak
3474 ...
3475 fun:xdg_mime_init
3476 fun:xdg_mime_get_mime_type_from_file_name
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003477 fun:*GetFileMimeTypeE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003478 fun:_ZNK3net16PlatformMimeUtil32GetPlatformMimeTypeFromExtensionERKSsPSs
3479 fun:_ZNK3net8MimeUtil30GetMimeTypeFromExtensionHelperERKSsbPSs
3480 fun:_ZNK3net8MimeUtil24GetMimeTypeFromExtensionERKSsPSs
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003481 fun:_ZNK3net8MimeUtil19GetMimeTypeFromFileE*
3482 fun:_ZN3net19GetMimeTypeFromFileE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003483}
3484{
3485 bug_96069
3486 Memcheck:Leak
3487 fun:_Znw*
3488 fun:_ZN3net9HttpCache13CreateBackendEPPN10disk_cache7BackendEP14CallbackRunnerI6Tuple1IiEE
3489 fun:_ZN3net9HttpCache17CreateTransactionEP10scoped_ptrINS_15HttpTransactionEE
3490 ...
3491 fun:_ZN3net13CookieMonster17CookieMonsterTask14InvokeCallbackEN4base8CallbackIFvvEEE
3492}
3493{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003494 bug_96365
3495 Memcheck:Leak
3496 fun:_Znw*
3497 fun:_ZN27PasswordManagerDelegateImpl33AddSavePasswordInfoBarIfPermittedEP19PasswordFormManager
3498 fun:_ZN15PasswordManager23OnPasswordFormsRenderedERKSt6vectorIN6webkit5forms12PasswordFormESaIS3_EE
3499}
3500{
3501 bug_96369
3502 Memcheck:Leak
3503 fun:malloc
3504 fun:g_malloc
3505 fun:g_slice_alloc
3506 fun:g_slice_alloc0
3507 fun:g_type_create_instance
3508 fun:g_object_constructor
3509 fun:g_object_newv
3510 fun:g_object_new
3511 fun:_gdk_window_impl_new
3512 fun:gdk_window_ensure_native
3513 fun:gdk_x11_drawable_get_xid
3514 fun:_ZN20GtkNativeViewManager14GetIdForWidgetEP10_GtkWidget
3515 fun:_ZNK7content23RenderWidgetHostViewGtk15GetNativeViewIdEv
3516}
3517{
3518 bug_96402
3519 Memcheck:Leak
3520 fun:malloc
3521 fun:g_malloc
3522 fun:g_slice_alloc
3523 fun:g_slice_alloc0
3524 fun:g_type_create_instance
3525 fun:g_object_constructor
3526 fun:g_object_newv
3527 fun:g_object_new
3528 fun:_gdk_window_impl_new
3529 fun:gdk_window_ensure_native
3530 fun:gdk_x11_drawable_get_xid
3531 ...
3532 fun:g_closure_invoke
3533 fun:signal_emit_unlocked_R
3534 fun:g_signal_emit_valist
3535 fun:g_signal_emit
3536 fun:gtk_widget_realize
3537 fun:gtk_widget_set_parent
3538}
3539{
3540 bug_96407
3541 Memcheck:Leak
3542 fun:malloc
3543 fun:g_malloc
3544 fun:g_slice_alloc
3545 fun:g_slice_alloc0
3546 fun:g_type_create_instance
3547 fun:g_object_constructor
3548 fun:g_object_newv
3549 fun:g_object_new
3550 fun:_gdk_window_impl_new
3551 fun:gdk_window_ensure_native
3552 fun:gdk_x11_drawable_get_xid
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003553 fun:_ZN19TestWebViewDelegate20CreatePluginDelegateE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003554}
3555{
3556 bug_96568a
3557 Memcheck:Leak
3558 fun:*alloc
3559 ...
3560 fun:HB_OpenType*
3561 ...
3562 fun:HB_ShapeItem
3563 fun:_ZN7WebCore21ComplexTextController11shapeGlyphsEv
3564 fun:_ZN7WebCore21ComplexTextController13nextScriptRunEv
3565}
3566{
3567 bug_96568b
3568 Memcheck:Leak
3569 ...
3570 fun:HB_NewFace
3571 fun:_ZN7WebCoreL21getCachedHarfbuzzFaceEPNS_16FontPlatformDataE
3572 fun:_ZN7WebCore12HarfbuzzFaceC1EPNS_16FontPlatformDataE
3573 fun:_ZN7WebCore12HarfbuzzFace6createEPNS_16FontPlatformDataE
3574 fun:_ZNK7WebCore16FontPlatformData12harfbuzzFaceEv
3575 fun:_ZN7WebCore21ComplexTextController21setupFontForScriptRunEv
3576}
3577{
3578 bug_98568
3579 Memcheck:Leak
3580 ...
3581 fun:_ZN44WebDragDestGtkTest_NoTabContentsWrapper_Test8TestBodyEv
3582}
3583{
3584 bug_98867
3585 Memcheck:Jump
3586 obj:*
3587 obj:*
3588 obj:*
3589}
3590{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003591 bug_99304
3592 Memcheck:Leak
3593 fun:_Znw*
3594 ...
3595 fun:_ZN2v88internal10PagedSpace11AllocateRawEi
3596 fun:_ZN2v88internal12Deserializer8AllocateEiPNS0_5SpaceEi
3597 fun:_ZN2v88internal12Deserializer10ReadObjectEiPNS0_5SpaceEPPNS0_6ObjectE
3598 fun:_ZN2v88internal12Deserializer9ReadChunkEPPNS0_6ObjectES4_iPh
3599 fun:_ZN2v88internal12Deserializer10ReadObjectEiPNS0_5SpaceEPPNS0_6ObjectE
3600 fun:_ZN2v88internal12Deserializer9ReadChunkEPPNS0_6ObjectES4_iPh
3601 fun:_ZN2v88internal12Deserializer13VisitPointersEPPNS0_6ObjectES4_
3602}
3603{
3604 bug_99307
3605 Memcheck:Uninitialized
3606 fun:modp_b64_encode
3607 fun:_ZN4base12Base64Encode*
3608 fun:_ZN11web_ui_util15GetImageDataUrlERK8SkBitmap
3609 fun:_ZN12_GLOBAL__N_121NetworkInfoDictionary8set_iconERK8SkBitmap
3610}
3611{
3612 bug_99308
3613 Memcheck:Leak
3614 fun:malloc
3615 fun:_ZL9toCStringRK9_NPString
3616 fun:_ZL15testPostURLFileP12PluginObjectPK10_NPVariantjPS1_
3617 fun:_ZL12pluginInvokeP8NPObjectPvPK10_NPVariantjPS2_
3618 fun:_ZN7WebCoreL18npObjectInvokeImplERKN2v89ArgumentsENS_18InvokeFunctionTypeE
3619}
3620{
3621 bug_99321
3622 Memcheck:Leak
3623 fun:_Znw*
3624 fun:_ZN6WebKit12CCThreadImpl6createEPNS_9WebThreadE
3625 fun:_ZN6WebKit13WebCompositor9setThreadEPNS_9WebThreadE
3626 fun:_ZN11WebViewHostC1EP9TestShell
3627 fun:_ZN9TestShell15createNewWindowERKN6WebKit6WebURLEP16DRTDevToolsAgent
3628}
3629{
3630 bug_99435
3631 Memcheck:Leak
3632 fun:_Znw*
3633 fun:_ZN4base19MessagePumpLibevent3RunEPNS_11MessagePump8DelegateE
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01003634 fun:_ZN4base11MessageLoop11RunInternalEv
3635 fun:_ZN4base11MessageLoop10RunHandlerEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003636}
3637{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003638 bug_100043
3639 Memcheck:Leak
3640 fun:_Znw*
3641 fun:_ZN9__gnu_cxx13new_allocatorIN6webkit13WebPluginInfoEE8allocateEjPKv
3642 ...
3643 fun:_ZNSt6vectorIN6webkit13WebPluginInfoESaIS1*
3644}
3645{
3646 bug_101125a
3647 Memcheck:Uninitialized
3648 ...
3649 fun:_ZN6SkScan12AntiFillPathERK6SkPathRK8SkRegionP9SkBlitterb
3650 fun:_ZN6SkScan12AntiFillPathERK6SkPathRK12SkRasterClipP9SkBlitter
3651 fun:_ZNK6SkDraw8drawPathERK6SkPathRK7SkPaintPK8SkMatrixb
3652 fun:_ZN8SkDevice8drawPathERK6SkDrawRK6SkPathRK7SkPaintPK8SkMatrixb
3653 fun:_ZNK6SkDraw14drawTextOnPathEPKcmRK6SkPathPK8SkMatrixRK7SkPaint
3654 fun:_ZN8SkDevice14drawTextOnPathERK6SkDrawPKvmRK6SkPathPK8SkMatrixRK7SkPaint
3655 fun:_ZN8SkCanvas14drawTextOnPathEPKvmRK6SkPathPK8SkMatrixRK7SkPaint
3656 fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
3657 fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
3658}
3659{
3660 bug_101125b
3661 Memcheck:Uninitialized
3662 ...
3663 fun:_ZN6SkScan12AntiFillRectERK6SkRectPK8SkRegionP9SkBlitter
3664 fun:_ZN6SkScan12AntiFillRectERK6SkRectRK12SkRasterClipP9SkBlitter
3665 fun:_ZNK6SkDraw8drawRectERK6SkRectRK7SkPaint
3666 fun:_ZN8SkDevice8drawRectERK6SkDrawRK6SkRectRK7SkPaint
3667 fun:_ZN8SkCanvas8drawRectERK6SkRectRK7SkPaint
3668 fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectERKNS_5ColorENS_10ColorSpaceE
3669 fun:_ZN7WebCore15GraphicsContext20drawHighlightForTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEiRKNS_5ColorENS_10ColorSpaceEii
3670}
3671{
3672 bug_101125c
3673 Memcheck:Uninitialized
3674 ...
3675 fun:_ZL11morphpointsP7SkPointPKS_iR13SkPathMeasureRK8SkMatrix
3676 fun:_ZL9morphpathP6SkPathRKS_R13SkPathMeasureRK8SkMatrix
3677 fun:_ZNK6SkDraw14drawTextOnPathEPKcmRK6SkPathPK8SkMatrixRK7SkPaint
3678 fun:_ZN8SkDevice14drawTextOnPathERK6SkDrawPKvmRK6SkPathPK8SkMatrixRK7SkPaint
3679 fun:_ZN8SkCanvas14drawTextOnPathEPKvmRK6SkPathPK8SkMatrixRK7SkPaint
3680 fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
3681 fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
3682 fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
3683 fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
3684 fun:_ZN7WebCore15GraphicsContext8drawTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEii
3685}
3686{
3687 bug_100133
3688 Memcheck:Leak
3689 fun:_Znw*
3690 fun:_Z22RecoveryRegisterHelperP22ComponentUpdateServiceP11PrefService
3691}
3692{
3693 bug_100330
3694 Memcheck:Leak
3695 fun:_Znw*
3696 fun:_ZN25TestingAutomationProvider42NavigateToURLBlockUntilNavigationsCompleteEiRK4GURLiPN3IPC7MessageE
3697}
3698{
3699 bug_100647
3700 Memcheck:Leak
3701 fun:_Znw*
3702 fun:_ZN18WebResourceService19UpdateResourceCacheERKSs
3703 fun:_ZN18WebResourceService18WebResourceFetcher18OnURLFetchCompleteEPK10URLFetcherRK4GURLRKN3net16URLRequestStatusEiRKSt6vectorISsSaISsEERKSs
3704 fun:_ZN10URLFetcher8Delegate18OnURLFetchCompleteEPKS_
3705 fun:_ZN10URLFetcher4Core29InformDelegateFetchIsCompleteEv
3706 fun:_ZN10URLFetcher4Core21OnCompletedURLRequestEN4base9TimeDeltaE
3707}
3708{
3709 bug_100777
3710 Memcheck:Leak
3711 fun:_Znw*
3712 fun:_ZN12_GLOBAL__N_119MakeContextDelegateI16CrxUpdateServiceNS1_13UpdateContextEEEPN7content18URLFetcherDelegateEPT_PT0_
3713 fun:_ZN16CrxUpdateService19ProcessPendingItemsEv
3714}
3715{
3716 bug_100916
3717 Memcheck:Leak
3718 fun:_Znw*
3719 fun:_ZN6WebKit19WebWorkerClientImpl24createWorkerContextProxyEPN7WebCore6WorkerE
3720 ...
3721 fun:_ZN7WebCore6WorkerC1EPNS_22ScriptExecutionContextE
3722 fun:_ZN7WebCore6Worker6createEPNS_22ScriptExecutionContextERKN3WTF6StringERi
3723 fun:_ZN7WebCore8V8Worker19constructorCallbackERKN2v89ArgumentsE
3724 fun:_ZN2v88internalL19HandleApiCallHelperILb1EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
3725}
3726{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003727 bug_100982
3728 Memcheck:Leak
3729 fun:_Znw*
3730 fun:_ZN7WebCore12RenderRegion22setRenderBoxRegionInfoEPKNS_9RenderBoxEiib
3731 fun:_ZNK7WebCore9RenderBox19renderBoxRegionInfoEPNS_12RenderRegionEiNS0_24RenderBoxRegionInfoFlagsE
3732 ...
3733 fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
3734}
3735{
3736 bug_101145a
3737 Memcheck:Leak
3738 fun:_Znw*
3739 fun:_ZN2v88internal2OS15CreateSemaphoreEi
3740 fun:_ZN2v88internal8ProfilerC1EPNS0_7IsolateE
3741 fun:_ZN2v88internal6Logger5SetUpEv
3742 fun:_ZN2v88internal7Isolate4InitEPNS0_12DeserializerE
3743 ...
3744 fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKN3WTF6StringES4_RKNS1_12TextPositionEPNS_27WorkerContextExecutionStateE
3745}
3746{
3747 bug_101145b
3748 Memcheck:Leak
3749 fun:_Znw*
3750 fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003751 fun:_ZN7WebCore16V8StringResourceILNS_20V8StringResourceMode*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003752}
3753{
3754 bug_101145c
3755 Memcheck:Leak
3756 fun:_Znw*
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01003757 fun:_ZN7WebCore*makeExternalString*
3758 ...
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003759 fun:_ZN7WebCore11StringCache20v8ExternalStringSlow*
3760 fun:_ZN7WebCore11StringCache16v8ExternalStringEPN*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003761}
3762{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003763 bug_101146d
3764 Memcheck:Leak
3765 fun:_Znw*
3766 fun:_ZN11webkit_glue16WebURLLoaderImplC1EPNS_25WebKitPlatformSupportImplE
3767 fun:_ZN11webkit_glue25WebKitPlatformSupportImpl15createURLLoaderEv
3768}
3769{
3770 bug_101151
3771 Memcheck:Leak
3772 fun:_Znw*
3773 fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF*StringEEET_*
3774 fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF*StringEEET_*
3775 fun:_ZN7WebCore15V8ParameterBasecvN3WTF*StringEEv
3776 ...
3777 fun:_ZN2v88internalL*HandleApiCall*
3778 obj:*
3779}
3780{
3781 bug_101159
3782 Memcheck:Leak
3783 fun:_Znw*
3784 fun:_ZN7WebCore15NPObjectWrapper10NPAllocateEP4_NPPP7NPClass
3785 fun:_NPN_CreateObject
3786 fun:_ZN7WebCore15NPObjectWrapper6createEP8NPObject
3787 fun:_ZN7WebCore16ScriptController20windowScriptNPObjectEv
3788 fun:_ZNK6WebKit12WebFrameImpl12windowObjectEv
3789 fun:_ZN6webkit5npapi13WebPluginImpl23GetWindowScriptNPObjectEv
3790 fun:NPN_GetValue
3791}
3792{
3793 bug_101345
3794 Memcheck:Leak
3795 fun:_Znw*
3796 fun:_ZN22WebPluginDelegateProxy20CreateResourceClientEmRK4GURLi
3797 fun:_ZN6webkit5npapi13WebPluginImpl24HandleURLRequestInternalEPKcS3_S3_S3_jibNS1_8ReferrerEbb
3798}
3799{
3800 bug_101347
3801 Memcheck:Leak
3802 fun:_Znw*
3803 fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE17NewCallbackHelperINS5_11Dispatcher1IMS3_FviRKNS1_12HostResourceEES8_EEEENS_18CompletionCallbackERKT_
3804 fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE11NewCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
3805 fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE19NewOptionalCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
3806 fun:_ZN5ppapi5proxy38EnterHostFromHostResourceForceCallbackINS_5thunk18PPB_Graphics2D_APIEEC1IN2pp25CompletionCallbackFactoryINS0_20PPB_Graphics2D_ProxyENS0_26ProxyNonThreadSafeRefCountEEEMS8_FviRKNS_12HostResourceEESB_EESD_RT_T0_RKT1_
3807 fun:_ZN5ppapi5proxy20PPB_Graphics2D_Proxy10OnMsgFlushERKNS_12HostResourceE
3808}
3809{
3810 bug_101470
3811 Memcheck:Param
3812 write(buf)
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003813 obj:/lib/x86_64-linux-gnu/libc-2.15.so
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003814 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003815 fun:new_do_write
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003816 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003817 fun:_ZNK13safe_browsing9PrefixSet9WriteFileE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003818}
3819{
3820 bug_101750
3821 Memcheck:Leak
3822 fun:malloc
3823 fun:_ZN3WTF10fastMallocEj
3824 fun:_ZN3WTF7HashSetIPN7WebCore16SVGStyledElementENS_7PtrHashIS3_EENS_10HashTraitsIS3_EEEnwEj
3825 fun:_ZN7WebCore21SVGDocumentExtensions18addPendingResourceERKN3WTF12AtomicStringEPNS_16SVGStyledElementE
3826}
3827{
3828 bug_101751
3829 Memcheck:Leak
3830 fun:_Znw*
3831 fun:_ZN7WebCore14SVGFontElement6createERKNS_13QualifiedNameEPNS_8DocumentE
3832 fun:_ZN7WebCoreL15fontConstructorERKNS_13QualifiedNameEPNS_8DocumentEb
3833 fun:_ZN7WebCore17SVGElementFactory16createSVGElementERKNS_13QualifiedNameEPNS_8DocumentEb
3834 fun:_ZN7WebCore8Document13createElementERKNS_13QualifiedNameEb
3835}
3836{
3837 bug_101781
3838 Memcheck:Uninitialized
3839 fun:encode_one_block
3840 fun:encode_mcu_huff
3841 fun:compress_data
3842 fun:process_data_simple_main
3843 fun:chromium_jpeg_write_scanlines
3844 fun:_ZN3gfx9JPEGCodec6EncodeEPKhNS0_11ColorFormatEiiiiPSt6vectorIhSaIhEE
3845 fun:_ZN3gfx24JPEGEncodedDataFromImageERKNS_5ImageE?PSt6vectorIhSaIhEE
3846 fun:_ZN7history8TopSites12EncodeBitmapE*N3gfx5ImageEP13scoped_refptrIN4base15RefCountedBytesEE
3847 fun:_ZN7history8TopSites16SetPageThumbnailERK4GURL*N3gfx5ImageERK14ThumbnailScore
3848 fun:_ZN7history17ExpireHistoryTest14AddExampleDataEP?PN4base4TimeE
3849 fun:_ZN7history*ExpireHistoryTest_*
3850}
3851{
3852 bug_101781_d
3853 Memcheck:Uninitialized
3854 fun:_ZN7testing8internal11CmpHelperGEIddEENS_15AssertionResultEPKcS4_RKT_RKT0_
3855 fun:_ZN3gfx31JPEGCodec_EncodeDecodeRGBA_Test8TestBodyEv
3856}
3857{
3858 bug_102257
3859 Memcheck:Uninitialized
3860 ...
3861 fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
3862 fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
3863}
3864{
3865 bug_102327a
3866 Memcheck:Leak
3867 fun:_Znw*
3868 fun:_ZN15tracked_objects10ThreadData10InitializeEv
3869 fun:_ZN15tracked_objects10ThreadData30InitializeAndSetTrackingStatusEb
3870 fun:_ZN15tracked_objects10ThreadData29ShutdownSingleThreadedCleanupEb
3871}
3872{
3873 bug_102327b
3874 Memcheck:Leak
3875 fun:_Znw*
3876 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKPKN15tracked_objects6BirthsENS3_9DeathDataEEEE8allocateE*
3877 ...
3878 fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEE6insertESt17_Rb_tree_iteratorIS9_ERKS9_
3879 fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEEixERS8_
3880 fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6Births*
3881 fun:_ZN15tracked_objects10ThreadData3?TallyRun*IfTrackingE*
3882}
3883{
3884 bug_102327c
3885 Memcheck:Leak
3886 fun:_Znw*
3887 fun:_ZN15tracked_objects10ThreadData11TallyABirthERKNS_8LocationE
3888 fun:_ZN15tracked_objects10ThreadData19TallyABirthIfActiveERKNS_8LocationE
3889}
3890{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003891 bug_102327d
3892 Memcheck:Uninitialized
3893 fun:_ZN15tracked_objects9DeathData11RecordDeathEiii
3894 fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6BirthsEii
3895 fun:_ZN15tracked_objects10ThreadData31TallyRunOnNamedThreadIfTrackingERKN4base12TrackingInfoERKNS_11TrackedTimeES7_
3896}
3897{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003898 Intentional leak of stl map during thread cleanup in profiler
3899 Memcheck:Leak
3900 fun:_Znw*
3901 fun:_ZNK15tracked_objects10ThreadData26OnThreadTerminationCleanupEv
3902}
3903{
3904 bug_102614
3905 Memcheck:Leak
3906 fun:_Znw*
3907 fun:_ZN12*FinishPepperFlashUpdateRegistrationEP22ComponentUpdateServiceRK7Version
3908}
3909{
3910 bug_102831_a
3911 Memcheck:Leak
3912 ...
3913 fun:_ZN17PluginLoaderPosix19LoadPluginsInternalEv
3914}
3915{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003916 bug_104447
3917 Memcheck:Leak
3918 ...
3919 fun:HB_OpenTypeShape
3920 fun:arabicSyriacOpenTypeShape
3921 fun:HB_ArabicShape
3922 fun:HB_ShapeItem
3923 fun:_ZN7WebCore21ComplexTextController11shapeGlyphsEv
3924 fun:_ZN7WebCore21ComplexTextController13nextScriptRunEv
3925 fun:_ZN7WebCore21ComplexTextController14widthOfFullRunEv
3926 fun:_ZNK7WebCore4Font24floatWidthForComplexTextERKNS_7TextRunEPN3WTF7HashSetIPKNS_14SimpleFontDataENS4_7PtrHashIS8_EENS4_10HashTraitsIS8_EEEEPNS_13GlyphOverflowE
3927 fun:_ZNK7WebCore4Font5widthERKNS_7TextRunERiRN3WTF6StringE
3928 fun:_ZN7WebCore14SVGTextMetricsC1EPNS_19RenderSVGInlineTextERKNS_7TextRunE
3929 fun:_ZN7WebCore14SVGTextMetrics21measureCharacterRangeEPNS_19RenderSVGInlineTextEjj
3930 fun:_ZNK7WebCore30SVGTextLayoutAttributesBuilder25propagateLayoutAttributesEPNS_12RenderObjectERN3WTF6VectorINS_23SVGTextLayoutAttributesELm0EEERjRt
3931}
3932{
3933 # ProcessSingleton::LinuxWatcher is marked DeleteOnIOThread. Sometimes it
3934 # leaks on shutdown instead of getting deleted. The destructor doesn't do
3935 # anything important, so this shouldn't be a big deal.
3936 bug_104578
3937 Memcheck:Leak
3938 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00003939 fun:_ZN16ProcessSingletonC1E*
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01003940 fun:_ZN22ChromeProcessSingletonC1E*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003941}
3942{
3943 bug_104806_a
3944 Memcheck:Leak
3945 fun:_Znw*
3946 ...
3947 fun:_ZN15tracked_objects10ThreadData19TallyABirthIfActiveERKNS_8LocationE
Ben Murdochca12bfa2013-07-23 11:17:05 +01003948 fun:_ZN4base12TrackingInfoC?ERKN15tracked_objects8LocationENS_9TimeTicksE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00003949}
3950{
3951 bug_104806_b
3952 Memcheck:Leak
3953 fun:_Znw*
3954 ...
3955 fun:_ZNSt3mapIPKN15tracked_objects6BirthsENS0_9DeathDataESt4lessIS3_ESaISt4pairIKS3_S4_EEEixERS8_
3956 fun:_ZN15tracked_objects10ThreadData11TallyADeathERKNS_6BirthsEii
3957 fun:_ZN15tracked_objects10ThreadData32TallyRunOnWorkerThreadIfTrackingEPKNS_6BirthsERKNS_11TrackedTimeES6_S6_
3958}
3959{
3960 bug_105715
3961 Memcheck:Uninitialized
3962 ...
3963 fun:vfprintf
3964 fun:__vsnprintf_chk
3965 fun:_ZN4base9vsnprintfEPcjPKcS0_
3966 fun:_ZN4base12_GLOBAL__N_110vsnprintfTEPcjPKcS1_
3967 fun:_ZN4base12_GLOBAL__N_1L14StringAppendVTISsEEvPT_PKNS2_10value_typeEPc
3968 fun:_ZN4base13StringAppendVEPSsPKcPc
3969 fun:_ZN4base13StringAppendFEPSsPKcz
3970 fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
3971 fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
3972 fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
3973 fun:_ZN4base10JSONWriter15BuildJSONStringEPKNS_5ValueEibb
3974 fun:_ZN4base10JSONWriter16WriteWithOptionsEPKNS_5ValueEbiPSs
3975 fun:_ZN25JSONStringValueSerializer17SerializeInternalERKN4base5ValueEb
3976 fun:_ZN25JSONStringValueSerializer9SerializeERKN4base5ValueE
3977 fun:_ZN18jstemplate_builder12AppendJsonJSEPKN4base15DictionaryValueEPSs
3978 fun:_ZN19OptionsUIHTMLSource16StartDataRequestERKSsbi
3979 fun:_ZN4base8internal15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEE3RunEPS3_S5_RKbRKi
3980 fun:_ZN4base8internal12InvokeHelperILb0EvNS0_15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEEEFvRKPS4_S6_RKbRKiEE8MakeItSoES9_SC_S6_SE_SG_
3981 fun:_ZN4base8internal7InvokerILi4ENS0_9BindStateINS0_15RunnableAdapterIMN20ChromeURLDataManager10DataSourceEFvRKSsbiEEEFvPS5_S7_biEFvSB_SsbiEEESC_E3RunEPNS0_13BindStateBaseE
3982 fun:_ZNK4base8CallbackIFvvEE3RunEv
3983}
3984{
3985 bug_105744b
3986 Memcheck:Leak
3987 fun:_Znw*
3988 ...
3989 fun:_ZNSt6vector*9push_back*
3990 fun:_ZN4skia19ConvolutionFilter1D9AddFilterEiPKsi
3991 fun:_ZN4skia12_GLOBAL__N_112ResizeFilter14ComputeFiltersEiiiffPNS_19ConvolutionFilter1DE
3992 fun:_ZN4skia12_GLOBAL__N_112ResizeFilterC1ENS_15ImageOperations12ResizeMethodEiiiiRK7SkIRect
3993 fun:_ZN4skia15ImageOperations11ResizeBasicERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
3994 fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEiiRK7SkIRect
3995 fun:_ZN4skia15ImageOperations6ResizeERK8SkBitmapNS0_12ResizeMethodEii
3996 fun:_ZN24ChromeRenderViewObserver21CaptureFrameThumbnailEPN6WebKit7WebViewEiiP8SkBitmapP14ThumbnailScore
3997 fun:_ZN24ChromeRenderViewObserver16CaptureThumbnailEv
3998 fun:_ZN24ChromeRenderViewObserver15CapturePageInfoEib
3999}
4000{
4001 bug_105907
4002 Memcheck:Uninitialized
4003 ...
4004 fun:_ZN4skia14BGRAConvolve2DEPKhibRKNS_19ConvolutionFilter1DES4_iPhb
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00004005 fun:_ZN4skia15ImageOperations11ResizeBasicE*
4006 fun:_ZN4skia15ImageOperations6ResizeE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004007}
4008{
4009 bug_106183a
4010 Memcheck:Uninitialized
4011 fun:_ZN7WebCore13RenderMarquee18updateMarqueeStyleEv
4012 fun:_ZN7WebCore11RenderLayer12styleChangedENS_15StyleDifferenceEPKNS_11RenderStyleE
4013 fun:_ZN7WebCore20RenderBoxModelObject14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4014 fun:_ZN7WebCore9RenderBox14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4015 fun:_ZN7WebCore11RenderBlock14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
4016 fun:_ZN7WebCore12RenderObject8setStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
4017}
4018{
4019 bug_106183b
4020 Memcheck:Uninitialized
4021 fun:_ZN7WebCore21ComplexTextController*
4022 ...
4023 fun:_ZNK7WebCore4Font27selectionRectForComplexTextERKNS_7TextRunERKNS_10FloatPointEiii
4024 fun:_ZNK7WebCore4Font20selectionRectForTextERKNS_7TextRunERKNS_10FloatPointEiii
4025 fun:_ZNK7WebCore13InlineTextBox17positionForOffsetEi
4026 fun:_ZN7WebCore10RenderText14localCaretRectEPNS_9InlineBoxEiPi
4027 fun:_ZNK7WebCore15VisiblePosition14localCaretRectERPNS_12RenderObjectE
4028 fun:_ZN7WebCore9CaretBase15updateCaretRectEPNS_8DocumentERKNS_15VisiblePositionE
4029 fun:_ZN7WebCore14FrameSelection14localCaretRectEv
4030 fun:_ZN7WebCore14FrameSelection18recomputeCaretRectEv
4031 fun:_ZN7WebCore14FrameSelection16updateAppearanceEv
4032}
4033{
4034 bug_106183c
4035 Memcheck:Uninitialized
4036 fun:_ZN7WebCore21ComplexTextController*
4037 ...
4038 fun:_ZNK7WebCore4Font15drawComplexTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
4039 fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
4040 fun:_ZN7WebCore15GraphicsContext8drawTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointEii
4041 fun:_ZN7WebCoreL20paintTextWithShadowsEPNS_15GraphicsContextERKNS_4FontERKNS_7TextRunERKN3WTF12AtomicStringEiiiiRKNS_10FloatPointERKNS_9FloatRectEPKNS_10ShadowDataEbb
4042 ...
4043 fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS_8IntPointE
4044 fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS_8IntPointE
4045 fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_8IntPointE
4046 fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_8IntPointE
4047}
4048{
4049 bug_106402
4050 Memcheck:Leak
4051 fun:_Znw*
4052 fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE17NewCallbackHelperINS5_11Dispatcher1IMS3_FviRKNS1_12HostResourceEES8_EEEENS_18CompletionCallbackERKT_
4053 fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE11NewCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
4054 fun:_ZN2pp25CompletionCallbackFactoryIN5ppapi5proxy20PPB_Graphics2D_ProxyENS2_26ProxyNonThreadSafeRefCountEE19NewOptionalCallbackIMS3_FviRKNS1_12HostResourceEES7_EENS_18CompletionCallbackET_RKT0_
4055 fun:_ZN5ppapi5proxy38EnterHostFromHostResourceForceCallbackINS_5thunk18PPB_Graphics2D_APIEEC1IN2pp25CompletionCallbackFactoryINS0_20PPB_Graphics2D_ProxyENS0_26ProxyNonThreadSafeRefCountEEEMS8_FviRKNS_12HostResourceEESB_EESD_RT_T0_RKT1_
4056 fun:_ZN5ppapi5proxy20PPB_Graphics2D_Proxy14OnHostMsgFlushERKNS_12HostResourceE
4057}
4058{
4059 bug_106552
4060 Memcheck:Uninitialized
4061 ...
4062 fun:_ZN25JSONStringValueSerializer17SerializeInternalERKN4base5ValueEb
4063 fun:_ZN25JSONStringValueSerializer9SerializeERKN4base5ValueE
4064 fun:_ZN13JsonPrefStore13SerializeDataEPSs
4065 fun:_ZN19ImportantFileWriter16DoScheduledWriteEv
4066 fun:_ZN13JsonPrefStore18CommitPendingWriteEv
4067 fun:_ZN13JsonPrefStoreD0Ev
4068 fun:_ZNK4base10RefCountedI9PrefStoreE7ReleaseEv
4069 fun:_ZN13scoped_refptrI19PersistentPrefStoreEaSEPS0_
4070 fun:_ZN11PrefServiceD0Ev
4071 fun:_ZN10scoped_ptrI11PrefServiceED1Ev
4072 fun:_ZN14TestingProfileD2Ev
4073 fun:_ZN23ExtensionTestingProfileD0Ev
4074}
4075{
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +01004076 bug_106912
4077 Memcheck:Leak
4078 fun:_Znw*
4079 fun:_ZN15tracked_objects10ThreadData23InitializeThreadContextERKSs
4080 fun:_ZN4base14PlatformThread7SetNameEPKc
4081}
4082{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004083 bug_107696
4084 Memcheck:Leak
4085 fun:_Znw*
4086 fun:_ZN7WebCore11iBeamCursorEv
4087 fun:_ZN7WebCore12EventHandler12selectCursorERKNS_28MouseEventWithHitTestResultsEPNS_9ScrollbarE
4088 fun:_ZN7WebCore12EventHandler20handleMouseMoveEventERKNS_18PlatformMouseEventEPNS_13HitTestResultEb
4089 fun:_ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventEb
4090 fun:_ZN6WebKit11WebViewImpl9mouseMoveERKNS_13WebMouseEventE
4091 fun:_ZN6WebKit11WebViewImpl16handleInputEventERKNS_13WebInputEventE
4092 fun:_ZN12RenderWidget18OnHandleInputEventERKN3IPC7MessageE
4093}
4094{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004095 bug_107699
4096 Memcheck:Leak
4097 fun:malloc
4098 fun:_ZN3WTF10fastMallocEm
4099 ...
4100 fun:_ZN7WebCore13AnimationBase17ensurePropertyMapEv
4101 fun:_ZN7WebCore13AnimationBase16getNumPropertiesEv
4102 fun:_ZN7WebCore18CompositeAnimation17updateTransitionsEPNS_12RenderObjectEPNS_11RenderStyleES4_
4103 fun:_ZN7WebCore18CompositeAnimation7animateEPNS_12RenderObjectEPNS_11RenderStyleES4_
4104 fun:_ZN7WebCore19AnimationController16updateAnimationsEPNS_12RenderObjectEPNS_11RenderStyleE
4105 fun:_ZN7WebCore12RenderObject18setAnimatableStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
4106 fun:_ZN7WebCore4Node14setRenderStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
4107 ...
4108 fun:_ZN7WebCore7Element11recalcStyleENS_4Node11StyleChangeE
4109 fun:_ZN7WebCore8Document11recalcStyleENS_4Node11StyleChangeE
4110 fun:_ZN7WebCore8Document19updateStyleIfNeededEv
4111 fun:_ZN7WebCore8Document12updateLayoutEv
4112 fun:_ZN7WebCore8Document36updateLayoutIgnorePendingStylesheetsEv
4113}
4114{
4115 bug_108146a
4116 Memcheck:Leak
4117 fun:_Znw*
4118 ...
4119 fun:_ZN5ppapi5proxy26PPP_Instance_Private_Proxy22OnMsgGetInstanceObjectEiNS0_24SerializedVarReturnValueE
4120}
4121{
4122 bug_108146b
4123 Memcheck:Param
4124 write(buf)
4125 obj:/lib/tls/i686/cmov/libpthread-2.11.1.so
4126 fun:_ZN3IPC7Channel11ChannelImpl4SendEPNS_7MessageE
4127 fun:_ZN3IPC7Channel4SendEPNS_7MessageE
4128 fun:_ZN3IPC12ChannelProxy7Context13OnSendMessageEPNS_7MessageE
4129 fun:_ZN3IPC18SendCallbackHelper4SendEv
4130}
4131{
4132 bug_108147
4133 Memcheck:Uninitialized
4134 ...
4135 fun:_ZNK6SkDraw11drawPosTextEPKcmPKffiRK7SkPaint
4136 fun:_ZN8SkDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
4137 fun:_ZN8SkCanvas11drawPosTextEPKvmPK7SkPointRK7SkPaint
4138 fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
4139 fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
4140 fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
4141 fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
4142}
4143{
4144 bug_108620
4145 Memcheck:Uninitialized
4146 fun:_ZN7WebCore13PlatformEventC2ENS0_4TypeEbbbbd
4147 fun:_ZN7WebCore18PlatformMouseEventC1ERKNS_8IntPointES3_NS_11MouseButtonENS_13PlatformEvent4TypeEibbbbd
4148 fun:_ZN7WebCore12EventHandler28fakeMouseMoveEventTimerFiredEPNS_5TimerIS0_EE
4149 fun:_ZN7WebCore5TimerINS_12EventHandlerEE5firedEv
4150 fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
4151 fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
4152 fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
4153 fun:_ZN4base9BaseTimerIN11webkit_glue25WebKitPlatformSupportImplELb0EE9TimerTask3RunEv
4154}
4155{
4156 bug_108621
4157 Memcheck:Leak
4158 fun:malloc
4159 fun:_ZN3WTF10fastMallocEm
4160 fun:_ZN3WTF10RefCountedIN7WebCore5EventEEnwEm
4161 fun:_ZN7WebCore12MessageEvent6createEN3WTF10PassOwnPtrINS1_6VectorINS1_6RefPtrINS_11MessagePortEEELm1EEEEENS1_10PassRefPtrINS_21SerializedScriptValueEEERKNS1_6StringESE_NS9_INS_9DOMWindowEEE
4162 fun:_ZN7WebCore16PostMessageTimer5eventEPNS_22ScriptExecutionContextE
4163 fun:_ZN7WebCore9DOMWindow21postMessageTimerFiredEN3WTF10PassOwnPtrINS_16PostMessageTimerEEE
4164 fun:_ZN7WebCore16PostMessageTimer5firedEv
4165 fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
4166 fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
4167 fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
4168 fun:_ZN4base9BaseTimerIN11webkit_glue25WebKitPlatformSupportImplELb0EE9TimerTask3RunEv
4169}
4170{
4171 bug_108622
4172 Memcheck:Leak
4173 fun:_Zna*
4174 fun:_ZN2v88internal8NewArrayIhEEPT*
4175 fun:_ZN2v88internal11RegExpStack14EnsureCapacityEm
4176 fun:_ZN2v88internal16RegExpStackScopeC1EPNS0_7IsolateE
4177 fun:_ZN2v88internal26NativeRegExpMacroAssembler7ExecuteEPNS0_4CodeEPNS0_6String*
4178 fun:_ZN2v88internal26NativeRegExpMacroAssembler5MatchENS0_6HandleINS0_4CodeEEENS2_INS0_6StringEEEPiiiPNS0_7IsolateE
4179 fun:_ZN2v88internal10RegExpImpl*IrregexpExec*ENS0_6HandleINS0_8JSRegExpEEENS2_INS0_6StringEEEiPii
4180}
4181{
4182 bug_108624
4183 Memcheck:Leak
4184 fun:_Znw*
4185 fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
4186 fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF6StringEEET_v
4187 fun:_ZN7WebCore15V8ParameterBasecvN3WTF6StringEEv
4188 ...
4189 fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
4190 fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
4191 fun:_ZN2v88Function4CallENS_6HandleINS_6ObjectEEEiPNS1_INS_5ValueEEE
4192 fun:_ZN7WebCore28V8WorkerContextEventListener20callListenerFunctionEPNS_22ScriptExecutionContextEN2v86HandleINS3_5ValueEEEPNS_5EventE
4193 fun:_ZN7WebCore23V8AbstractEventListener18invokeEventHandlerEPNS_22ScriptExecutionContextEPNS_5EventEN2v86HandleINS5_5ValueEEE
4194 fun:_ZN7WebCore28V8WorkerContextEventListener11handleEventEPNS_22ScriptExecutionContextEPNS_5EventE
4195 fun:_ZN7WebCore11EventTarget18fireEventListenersEPNS_5EventEPNS_15EventTargetDataERN3WTF6VectorINS_23RegisteredEventListenerELm1EEE
4196}
4197{
4198 bug_108624a
4199 Memcheck:Leak
4200 fun:_Znw*
4201 fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
4202 fun:_ZN7WebCore15V8ParameterBase8toStringIN3WTF6StringEEET_v
4203 fun:_ZN7WebCore15V8ParameterBasecvN3WTF6StringEEv
4204 fun:_ZN7WebCore25WebKitBlobBuilderInternal*
4205}
4206{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004207 bug_108628
4208 Memcheck:Leak
4209 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00004210 fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
4211 fun:_ZN7WebCore16V8StringResourceILNS_20V8StringResourceModeE0EE8toStringIN3WTF12AtomicStringEEET_v
4212 fun:_ZN7WebCore16V8StringResourceILNS_20V8StringResourceModeE0EEcvN3WTF12AtomicStringEEv
4213 ...
4214 fun:_ZN7WebCore24XMLHttpRequestV8Internal*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004215 fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004216}
4217{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004218 bug_109495e
4219 Memcheck:Leak
4220 fun:_Znw*
4221 fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN3gpu5gles219VertexAttribManager16VertexAttribInfoEEE8allocateEmPKv
4222 fun:_ZNSt10_List_baseIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE11_M_get_nodeEv
4223 fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE14_M_create_nodeERKS4_
4224 fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE6insertESt14_List_iteratorIS4_ERKS4_
4225 fun:_ZN3gpu5gles219VertexAttribManager16VertexAttribInfo7SetListEPSt4listIPS2_SaIS4_EE
4226 fun:_ZN3gpu5gles219VertexAttribManager10InitializeEj
4227 fun:_ZN3gpu5gles216GLES2DecoderImpl10Initialize*
4228 fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
4229 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4230 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
4231}
4232{
4233 bug_109495f
4234 Memcheck:Leak
4235 fun:_Znw*
4236 ...
4237 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4238 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
4239 fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesE
4240 fun:_ZN7WebCore17GraphicsContext3D6createENS0_10AttributesEPNS_10HostWindowENS0_11RenderStyleE
4241 fun:_ZN7WebCore21WebGLRenderingContext6createEPNS_17HTMLCanvasElementEPNS_22WebGLContextAttributesE
4242 fun:_ZN7WebCore17HTMLCanvasElement10getContextERKN3WTF6StringEPNS_23CanvasContextAttributesE
4243 fun:_ZN7WebCore19V8HTMLCanvasElement18getContextCallbackERKN2v89ArgumentsE
4244}
4245{
4246 bug_109495g
4247 Memcheck:Leak
4248 ...
4249 fun:_ZN9TCompiler22InitBuiltInSymbolTableERK18ShBuiltInResources
4250 fun:_ZN9TCompiler4InitERK18ShBuiltInResources
4251 fun:ShConstructCompiler
4252}
4253{
4254 bug_109496
4255 Memcheck:Uninitialized
4256 ...
4257 fun:_ZN7WebCore11ImageBuffer27platformTransformColorSpaceERKN3WTF6VectorIiLm0EEE
4258 fun:_ZN7WebCore11ImageBuffer19transformColorSpaceENS_10ColorSpaceES1_
4259 fun:_ZN7WebCore23RenderSVGResourceFilter17postApplyResourceEPNS_12RenderObjectERPNS_15GraphicsContextEtPKNS_4PathEPKNS_14RenderSVGShapeE
4260 ...
4261 fun:_ZN7WebCore14RenderSVGShape5paintERNS_9PaintInfoERKNS_*
4262 ...
4263 fun:_ZN7WebCore13RenderSVGRoot*paint*PaintInfoERKNS_*
4264}
4265{
4266 bug_109872
4267 Memcheck:Leak
4268 fun:_Znw*
4269 fun:_ZN18BrowserProcessImpl29ResourceDispatcherHostCreatedEv
4270 fun:_ZN6chrome26ChromeContentBrowserClient29ResourceDispatcherHostCreatedEv
4271 fun:_ZN22ResourceDispatcherHost*
4272 ...
4273 fun:_ZN7content15BrowserMainLoop21BrowserThreadsStartedEv
4274 fun:_ZN7content15BrowserMainLoop*
4275 ...
4276 fun:_Z11BrowserMainRKN7content18MainFunctionParamsE
4277}
4278{
4279 bug_110734
4280 Memcheck:Leak
4281 fun:_Znw*
4282 fun:_ZN15StartupTimeBomb3ArmERKN4base9TimeDeltaE
4283 fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
4284}
4285{
4286 bug_111186
4287 Memcheck:Leak
4288 fun:_Znw*
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01004289 fun:_ZN11leveldb_*ChromiumEnv11StartThread*
4290 fun:_ZN11leveldb_*ChromiumEnv8Schedule*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004291 fun:_ZN7leveldb6DBImpl23MaybeScheduleCompactionEv
4292 fun:_ZN7leveldb6DBImpl16MakeRoomForWriteEb
4293 fun:_ZN7leveldb6DBImpl5WriteERKNS_12WriteOptionsEPNS_10WriteBatchE
4294 fun:_ZN17LeveldbValueStore9WriteToDbEPN7leveldb10WriteBatchE
4295 fun:_ZN17LeveldbValueStore3SetEiRKSsRKN4base5ValueE
4296 fun:_ZN10extensions28SettingsStorageQuotaEnforcer3SetEiRKSsRKN4base5ValueE
4297 fun:_ZN10extensions23SyncableSettingsStorage3SetEiRKSsRKN4base5ValueE
4298}
4299{
4300 bug_111341
4301 Memcheck:Leak
4302 fun:malloc
4303 fun:_ZN3WTF10fastMallocEm
4304 fun:_ZN7WebCore17ClipboardChromiumnwEm
4305 fun:_ZN7WebCore17ClipboardChromium6createENS_9Clipboard13ClipboardTypeEN3WTF10PassRefPtrINS_18ChromiumDataObjectEEENS_21ClipboardAccessPolicyEPNS_5FrameE
4306}
4307{
4308 bug_111669
4309 Memcheck:Leak
4310 fun:_Znw*
4311 fun:_ZN8appcache17AppCacheDiskCache10ActiveCall17OnAsyncCompletionEi
4312}
4313{
4314 bug_112278
4315 Memcheck:Uninitialized
4316 fun:fetch_texel_2d_f_rgba8888
4317 fun:sample_2d_linear
4318 fun:sample_linear_2d
4319 fun:fetch_texel_lod
4320 fun:fetch_texel
4321 fun:_mesa_execute_program
4322 fun:run_program
4323 fun:_swrast_exec_fragment_program
4324 fun:shade_texture_span
4325 fun:_swrast_write_rgba_span
4326 fun:general_triangle
4327 fun:_swrast_validate_triangle
4328 fun:_swrast_Triangle
4329 fun:triangle_rgba
4330 fun:_tnl_render_triangles_elts
4331 fun:run_render
4332 fun:_tnl_run_pipeline
4333 fun:_tnl_draw_prims
4334 fun:_tnl_vbo_draw_prims
4335 fun:vbo_validated_drawrangeelements
4336 fun:vbo_exec_DrawElements
4337 fun:neutral_DrawElements
4338}
4339{
4340 bug_112278b
4341 Memcheck:Uninitialized
4342 fun:fetch_texel_2d_f_rgba8888
4343 fun:sample_2d_nearest
4344 fun:sample_nearest_2d
4345 fun:fetch_texel_lod
4346 fun:fetch_texel
4347 fun:_mesa_execute_program
4348 fun:run_program
4349 fun:_swrast_exec_fragment_program
4350 fun:shade_texture_span
4351 fun:_swrast_write_rgba_span
4352 fun:general_triangle
4353 ...
4354 fun:_swrast_Triangle
4355 fun:triangle_rgba
4356 ...
4357 fun:run_render
4358 fun:_tnl_run_pipeline
4359 fun:_tnl_draw_prims
4360 fun:_tnl_vbo_draw_prims
4361}
4362{
4363 bug_112315
4364 Memcheck:Leak
4365 fun:_Znw*
4366 fun:_ZN2v88internal21NativeObjectsExplorer18FindOrAddGroupInfoEPKc
4367 ...
4368 fun:_ZN2v88internal21NativeObjectsExplorer27IterateAndExtractReferencesEPNS0_23SnapshotFillerInterfaceE
4369 fun:_ZN2v88internal21HeapSnapshotGenerator25CountEntriesAndReferencesEv
4370 fun:_ZN2v88internal21HeapSnapshotGenerator16GenerateSnapshotEv
4371 fun:_ZN2v88internal12HeapProfiler16TakeSnapshotImplEPKciPNS_15ActivityControlE
4372 ...
4373 fun:_ZN2v88internal12HeapProfiler12TakeSnapshotEPNS0_6StringEiPNS_15ActivityControlE
4374 fun:_ZN2v812HeapProfiler12TakeSnapshotENS_6HandleINS_6StringEEENS_12HeapSnapshot4TypeEPNS_15ActivityControlE
4375 fun:_ZL13GetNumObjectsPKc
4376}
4377{
4378 bug_112450_b
4379 Memcheck:Unaddressable
4380 fun:_ZN7WebCore15PlatformSupport25loadPlatformAudioResourceEPKcd
4381 fun:_ZN7WebCore8AudioBus20loadPlatformResourceEPKcf
4382 fun:_ZN7WebCore13HRTFElevation35calculateKernelsForAzimuthElevationEiifRKN3WTF6StringERNS1_6RefPtrINS_10HRTFKernelEEES8_
4383 fun:_ZN7WebCore13HRTFElevation16createForSubjectERKN3WTF6StringEif
4384 fun:_ZN7WebCore12HRTFDatabaseC1Ef
4385 fun:_ZN7WebCore12HRTFDatabase6createEf
4386 fun:_ZN7WebCore18HRTFDatabaseLoader4loadEv
4387 fun:_ZN7WebCoreL19databaseLoaderEntryEPv
4388 fun:_ZN3WTFL16threadEntryPointEPv
4389}
4390{
4391 bug_112594_a
4392 Memcheck:Leak
4393 ...
4394 fun:NPP_New
4395 fun:_ZN6webkit5npapi14PluginInstance7NPP_NewEtsPPcS3_
4396 fun:_ZN6webkit5npapi14PluginInstance5StartERK4GURLPPcS6_ib
4397 fun:_ZN6webkit5npapi21WebPluginDelegateImpl10InitializeERK4GURLRKSt6vectorISsSaISsEES9_PNS0_9WebPluginEb
4398 fun:_ZN6webkit5npapi13WebPluginImpl10initializeEPN6WebKit18WebPluginContainerE
4399 fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
4400 fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
4401 fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
4402 fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
4403}
4404{
4405 bug_112594_b
4406 Memcheck:Unaddressable
4407 fun:_ZN6webkit5npapi13WebPluginImpl24HandleURLRequestInternalEPKcS3_S3_S3_jibNS1_8ReferrerEbb
4408 fun:_ZN6webkit5npapi13WebPluginImpl16HandleURLRequestEPKcS3_S3_S3_jibb
4409 fun:_ZN6webkit5npapi14PluginInstance10RequestURLEPKcS3_S3_S3_jbPv
4410 fun:GetURLNotify
4411 fun:NPN_GetURLNotify
4412 fun:_ZN10PluginTest16NPN_GetURLNotifyEPKcS1_Pv
4413 fun:_ZN34GetURLNotifyWithURLThatFailsToLoad7NPP_NewEPctsPS0_S1_P12_NPSavedData
4414 fun:NPP_New
4415 fun:_ZN6webkit5npapi14PluginInstance7NPP_NewEtsPPcS3_
4416 fun:_ZN6webkit5npapi14PluginInstance5StartERK4GURLPPcS6_ib
4417 fun:_ZN6webkit5npapi21WebPluginDelegateImpl10InitializeERK4GURLRKSt6vectorISsSaISsEES9_PNS0_9WebPluginEb
4418 fun:_ZN6webkit5npapi13WebPluginImpl10initializeEPN6WebKit18WebPluginContainerE
4419 fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
4420 fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
4421 fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
4422 fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
4423}
4424{
4425 bug_112594_c
4426 Memcheck:Unaddressable
4427 fun:_ZN27DocumentOpenInDestroyStream17NPP_DestroyStreamEP9_NPStreams
4428 fun:NPP_DestroyStream
4429 fun:_ZN6webkit5npapi14PluginInstance17NPP_DestroyStreamEP9_NPStreams
4430 fun:_ZN6webkit5npapi12PluginStream5CloseEs
4431 fun:_ZN6webkit5npapi15PluginStreamUrl5CloseEs
4432 fun:_ZN6webkit5npapi15PluginStreamUrl16DidFinishLoadingEv
4433 fun:_ZN6webkit5npapi13WebPluginImpl16didFinishLoadingEPN6WebKit12WebURLLoaderEd
4434}
4435{
4436 bug_112594_d
4437 Memcheck:Leak
4438 fun:malloc
4439 fun:NPN_MemAlloc
Ben Murdochbbcdd452013-07-25 10:06:34 +01004440 fun:*Enumerate*ObjectPPPvPj
4441 fun:_ZN7WebCore26npObjectPropertyEnumerator*Info*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004442 ...
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01004443 fun:_ZN2v88internal28Runtime_GetPropertyNamesFast*IsolateE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004444}
4445{
4446 bug_112573
4447 Memcheck:Leak
4448 fun:_Znw*
4449 fun:_ZN2v88internal2OS15CreateSemaphoreEi
4450 fun:_ZN2v88internal8ProfilerC1EPNS0_7IsolateE
4451 fun:_ZN2v88internal6Logger5SetUpEv
4452 fun:_ZN2v88internal7Isolate4InitEPNS0_12DeserializerE
4453 fun:_ZN2v88internal2V810InitializeEPNS0_12DeserializerE
4454 fun:_ZN2v88internal8Snapshot11DeserializeEPKhi
4455 fun:_ZN2v88internal8Snapshot10InitializeEPKc
4456 fun:_ZN2v8L16InitializeHelperEv
4457 fun:_ZN2v8L27EnsureInitializedForIsolateEPNS_8internal7IsolateEPKc
4458 fun:_ZN2v82V818AddMessageListenerEPFvNS_6HandleINS_7MessageEEENS1_INS_5ValueEEEES5_
4459 fun:_ZN7WebCore27WorkerContextExecutionProxy19initContextIfNeededEv
4460 fun:_ZN7WebCore27WorkerContextExecutionProxy8evaluateERKN3WTF6StringES4_RKNS1_12TextPositionEPNS_27WorkerContextExecutionStateE
4461 fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeEPNS_11ScriptValueE
4462 fun:_ZN7WebCore22WorkerScriptController8evaluateERKNS_16ScriptSourceCodeE
4463 fun:_ZN7WebCore12WorkerThread12workerThreadEv
4464 fun:_ZN7WebCore12WorkerThread17workerThreadStartEPv
4465 fun:_ZN3WTFL16threadEntryPointEPv
4466}
4467{
4468 bug_112835
4469 Memcheck:Unaddressable
4470 ...
4471 fun:_ZN6WebKit31WorkerFileSystemCallbacksBridge4stopEv
4472 fun:_ZN6WebKit31WorkerFileSystemContextObserver10notifyStopEv
4473 fun:_ZN7WebCore13WorkerContext21notifyObserversOfStopEv
4474 fun:_ZN7WebCore29WorkerThreadShutdownStartTask11performTaskEPNS_22ScriptExecutionContextE
4475 fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskERKS0_PNS_22ScriptExecutionContextE
4476 fun:_ZN7WebCore13WorkerRunLoop15runCleanupTasksEPNS_13WorkerContextE
4477}
4478{
4479 bug_113076
4480 Memcheck:Uninitialized
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01004481 fun:_ZN5mediaL19ConvertYUVToRGB32_CEhhhPh
4482 fun:_ZN5media35LinearScaleYUVToRGB32RowWithRange_CEPKhS1_S1_Phiii
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004483 fun:_ZN5media23ScaleYUVToRGB32WithRectEPKhS1_S1_Phiiiiiiiiiii
4484 fun:_ZN8remoting29ConvertAndScaleYUVToRGB32RectEPKhS1_S1_iiRK7SkTSizeIiERK7SkIRectPhiS5_S8_S8_
4485}
4486{
4487 bug_115294
4488 Memcheck:Leak
4489 fun:_Znw*
4490 ...
4491 fun:_ZN17AudioRendererHost14OnCreateStreamEiRK15AudioParameters
4492}
4493{
4494 bug_115419_1
4495 Memcheck:Uninitialized
4496 fun:fetch_texel_2d_f_rgba8888
4497 fun:texture_get_row
4498 fun:fast_read_rgba_pixels
4499 fun:read_rgba_pixels
4500 fun:_swrast_ReadPixels
4501 fun:_mesa_ReadPixels
4502 fun:glReadPixels
4503 fun:_ZN3gpu5gles216GLES2DecoderImpl16HandleReadPixelsEjRKNS0_10ReadPixelsE
4504 fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
4505 fun:_ZN3gpu13CommandParser14ProcessCommandEv
4506 fun:_ZN3gpu12GpuScheduler10PutChangedEv
4507 fun:_ZN6webkit3gpu18GLInProcessContext12PumpCommandsEv
4508}
4509{
4510 bug_115419_2
4511 Memcheck:Uninitialized
4512 fun:get_src_arg_mask
4513 fun:_mesa_remove_extra_move_use
4514 fun:_mesa_optimize_program
4515 fun:_Z16get_mesa_programP14__GLcontextRecP17gl_shader_programP9gl_shader
4516 fun:_mesa_ir_link_shader
4517 fun:_mesa_glsl_link_shader
4518 fun:link_program
4519 fun:_mesa_LinkProgramARB
4520 fun:glLinkProgram
4521 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00004522 fun:_ZN3gpu5gles216GLES2DecoderImpl13DoLinkProgram*
4523 fun:_ZN3gpu5gles216GLES2DecoderImpl17HandleLinkProgram*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004524 fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
4525 fun:_ZN3gpu13CommandParser14ProcessCommandEv
4526 fun:_ZN3gpu12GpuScheduler10PutChangedEv
4527 fun:_ZN6webkit3gpu18GLInProcessContext12PumpCommandsEv
4528}
4529{
4530 bug_116475
4531 Memcheck:Uninitialized
4532 ...
4533 fun:_ZNK4base9Histogram11BucketIndexEi
4534 fun:_ZN4base9Histogram3AddEi
4535 fun:_ZN11webkit_glue25WebKitPlatformSupportImpl21histogramCustomCountsEPKciiii
4536 fun:_ZN7WebCore15PlatformSupport21histogramCustomCountsEPKciiii
4537 fun:_ZN7WebCore19CCLayerTreeHostImpl20optimizeRenderPasses*
4538 fun:_ZN7WebCore19CCLayerTreeHostImpl10drawLayersEv
4539 fun:_ZN7WebCore19CCSingleThreadProxy11doCompositeEv
4540}
4541{
4542 bug_118890_a
4543 Memcheck:Leak
4544 ...
4545 fun:_ZN8notifier18SingleLoginAttemptC1EPNS_13LoginSettingsEPNS0_8DelegateE
4546 fun:_ZN8notifier5Login15StartConnectionEv
4547 fun:_ZN13sync_notifier20InvalidationNotifier17UpdateCredentialsERKSsS2_
4548}
4549{
4550 bug_118890_b
4551 Memcheck:Leak
4552 fun:_Znw*
4553 fun:_ZN13sync_notifier12_GLOBAL__N_124InvalidationNotifierTest5SetUpEv
4554}
4555{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004556 bug_121729
4557 Memcheck:Leak
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004558 ...
4559 fun:_ZN7WebCoreL12parseUASheetERKN3WTF6StringE
4560 fun:_ZN7WebCoreL12parseUASheetEPKcj
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004561 ...
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01004562 fun:_ZN7WebCore7Element16styleForRendererE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004563}
4564{
4565 bug_122177
4566 Memcheck:Leak
4567 ...
4568 fun:_ZN7history16InMemoryURLIndex23PostSaveToCacheFileTaskEv
4569 fun:_ZN7history16InMemoryURLIndex8ShutDownEv
4570 fun:_ZN14HistoryService13UnloadBackendEv
4571 fun:_ZN14HistoryService7CleanupEv
4572}
4573{
4574 bug_122189
4575 Memcheck:Leak
4576 fun:_Znw*
4577 fun:_ZN6WebKit16ChromeClientImpl18createColorChooserEPN7WebCore18ColorChooserClientERKNS1_5ColorE
4578 fun:_ZN7WebCore6Chrome18createColorChooserEPNS_18ColorChooserClientERKNS_5ColorE
4579 fun:_ZN7WebCore14ColorInputType22handleDOMActivateEventEPNS_5EventE
4580 fun:_ZN7WebCore16HTMLInputElement19defaultEventHandlerEPNS_5EventE
4581 fun:_ZN7WebCore15EventDispatcher13dispatchEventEN3WTF10PassRefPtrINS_5EventEEE
4582 fun:_ZNK7WebCore21EventDispatchMediator13dispatchEventEPNS_15EventDispatcherE
4583}
4584{
4585 bug_122192
4586 Memcheck:Leak
4587 fun:_Znw*
4588 ...
4589 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4590 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
4591 fun:_ZN14webkit_support23CreateGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesEPNS0_7WebViewEb
4592 fun:_ZN11WebViewHost23createGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesE
4593 fun:_ZN6WebKit11WebViewImpl33createCompositorGraphicsContext3DEv
4594 fun:_ZN6WebKit11WebViewImpl15createContext3DEv
4595}
4596{
4597 bug_122195
4598 Memcheck:Leak
4599 ...
4600 fun:_ZNSt3*insert*
4601 fun:_ZN3gpu5gles219GLES2Implementation15GetStringHelperEj
4602 fun:_ZN3gpu5gles219GLES2Implementation9GetStringEj
4603 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl9getStringEj
4604 fun:_ZN7WebCore24GraphicsContext3DPrivate9getStringEj
4605 fun:_ZN7WebCore24GraphicsContext3DPrivate20initializeExtensionsEv
4606 fun:_ZN7WebCore24GraphicsContext3DPrivate17supportsExtensionERKN3WTF6StringE
4607 fun:_ZN7WebCore20Extensions3DChromium8supportsERKN3WTF6StringE
4608}
4609{
4610 bug_122201
4611 Memcheck:Unaddressable
4612 fun:_ZN3WTF17ChromiumThreading16callOnMainThreadEPFvPvES1_
4613 fun:_ZN3WTF16callOnMainThreadEPFvPvES0_
4614}
4615{
4616 bug_122245a
4617 Memcheck:Uninitialized
4618 ...
4619 fun:_ZN15SkScalerContext15internalGetPathERK7SkGlyphP6SkPathS4_P8SkMatrix
4620 fun:_ZN15SkScalerContext10getMetricsEP7SkGlyph
4621 fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
4622}
4623{
4624 bug_122245b
4625 Memcheck:Uninitialized
4626 ...
4627 fun:_ZNK6SkRect8roundOutEP7SkIRect
4628 fun:_ZN15SkScalerContext10getMetricsEP7SkGlyph
4629 fun:_ZN12SkGlyphCache13lookupMetricsEjNS_11MetricsTypeE
4630 fun:_ZN12SkGlyphCache17getGlyphIDMetricsEt
4631 fun:_ZL22sk_getMetrics_glyph_00P12SkGlyphCachePPKcii
4632 fun:_ZNK6SkDraw11drawPosTextEPKcmPKffiRK7SkPaint
4633 fun:_ZN8SkDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
4634 fun:_ZN11SkGpuDevice11drawPosTextERK6SkDrawPKvmPKffiRK7SkPaint
4635 fun:_ZN8SkCanvas11drawPosTextEPKvmPK7SkPointRK7SkPaint
4636 fun:_ZNK7WebCore4Font10drawGlyphsEPNS_15GraphicsContextEPKNS_14SimpleFontDataERKNS_11GlyphBufferEiiRKNS_10FloatPointE
4637 fun:_ZNK7WebCore4Font15drawGlyphBufferEPNS_15GraphicsContextERKNS_7TextRunERKNS_11GlyphBufferERKNS_10FloatPointE
4638 fun:_ZNK7WebCore4Font14drawSimpleTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
4639 fun:_ZNK7WebCore4Font8drawTextEPNS_15GraphicsContextERKNS_7TextRunERKNS_10FloatPointEii
4640 fun:_ZN7WebCore15GraphicsContext12drawBidiTextERKNS_4FontERKNS_7TextRunERKNS_10FloatPointE
4641 fun:_ZN7WebCore24CanvasRenderingContext2D16drawTextInternalERKN3WTF6StringEffbfb
4642 fun:_ZN7WebCore24CanvasRenderingContext2D10strokeTextERKN3WTF6StringEfff
4643 fun:_ZN7WebCore32CanvasRenderingContext2DInternalL18strokeTextCallbackERKN2v89ArgumentsE
4644 fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
4645 fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
4646}
4647{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004648 bug_122429
4649 Memcheck:Leak
4650 fun:_Znw*
4651 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4652 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
4653 fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesE
4654 fun:_ZN13TestWebPlugin10initializeEPN6WebKit18WebPluginContainerE
4655 fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
4656}
4657{
4658 bug_122431
4659 Memcheck:Leak
4660 fun:_Znw*
4661 fun:_ZN11WebViewHost12createPluginEPN6WebKit8WebFrameERKNS0_15WebPluginParamsE
4662 fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6StringELm0EEESF_RKSC_b
4663 fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
4664 fun:_ZN7WebCore14SubframeLoader13requestPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7_Lm0EEESD_b
4665 fun:_ZN7WebCore14SubframeLoader13requestObjectEPNS_22HTMLPlugInImageElementERKN3WTF6StringERKNS3_12AtomicStringES6_RKNS3_6VectorIS4_Lm0EEESD_
4666 fun:_ZN7WebCore16HTMLEmbedElement12updateWidgetENS_20PluginCreationOptionE
4667}
4668{
4669 bug_122435a
4670 Memcheck:Leak
4671 fun:_Zna*
4672 fun:_ZN3gpu5gles219VertexAttribManager10InitializeEj
4673 fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContext*SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
4674 fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
4675 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4676 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
4677}
4678{
4679 bug_122435b
4680 Memcheck:Leak
4681 fun:_Znw*
4682 fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN3gpu5gles219VertexAttribManager16VertexAttribInfoEEE8allocateEmPKv
4683 fun:_ZNSt10_List_baseIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE11_M_get_nodeEv
4684 fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE14_M_create_nodeERKS4_
4685 fun:_ZNSt4listIPN3gpu5gles219VertexAttribManager16VertexAttribInfoESaIS4_EE6insertESt14_List_iteratorIS4_ERKS4_
4686 fun:_ZN3gpu5gles219VertexAttribManager16VertexAttribInfo7SetListEPSt4listIPS2_SaIS4_EE
4687 fun:_ZN3gpu5gles219VertexAttribManager6EnableEjb
4688}
4689{
4690 bug_122436
4691 Memcheck:Leak
4692 fun:_Znw*
4693 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEEEE8allocateEmPKv
4694 fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE11_M_get_nodeEv
4695 fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE14_M_create_nodeERKS7_
4696 fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE10_M_insert_EPKSt18_Rb_tree_node_baseSG_RKS7_
4697 fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE16_M_insert_uniqueERKS7_
4698 fun:_ZNSt8_Rb_treeIjSt4pairIKj10linked_ptrIN3gpu13CommonDecoder6BucketEEESt10_Select1stIS7_ESt4lessIjESaIS7_EE17_M_insert_unique_ESt23_Rb_tree_const_iteratorIS7_ERKS7_
4699 fun:_ZNSt3mapIj10linked_ptrIN3gpu13CommonDecoder6BucketEESt4lessIjESaISt4pairIKjS4_EEE6insertESt17_Rb_tree_iteratorIS9_ERKS9_
4700 fun:_ZNSt3mapIj10linked_ptrIN3gpu13CommonDecoder6BucketEESt4lessIjESaISt4pairIKjS4_EEEixERS8_
4701 fun:_ZN3gpu13CommonDecoder12CreateBucketEj
4702}
4703{
4704 bug_122437
4705 Memcheck:Leak
4706 fun:_Znw*
4707 ...
4708 fun:_ZN3gpu19MappedMemoryManager5Alloc*
4709 fun:_ZN3gpu5gles219GLES2Implementation24MapTexSubImage2DCHROMIUM*
4710 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl24mapTexSubImage2DCHROMIUM*
4711 fun:_ZN7WebCore24GraphicsContext3DPrivate24mapTexSubImage2DCHROMIUM*
4712 fun:_ZN7WebCore20Extensions3DChromium24mapTexSubImage2DCHROMIUM*
4713 fun:_ZN7WebCore20LayerTextureSubImage24uploadWithMapTexSubImageEPKhRKNS_7IntRectES5_S5_jPNS_17GraphicsContext3DE
4714 fun:_ZN7WebCore20LayerTextureSubImage6uploadEPKhRKNS_7IntRectES5_S5_jPNS_17GraphicsContext3DE
4715 fun:_ZN7WebCore31BitmapCanvasLayerTextureUpdater17updateTextureRectEPNS_17GraphicsContext3DEPNS_16TextureAllocatorEPNS_14ManagedTextureERKNS_7IntRectES9_
4716 fun:_ZN7WebCore31BitmapCanvasLayerTextureUpdater7Texture10updateRectEPNS_17GraphicsContext3DEPNS_16TextureAllocatorERKNS_7IntRectES8_
4717}
4718{
4719 bug_122454
4720 Memcheck:Leak
4721 fun:_Znw*
4722 fun:_ZN11GrGLTexture4initEP7GrGpuGLRKNS_4DescEPKN16GrGLRenderTarget4DescE
4723 fun:_ZN11GrGLTextureC1EP7GrGpuGLRKNS_4DescE
4724 fun:_ZN7GrGpuGL15onCreateTextureERK13GrTextureDescPKvm
4725 fun:_ZN5GrGpu13createTextureERK13GrTextureDescPKvm
4726 fun:_ZN9GrContext20createAndLockTextureEmPK14GrSamplerStateRK13GrTextureDescPvm
4727 fun:_Z27sk_gr_create_bitmap_textureP9GrContextmPK14GrSamplerStateRK8SkBitmap
4728 fun:_ZN11SkGpuDevice17lockCachedTextureERK8SkBitmapPK14GrSamplerState
4729}
4730{
4731 bug_122455
4732 Memcheck:Leak
4733 fun:_Znw*
4734 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISsEE8allocateEmPKv
4735 fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE11_M_get_nodeEv
4736 fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE14_M_create_nodeERKSs
4737 fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKSs
4738 fun:_ZNSt8_Rb_treeISsSsSt9_IdentityISsESt4lessISsESaISsEE16_M_insert_uniqueERKSs
4739 fun:_ZNSt3setISsSt4lessISsESaISsEE6insertERKSs
4740 fun:_ZN3gpu5gles219GLES2Implementation32GetRequestableExtensionsCHROMIUMEv
4741 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl32getRequestableExtensionsCHROMIUMEv
4742 fun:_ZN7WebCore24GraphicsContext3DPrivate20initializeExtensionsEv
4743 fun:_ZN7WebCore24GraphicsContext3DPrivate17supportsExtensionERKN3WTF6StringE
4744}
4745{
4746 bug_122457
4747 Memcheck:Leak
4748 fun:malloc
4749 fun:_ZN3WTF10fastMallocEm
4750 fun:_ZN3WTF10RefCountedIN7WebCore7ArchiveEEnwEm
4751 fun:_ZN7WebCore12MHTMLArchive6createEv
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00004752 ...
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004753 fun:_ZN7WebCore11MHTMLParser22parseArchiveWithHeaderEPNS_10MIMEHeaderE
4754 fun:_ZN7WebCore11MHTMLParser12parseArchiveEv
4755 fun:_ZN7WebCore12MHTMLArchive6createERKNS_4KURLEPNS_12SharedBufferE
4756 fun:_ZN7WebCoreL20archiveFactoryCreateINS_12MHTMLArchiveEEEN3WTF10PassRefPtrINS_7ArchiveEEERKNS_4KURLEPNS_12SharedBufferE
4757 fun:_ZN7WebCore14ArchiveFactory6createERKNS_4KURLEPNS_12SharedBufferERKN3WTF6StringE
4758 ...
4759 fun:_ZN7WebCore14DocumentLoader15finishedLoadingEv
4760 fun:_ZN7WebCore18MainResourceLoader16didFinishLoadingEd
4761}
4762{
4763 bug_122670
4764 Memcheck:Leak
4765 fun:_Znw*
4766 fun:_ZN3WTF11ListHashSetIPN7WebCore12RenderInlineELm256ENS_7PtrHashIS3_EEEC1Ev
4767 fun:_ZNK7WebCore17RenderLineBoxList5paintEPNS_20RenderBoxModelObjectERNS_9PaintInfoERKNS*
4768 fun:_ZN7WebCore11RenderBlock13paintContentsERNS_9PaintInfoERKNS*
4769 fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS*
4770 fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS*
4771}
4772{
4773 bug_122716
4774 Memcheck:Leak
4775 fun:_Znw*
4776 fun:_ZN9__gnu_cxx13new_allocatorISsE8allocate*
4777 fun:_ZNSt12_Vector_baseISsSaISsEE11_M_allocate*
4778 fun:_ZNSt6vectorISsSaISsEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPSsS1_EERKSs
4779 fun:_ZNSt6vectorISsSaISsEE9push_backERKSs
4780 fun:_ZN4baseL12SplitStringTISsEEvRKT_NS1_10value_typeEbPSt6vectorIS1_SaIS1_EE
4781}
4782{
4783 bug_122717_use_after_free
4784 Memcheck:Unaddressable
4785 fun:__pthread_mutex_unlock_usercnt
4786 fun:_ZN4base8internal8LockImpl6UnlockEv
4787 fun:_ZN4base4Lock7ReleaseEv
4788 fun:_ZN4base8AutoLockD1Ev
4789 fun:_ZN5gdata15GDataFileSystem21RunTaskOnIOThreadPoolERKN4base8CallbackIFvvEEE
4790}
4791{
4792 bug_122717_leak
4793 Memcheck:Leak
4794 fun:_Znw*
4795 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
4796 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
4797 fun:_ZN7content13BrowserThread16PostTaskAndReplyENS0_2IDERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESB_
4798 fun:_ZN5gdata15GDataFileSystem37PostBlockingPoolSequencedTaskAndReplyERKSsRKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESC_
4799 fun:_ZN5gdata15GDataFileSystem29PostBlockingPoolSequencedTaskERKSsRKN15tracked_objects8LocationERKN4base8CallbackIFvvEEE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00004800 fun:_ZN5gdata15GDataFileSystem8SaveFeedE10scoped_ptrIN4base5ValueEE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004801 fun:_ZN5gdata15GDataFileSystem14OnGetDocumentsEPNS0_18GetDocumentsParamsENS_14GDataErrorCodeE10scoped_ptrIN4base5ValueEE
4802}
4803{
4804 bug_122733
4805 Memcheck:Leak
4806 fun:_Znw*
4807 fun:_ZN9__gnu_cxx13new_allocatorINS_15_Hashtable_nodeISsEEE8allocateEmPKv
4808 fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE11_M_get_nodeEv
4809 fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE11_M_new_nodeERKSs
4810 fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE22insert_unique_noresizeERKSs
4811 fun:_ZN9__gnu_cxx9hashtableISsSsNS_4hashISsEESt9_IdentityISsESt8equal_toISsESaISsEE13insert_uniqueERKSs
4812 fun:_ZN9__gnu_cxx8hash_setISsNS_4hashISsEESt8equal_toISsESaISsEE6insertERKSs
4813 fun:_ZN13safe_browsing6Scorer6CreateERKN4base16BasicStringPieceISsEE
4814 fun:_ZN13safe_browsing24PhishingClassifierFilter18OnSetPhishingModelERKSs
4815}
4816{
4817 bug_122733b
4818 Memcheck:Leak
4819 fun:_Znw*
4820 ...
4821 fun:_ZN13safe_browsing15ClientSideModel27MergePartialFromCodedStreamEPN6google8protobuf2io16CodedInputStreamE
4822 fun:_ZN6google8protobuf11MessageLite14ParseFromArrayEPKvi
4823 fun:_ZN13safe_browsing6Scorer6CreateERKN4base16BasicStringPieceISsEE
4824 fun:_ZN13safe_browsing24PhishingClassifierFilter18OnSetPhishingModelERKSs
4825}
4826{
4827 bug_122752a
4828 Memcheck:Unaddressable
4829 fun:_ZN6WebKit12CCThreadImpl8postTaskEN3WTF10PassOwnPtrIN7WebCore8CCThread4TaskEEE
4830 fun:_ZN7WebCore13CCThreadProxy18finishAllRenderingEv
4831 fun:_ZN7WebCore15CCLayerTreeHost18finishAllRenderingEv
4832 fun:_ZN6WebKit16WebLayerTreeView18finishAllRenderingEv
4833 fun:_ZN6WebKit11WebViewImpl33setIsAcceleratedCompositingActiveEb
4834 fun:_ZN6WebKit11WebViewImpl20setRootGraphicsLayerEPN7WebCore13GraphicsLayerE
4835}
4836{
4837 bug_122752b
4838 Memcheck:Unaddressable
4839 fun:_ZN6WebKit12CCThreadImpl8postTaskEN3WTF10PassOwnPtrIN7WebCore8CCThread4TaskEEE
4840 fun:_ZN7WebCore13CCThreadProxy14setNeedsCommitEv
4841 fun:_ZN7WebCore15CCLayerTreeHost14setNeedsCommitEv
4842 fun:_ZN7WebCore13LayerChromium14setNeedsCommitEv
4843 fun:_ZN7WebCore13LayerChromium11removeChildEPS0_
4844 fun:_ZN7WebCore13LayerChromium16removeFromParentEv
4845 fun:_ZN7WebCore21GraphicsLayerChromium16removeFromParentEv
4846}
4847{
4848 bug_123307
4849 Memcheck:Leak
4850 fun:malloc
4851 fun:_ZN3WTF10fastMallocEm
4852 fun:_ZN3WTF16fastZeroedMallocEm
4853 ...
4854 fun:_ZN7WebCore12_GLOBAL__N_111V8ObjectMapIN2v86ObjectEjE3setERKNS2_6HandleIS3_EERKj
4855 fun:_ZN7WebCore12_GLOBAL__N_110Serializer10greyObjectERKN2v86HandleINS2_6ObjectEEE
4856 fun:_ZN7WebCore12_GLOBAL__N_110Serializer11doSerializeEN2v86HandleINS2_5ValueEEEPNS1_9StateBaseE
4857 fun:_ZN7WebCore12_GLOBAL__N_110Serializer9serializeEN2v86HandleINS2_5ValueEEE
4858 fun:_ZN7WebCore21SerializedScriptValueC1EN2v86HandleINS1_5ValueEEEPN3WTF6VectorINS5_6RefPtrINS_11MessagePortEEELm1EEEPNS6_INS7_INS5_11ArrayBufferEEELm1EEERb
4859 fun:_ZN7WebCore21SerializedScriptValue6createEN2v86HandleINS1_5ValueEEEPN3WTF6VectorINS5_6RefPtrINS_11MessagePortEEELm1EEEPNS6_INS7_INS5_11ArrayBufferEEELm1EEERb
4860 fun:_ZN7WebCoreL25handlePostMessageCallbackERKN2v89ArgumentsEb
4861 fun:_ZN7WebCore11V8DOMWindow19postMessageCallbackERKN2v89ArgumentsE
4862 fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
4863 fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
4864}
4865{
4866 bug_124156
4867 Memcheck:Leak
4868 fun:_Znw*
Ben Murdochbbcdd452013-07-25 10:06:34 +01004869 ...
4870 fun:*WebKitPlatformSupport*20CreateResourceLoaderERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004871 fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN6WebKit13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
4872 fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN6WebKit13WebURLRequestEPNS1_18WebURLLoaderClientE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004873}
4874{
4875 bug_124488
4876 Memcheck:Leak
4877 fun:malloc
4878 fun:strdup
4879 ...
4880 fun:_ZN34CopyTextureCHROMIUMResourceManager10InitializeEv
4881 fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContextEERKNS3_4SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
4882 fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
4883 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
4884 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
4885}
4886{
4887 bug_124496
4888 Memcheck:Leak
4889 fun:_Znw*
4890 ...
4891 fun:_ZN8notifier26ProxyResolvingClientSocket23ProcessProxyResolveDoneEi
4892}
4893{
4894 bug_124500
4895 Memcheck:Leak
4896 fun:_Znw*
4897 fun:_ZN9__gnu_cxx13new_allocatorIN6webkit17WebPluginMimeTypeEE8allocateEmPKv
4898 fun:_ZNSt12_Vector_baseIN6webkit17WebPluginMimeTypeESaIS1_EE11_M_allocateEm
4899 fun:_ZNSt6vectorIN6webkit17WebPluginMimeTypeESaIS1_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS1_S3_EERKS1_
4900 fun:_ZNSt6vectorIN6webkit17WebPluginMimeTypeESaIS1_EE9push_backERKS1_
4901 fun:_ZN6webkit5npapi9PluginLib20ParseMIMEDescriptionERKSsPSt6vectorINS_17WebPluginMimeTypeESaIS5_EE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00004902 fun:_ZN6webkit5npapi9PluginLib17ReadWebPluginInfoE*
4903 fun:_ZN6webkit5npapi10PluginList14ReadPluginInfoE*
4904 fun:_ZN6webkit5npapi10PluginList10LoadPluginE*
4905 fun:_ZN17UtilityThreadImpl13OnLoadPluginsE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004906}
4907{
4908 bug_127716
4909 Memcheck:Leak
4910 fun:_Znw*
4911 fun:_ZN3gfx5ImageC1ERK8SkBitmap
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00004912 fun:_ZN16BrowserThemePack16LoadRawBitmapsToE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004913 fun:_ZN16BrowserThemePack18BuildFromExtensionEPK9Extension
4914 fun:_ZN45BrowserThemePackTest_CanBuildAndReadPack_Test8TestBodyEv
4915}
4916{
4917 bug_130362
4918 Memcheck:Leak
4919 fun:_Znw*
4920 fun:_ZN12invalidation20NewPermanentCallbackINS_22InvalidationClientImplES1_St4pairINS_6StatusESsEEEPN4base8CallbackIFvT1_EEEPT_MT0_FvS7_E
4921 fun:_ZN12invalidation22InvalidationClientImpl34ScheduleStartAfterReadingStateBlobEv
4922 fun:_ZN12invalidation22InvalidationClientImpl5StartEv
4923 fun:_ZN6syncer24SyncInvalidationListener5StartERKSsS2_S2_RKSt3mapIN8syncable9ModelTypeElSt4lessIS5_ESaISt4pairIKS5_lEEERKN12browser_sync10WeakHandleINS_24InvalidationStateTrackerEEEPNS0_8ListenerEPNS_11StateWriterE
4924 fun:_ZN6syncer20InvalidationNotifier17UpdateCredentialsERKSsS2_
4925 fun:_ZN6syncer31NonBlockingInvalidationNotifier4Core17UpdateCredentialsERKSsS3_
4926}
4927{
4928 bug_130449
4929 Memcheck:Leak
4930 fun:_Znw*
4931 fun:_ZN12invalidation20NewPermanentCallbackINS_22InvalidationClientImplES1_St4pairINS_6StatusESsEEEPN4base8CallbackIFvT1_EEEPT_MT0_FvS7_E
4932 fun:_ZN12invalidation22InvalidationClientImpl34ScheduleStartAfterReadingStateBlobEv
4933 fun:_ZN12invalidation22InvalidationClientImpl5StartEv
4934 fun:_ZN6syncer24SyncInvalidationListener5StartERKSsS2_S2_RKSt3mapIN8syncable9ModelTypeElSt4lessIS5_ESaISt4pairIKS5_lEEERKN12browser_sync10WeakHandleINS_24InvalidationStateTrackerEEEPNS0_8ListenerE
4935 fun:_ZN6syncer20InvalidationNotifier17UpdateCredentialsERKSsS2_
4936 fun:_ZN6syncer31NonBlockingInvalidationNotifier4Core17UpdateCredentialsERKSsS3_
4937}
4938{
4939 bug_130619
4940 Memcheck:Leak
4941 fun:_Znw*
4942 fun:_ZN7WebCore9ClipRects6createERKS0_
4943 fun:_ZN7WebCore11RenderLayer15updateClipRectsEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeENS_29OverlayScrollbarSizeRelevancyE
4944 ...
4945 fun:_ZNK7WebCore11RenderLayer15parentClipRectsEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeERNS_9ClipRectsENS_29OverlayScrollbarSizeRelevancyE
4946 fun:_ZNK7WebCore11RenderLayer18backgroundClipRectEPKS0_PNS_12RenderRegionENS_13ClipRectsTypeENS_29OverlayScrollbarSizeRelevancyE
4947}
4948{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00004949 bug_138058
4950 Memcheck:Uninitialized
4951 ...
4952 fun:_ZN7WebCore12WebVTTParser22constructTreeFromTokenEPNS_8DocumentE
4953 fun:_ZN7WebCore12WebVTTParser33createDocumentFragmentFromCueTextERKN3WTF6StringE
4954 fun:_ZN7WebCore12TextTrackCue12getCueAsHTMLEv
4955 fun:_ZN7WebCore12TextTrackCue17updateDisplayTreeEf
4956 fun:_ZN7WebCore16HTMLMediaElement25updateActiveTextTrackCuesEf
4957}
4958{
4959 bug_138060
4960 Memcheck:Uninitialized
4961 fun:_NPN_EvaluateHelper
4962 fun:_NPN_Evaluate
4963 fun:_ZN6WebKit11WebBindings8evaluateEP4_NPPP8NPObjectP9_NPStringP10_NPVariant
4964 fun:_ZL13executeScriptPK12PluginObjectPKc
4965 fun:NPP_Destroy
4966 fun:_ZN6webkit5npapi14PluginInstance11NPP_DestroyEv
4967 fun:_ZN6webkit5npapi21WebPluginDelegateImpl15DestroyInstanceEv
4968 fun:_ZN6webkit5npapi21WebPluginDelegateImplD0Ev
4969 fun:_ZN6webkit5npapi21WebPluginDelegateImpl15PluginDestroyedEv
4970 fun:_ZN6webkit5npapi13WebPluginImpl22TearDownPluginInstanceEPN6WebKit12WebURLLoaderE
4971 fun:_ZN6webkit5npapi13WebPluginImpl12SetContainerEPN6WebKit18WebPluginContainerE
4972 fun:_ZN6webkit5npapi13WebPluginImpl7destroyEv
4973 fun:_ZN6WebKit22WebPluginContainerImplD0Ev
4974 fun:_ZN3WTF10RefCountedIN7WebCore6WidgetEE5derefEv
4975 fun:_ZNSt4pairIN3WTF6RefPtrIN7WebCore6WidgetEEEPNS2_9FrameViewEED1Ev
4976 fun:_ZN3WTF9HashTableINS_6RefPtrIN7WebCore6WidgetEEESt4pairIS4_PNS2_9FrameViewEENS_18PairFirstExtractorIS8_EENS_7PtrHashIS4_EENS_14PairHashTraitsINS_10HashTraitsIS4_EENSE_IS7_EEEESF_E15deallocateTableEPS8_i
4977 fun:_ZN3WTF9HashTableINS_6RefPtrIN7WebCore6WidgetEEESt4pairIS4_PNS2_9FrameViewEENS_18PairFirstExtractorIS8_EENS_7PtrHashIS4_EENS_14PairHashTraitsINS_10HashTraitsIS4_EENSE_IS7_EEEESF_ED1Ev
4978 fun:_ZN3WTF7HashMapINS_6RefPtrIN7WebCore6WidgetEEEPNS2_9FrameViewENS_7PtrHashIS4_EENS_10HashTraitsIS4_EENS9_IS6_EEED1Ev
4979 fun:_ZN7WebCore12RenderWidget28resumeWidgetHierarchyUpdatesEv
4980 fun:_ZN7WebCore7Element6detachEv
4981 fun:_ZN7WebCore13ContainerNode14detachChildrenEv
4982 fun:_ZN7WebCore13ContainerNode6detachEv
4983}
4984{
4985 bug_138220_a
4986 Memcheck:Uninitialized
4987 fun:_ZNK7WebCore16HTMLInputElement8dataListEv
4988 fun:_ZNK7WebCore16HTMLInputElement4listEv
4989 fun:_ZN7WebCore21RenderSliderContainer6layoutEv
4990 fun:_ZN7WebCore11RenderBlock16layoutBlockChildEPNS_9RenderBoxERNS0_10MarginInfoERNS_20FractionalLayoutUnitES6_
4991 fun:_ZN7WebCore11RenderBlock19layoutBlockChildrenEbRNS_20FractionalLayoutUnitE
4992 fun:_ZN7WebCore11RenderBlock11layoutBlockEbNS_20FractionalLayoutUnitE
4993 fun:_ZN7WebCore11RenderBlock6layoutEv
4994 fun:_ZN7WebCore12RenderSlider6layoutEv
4995}
4996{
4997 bug_138220_b
4998 Memcheck:Uninitialized
4999 fun:_ZNK7WebCore16HTMLInputElement8dataListEv
5000 fun:_ZNK7WebCore16HTMLInputElement4listEv
5001 fun:_ZN7WebCore11RenderTheme16paintSliderTicksEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
5002 fun:_ZN7WebCore24RenderThemeChromiumLinux16paintSliderTrackEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
5003 fun:_ZN7WebCore11RenderTheme5paintEPNS_12RenderObjectERKNS_9PaintInfoERKNS_7IntRectE
5004 fun:_ZN7WebCore9RenderBox19paintBoxDecorationsERNS_9PaintInfoERKNS_21FractionalLayoutPointE
5005 fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_21FractionalLayoutPointE
5006}
5007{
5008 bug_138233_a
5009 Memcheck:Leak
5010 fun:malloc
5011 fun:_ZN3WTF10fastMallocEm
5012 fun:_ZN3WTF10RefCountedIN7WebCore17ScriptProfileNodeEEnwEm
5013 fun:_ZN7WebCore17ScriptProfileNode6createEPKN2v814CpuProfileNodeE
5014 fun:_ZNK7WebCore13ScriptProfile4headEv
5015 fun:_ZN7WebCore23ScriptProfileV8InternalL14headAttrGetterEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
5016 fun:_ZN2v88internal8JSObject23GetPropertyWithCallbackEPNS0_6ObjectES3_PNS0_6StringE
5017 fun:_ZN2v88internal6Object11GetPropertyEPS1_PNS0_12LookupResultEPNS0_6StringEP18PropertyAttributes
5018 fun:_ZN2v88internal6LoadIC4LoadENS0_16InlineCacheStateENS0_6HandleINS0_6ObjectEEENS3_INS0_6StringEEE
5019 fun:_ZN2v88internal11LoadIC_MissENS0_9ArgumentsEPNS0_7IsolateE
5020}
5021{
5022 bug_138233_b
5023 Memcheck:Leak
5024 fun:malloc
5025 fun:_ZN3WTF10fastMallocEm
5026 fun:_ZN3WTF10RefCountedIN7WebCore17ScriptProfileNodeEEnwEm
5027 fun:_ZN7WebCore17ScriptProfileNode6createEPKN2v814CpuProfileNodeE
5028 fun:_ZNK7WebCore17ScriptProfileNode8childrenEv
5029 fun:_ZN7WebCore27ScriptProfileNodeV8InternalL16childrenCallbackERKN2v89ArgumentsE
5030}
5031{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005032 bug_138522
5033 Memcheck:Leak
5034 fun:_Znw*
5035 fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF12AtomicStringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005036 fun:_ZN7WebCore*V8StringResourceILNS_20V8StringResourceMode*
5037 ...
5038 fun:_ZN7WebCore23WorkerContextV8InternalL22addEventListenerMethodERKN2v89ArgumentsE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005039}
5040{
5041 bug_138712
5042 Memcheck:Uninitialized
5043 fun:_ZN7testing8internal11CmpHelperGEIddEENS_15AssertionResultEPKcS4_RKT_RKT0_
5044 fun:_ZN3gfx30JPEGCodec_EncodeDecodeRGB_Test8TestBodyEv
5045}
5046{
5047 bug_16089 WorkerPool threads and its tasks can leak by design
5048 Memcheck:Leak
5049 fun:_Znw*
5050 fun:_ZN4base22PosixDynamicThreadPool7AddTaskEPNS_11PendingTaskE
5051 fun:_ZN4base22PosixDynamicThreadPool8PostTask*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005052}
5053{
5054 bug_139467
5055 Memcheck:Uninitialized
5056 fun:_ZNK7WebCore18AccessibilityTable9roleValueEv
5057 fun:_ZNK7WebCore25AccessibilityRenderObject20ariaLiveRegionStatusEv
5058 fun:_ZNK7WebCore19AccessibilityObject22supportsARIALiveRegionEv
5059 fun:_ZNK7WebCore19AccessibilityObject22supportsARIAAttributesEv
5060 fun:_ZN7WebCore25AccessibilityRenderObject26determineAccessibilityRoleEv
5061 fun:_ZN7WebCore23AccessibilityNodeObject4initEv
5062 fun:_ZN7WebCore25AccessibilityRenderObject4initEv
5063 fun:_ZN7WebCore18AccessibilityTable4initEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005064}
5065{
5066 bug_139470
5067 Memcheck:Leak
5068 fun:_Znw*
5069 fun:_ZN7WebCore22ThreadableBlobRegistry17unregisterBlobURLERKNS_4KURLE
5070 ...
5071 fun:_ZN7WebCore15WrapperTypeInfo11derefObjectEPv
5072 fun:_ZN7WebCore7DOMData11derefObjectEPNS_15WrapperTypeInfoEPv
5073 fun:_ZN7WebCore7DOMData23WrapperMapObjectRemoverIvE15visitDOMWrapperEPNS_12DOMDataStoreEPvN2v810PersistentINS6_6ObjectEEE
5074 fun:_ZN7WebCore16WeakReferenceMapIvN2v86ObjectEE5visitEPNS_12DOMDataStoreEPNS_24AbstractWeakReferenceMapIvS2_E7VisitorE
5075 fun:_ZN7WebCore7DOMData27removeObjectsFromWrapperMapIvEEvPNS_12DOMDataStoreERNS_24AbstractWeakReferenceMapIT_N2v86ObjectEEE
5076 fun:_ZN7WebCore19removeAllDOMObjectsEv
5077 fun:_ZN7WebCore22WorkerScriptControllerD1Ev
5078 fun:_ZN3WTF14deleteOwnedPtrIN7WebCore22WorkerScriptControllerEEEvPT_
5079 fun:_ZN3WTF6OwnPtrIN7WebCore22WorkerScriptControllerEE5clearEv
5080 fun:_ZN7WebCore13WorkerContext11clearScriptEv
5081 fun:_ZN7WebCore30WorkerThreadShutdownFinishTask11performTaskEPNS_22ScriptExecutionContextE
5082 fun:_ZN7WebCore13WorkerRunLoop4Task11performTaskERKS0_PNS_22ScriptExecutionContextE
5083 fun:_ZN7WebCore13WorkerRunLoop9runInModeEPNS_13WorkerContextERKNS_13ModePredicateENS0_8WaitModeE
5084 fun:_ZN7WebCore13WorkerRunLoop3runEPNS_13WorkerContextE
5085 fun:_ZN7WebCore12WorkerThread12runEventLoopEv
5086 fun:_ZN7WebCore21DedicatedWorkerThread12runEventLoopEv
5087}
5088{
5089 bug_139662
5090 Memcheck:Uninitialized
5091 fun:qcms_transform_data_rgba_out_lut_sse2
5092 fun:qcms_transform_data_type
5093 fun:_ZN7WebCore16JPEGImageDecoder15outputScanlinesEv
5094 fun:_ZN7WebCore15JPEGImageReader6decodeERKNS_12SharedBufferEb
5095}
5096{
5097 bug_139853
5098 Memcheck:Unaddressable
5099 fun:_ZN11SkGpuDeviceC1EP9GrContextP9GrTexture
5100 fun:_ZN7WebCoreL23createAcceleratedCanvas*
5101 fun:_ZN7WebCore45FrameBufferSkPictureCanvasLayerTextureUpdater17*
5102 fun:_ZN7WebCore45FrameBufferSkPictureCanvasLayerTextureUpdater7Texture10updateRectEPNS_18CCResourceProviderERKNS_7IntRectES6_
5103 fun:_ZN7WebCore12_GLOBAL__N_126UnthrottledTextureUploader13uploadTextureEPNS_19LayerTextureUpdater7TextureEPNS_18CCResourceProviderENS_7IntRectES7_
5104 fun:_ZN7WebCore16CCTextureUpdater6updateEPNS_18CCResourceProviderEPNS_13TextureCopierEPNS_15TextureUploaderEm
5105 fun:_ZN7WebCore19CCSingleThreadProxy8doCommitERNS_16CCTextureUpdaterE
5106 fun:_ZN7WebCore19CCSingleThreadProxy18commitAndCompositeEv
5107 fun:_ZN7WebCore19CCSingleThreadProxy20compositeAndReadbackEPvRKNS_7IntRectE
5108 fun:_ZN7WebCore15CCLayerTreeHost20compositeAndReadbackEPvRKNS_7IntRectE
5109 fun:_ZN6WebKit16WebLayerTreeView20compositeAndReadbackEPvRKNS_7WebRectE
5110 fun:_ZN6WebKit11WebViewImpl23doPixelReadbackToCanvasEP8SkCanvasRKN7WebCore7IntRectE
5111 fun:_ZN6WebKit11WebViewImpl5paintEP8SkCanvasRKNS_7WebRectE
5112 fun:_ZN11WebViewHost9paintRectERKN6WebKit7WebRectE
5113 fun:_ZN11WebViewHost22paintInvalidatedRegionEv
5114}
5115{
5116 bug_139996
5117 Memcheck:Leak
5118 fun:_Znw*
5119 fun:_ZN7WebCore23v8StringToWebCoreStringIN3WTF6StringEEET_N2v86HandleINS4_6StringEEENS_12ExternalModeE
5120 fun:_ZN7WebCore15toWebCoreStringEN2v86HandleINS0_5ValueEEE
5121 fun:_ZN7WebCore6V8Blob19constructorCallbackERKN2v89ArgumentsE
5122 fun:_ZN2v88internalL19HandleApiCallHelperILb1EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
5123 fun:_ZN2v88internalL30Builtin_HandleApiCallConstructENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
5124}
5125{
5126 bug_139998
5127 Memcheck:Leak
5128 fun:*alloc
5129 ...
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005130 fun:_ZL23link_intrastage_shadersP14__GLcontextRecP17gl_shader_programPP9gl_shaderj
5131 fun:_Z12link_shadersP14__GLcontextRecP17gl_shader_program
5132 fun:_mesa_glsl_link_shader
5133 fun:link_program
5134 fun:_mesa_LinkProgramARB
5135 fun:glLinkProgram
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005136 ...
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005137 fun:_ZN3gpu5gles216GLES2DecoderImpl13DoLinkProgramEj
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005138 fun:_ZN3gpu5gles216GLES2DecoderImpl17HandleLinkProgram*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005139 fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
5140 fun:_ZN3gpu13CommandParser14ProcessCommandEv
5141 fun:_ZN3gpu12GpuScheduler10PutChangedEv
5142 fun:_ZN6webkit3gpu18GLInProcessContext12PumpCommandsEv
5143}
5144{
5145 bug_140196
5146 Memcheck:Uninitialized
5147 fun:_ZNK12SkDescriptor6equalsERKS_
5148 fun:_ZN12SkGlyphCache10VisitCacheEPK12SkDescriptorPFbPKS_PvES5_
5149 ...
5150 fun:_ZNK7SkPaint14descriptorProcEPK8SkMatrixPFvPK12SkDescriptorPvES6_b
5151}
5152{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005153 bug_143545
5154 Memcheck:Uninitialized
5155 fun:_ZN4aura10RootWindow10ShowCursorEb
5156 fun:_ZN3ash5Shell10ShowCursorEb
5157 fun:_ZN3ash13CursorManager10ShowCursorEb
5158 fun:_ZN3ash4test11AshTestBase5SetUpEv
5159}
5160{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005161 bug_144118
5162 Memcheck:Unaddressable
5163 fun:NPP_SetWindow
5164 fun:_ZN6webkit5npapi14PluginInstance13NPP_SetWindowEP9_NPWindow
5165 fun:_ZN6webkit5npapi21WebPluginDelegateImpl17WindowedSetWindowEv
5166 fun:_ZN6webkit5npapi21WebPluginDelegateImpl22WindowedUpdateGeometryERKN3gfx4RectES5_
5167 fun:_ZN6webkit5npapi21WebPluginDelegateImpl14UpdateGeometryERKN3gfx4RectES5_
5168 fun:_ZN6webkit5npapi13WebPluginImpl14updateGeometryERKN6WebKit7WebRectES5_RKNS2_9WebVectorIS3_EEb
5169 fun:_ZN6WebKit22WebPluginContainerImpl14reportGeometryEv
5170 fun:_ZN6WebKit22WebPluginContainerImpl12setFrameRectERKN7WebCore7IntRectE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005171 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005172 fun:_ZN9TestShell4dumpEv
5173}
5174{
5175 bug_144118_b
5176 Memcheck:Unaddressable
5177 fun:_ZNK3WTF6OwnPtrIN6WebKit14ScrollbarGroupEEcvMS3_PS2_Ev
5178 fun:_ZN6WebKit22WebPluginContainerImpl14reportGeometryEv
5179 fun:_ZN6WebKit22WebPluginContainerImpl12setFrameRectERKN7WebCore7IntRectE
5180 ...
5181 fun:_ZN9TestShell4dumpEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005182}
5183{
5184 bug_144913
5185 Memcheck:Leak
5186 fun:_Znw*
5187 fun:_ZN8chromeos30BluetoothAdapterClientStubImplC1Ev
5188 fun:_ZN8chromeos22BluetoothAdapterClient6CreateENS_28DBusClientImplementationTypeEPN4dbus3BusEPNS_22BluetoothManagerClientE
5189 fun:_ZN8chromeos21DBusThreadManagerImplC1ENS_28DBusClientImplementationTypeE
5190 fun:_ZN8chromeos17DBusThreadManager10InitializeEv
5191 fun:_ZN8chromeos23KioskModeIdleLogoutTest5SetUpEv
5192}
5193{
5194 bug_144913_b
5195 Memcheck:Leak
5196 fun:_Znw*
5197 fun:_ZN8chromeos17DBusThreadManager10InitializeEv
5198 fun:_ZN8chromeos23KioskModeIdleLogoutTest5SetUpEv
5199}
5200{
5201 bug_144913_c
5202 Memcheck:Leak
5203 fun:_Znw*
5204 ...
5205 fun:_ZN8chromeos21DBusThreadManagerImplC1ENS_28DBusClientImplementationTypeE
5206 fun:_ZN8chromeos17DBusThreadManager10InitializeEv
5207 fun:_ZN8chromeos23KioskModeIdleLogoutTest5SetUpEv
5208}
5209{
5210 bug_144930
5211 Memcheck:Leak
5212 fun:_Znw*
5213 fun:_ZL20cachedPaintLuminancef
5214}
5215{
5216 bug_144930_b
5217 Memcheck:Leak
5218 fun:_Znw*
5219 fun:_ZL21cachedDeviceLuminancef
5220}
5221{
5222 bug_145244
5223 Memcheck:Uninitialized
5224 fun:_ZN7WebCore15StyleRuleImport17requestStyleSheetEPNS_13CSSStyleSheetERKNS_16CSSParserContextE
5225 fun:_ZN7WebCore18StyleSheetContents26requestImportedStyleSheetsEPNS_13CSSStyleSheetE
5226}
5227{
5228 bug_145645
5229 Memcheck:Leak
5230 fun:malloc
5231 fun:_ZN3WTF10fastMallocEm
5232 fun:_ZN3WTF10RefCountedIN7WebCore18InjectedScriptHostEEnwEm
5233 fun:_ZN7WebCore18InjectedScriptHost6createEv
5234 fun:_ZN7WebCore21InjectedScriptManagerC1EPFbPNS_11ScriptStateEE
5235 fun:_ZN7WebCore21InjectedScriptManager15createForWorkerEv
5236 fun:_ZN7WebCore25WorkerInspectorControllerC1EPNS_13WorkerContextE
5237}
5238{
5239 bug_145650a
5240 Memcheck:Leak
5241 fun:_Znw*
5242 ...
5243 fun:_ZN14WebDataService10AddKeywordERK15TemplateURLData
5244 fun:_ZN18TemplateURLService11AddNoNotifyEP11TemplateURLb
5245}
5246{
5247 bug_145650b
5248 Memcheck:Leak
5249 fun:_Znw*
5250 fun:_ZN14WebDataService13RemoveKeywordEl
5251 fun:_ZN18TemplateURLService14RemoveNoNotifyEP11TemplateURL
5252 fun:_ZN18TemplateURLService6RemoveEP11TemplateURL
5253 fun:_ZN9protector71DefaultSearchProviderChangeTest_CurrentSearchProviderRemovedByUser_Test19RunTestOnMainThreadEv
5254}
5255{
5256 bug_145650c
5257 Memcheck:Leak
5258 fun:_Znw*
5259 fun:_ZN14WebDataService13UpdateKeywordERK15TemplateURLData
5260 fun:_ZN18TemplateURLService32SetDefaultSearchProviderNoNotifyEP11TemplateURL
5261}
5262{
5263 bug_125692a
5264 Memcheck:Uninitialized
5265 fun:_ZN2v88internal11StoreBuffer28IteratePointersInStoreBufferEPFvPPNS0_10HeapObjectES3_E
5266 fun:_ZN2v88internal11StoreBuffer25IteratePointersToNewSpaceEPFvPPNS0_10HeapObjectES3_E
5267 fun:_ZN2v88internal20MarkCompactCollector29EvacuateNewSpaceAndCandidatesEv
5268 fun:_ZN2v88internal20MarkCompactCollector11SweepSpacesEv
5269 fun:_ZN2v88internal20MarkCompactCollector14CollectGarbageEv
5270 fun:_ZN2v88internal4Heap11MarkCompactEPNS0_8GCTracerE
5271}
5272{
5273 bug_125692b
5274 Memcheck:Uninitialized
5275 fun:_ZN2v88internal11StoreBuffer7CompactEv
5276 fun:_ZN2v88internal11StoreBuffer19PrepareForIterationEv
5277 fun:_ZN2v88internal11StoreBuffer25IteratePointersToNewSpaceEPFvPPNS0_10HeapObjectES3_E
5278 fun:_ZN2v88internal20MarkCompactCollector29EvacuateNewSpaceAndCandidatesEv
5279 fun:_ZN2v88internal20MarkCompactCollector11SweepSpacesEv
5280 fun:_ZN2v88internal20MarkCompactCollector14CollectGarbageEv
5281 fun:_ZN2v88internal4Heap11MarkCompactEPNS0_8GCTracerE
5282 fun:_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorEPNS0_8GCTracerE
5283 fun:_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceENS0_16GarbageCollectorEPKcS5_
5284 fun:_ZN2v88internal4Heap14CollectGarbageENS0_15AllocationSpaceEPKc
5285 fun:_ZN2v88internal4Heap17CollectAllGarbageEiPKc
5286 fun:_ZN2v88internal4Heap16IdleNotificationEi
5287 fun:_ZN2v88internal2V816IdleNotificationEi
5288 fun:_ZN2v82V816IdleNotificationEi
5289 fun:_ZN16RenderThreadImpl11IdleHandlerEv
5290}
5291{
5292 bug_145693
5293 Memcheck:Leak
5294 fun:_Znw*
5295 fun:_ZN10extensions18PermissionsUpdater17RecordOAuth2GrantEPKNS_9ExtensionE
5296 fun:_ZN10extensions18PermissionsUpdater22GrantActivePermissionsEPKNS_9ExtensionEb
5297 fun:_ZN10extensions12CrxInstaller25ReportSuccessFromUIThreadEv
5298}
5299{
5300 bug_145695
5301 Memcheck:Leak
5302 fun:malloc
5303 fun:NaClDescImcBoundDescAcceptConn
5304 fun:RevRpcHandlerBase
5305 fun:NaClThreadInterfaceStart
5306}
5307{
5308 bug_145696
5309 Memcheck:Leak
5310 fun:_Znw*
5311 fun:_ZN10extensions9TabHelper23OnInlineWebstoreInstallEiiRKSsRK4GURL
5312}
5313{
5314 bug_145697
5315 Memcheck:Leak
5316 fun:_Znw*
5317 ...
5318 fun:_ZN18SecurityFilterPeer40CreateSecurityFilterPeerForDeniedRequestEN12ResourceType4TypeEPN11webkit_glue20ResourceLoaderBridge4PeerEi
5319 fun:_ZN12_GLOBAL__N_124RendererResourceDelegate17OnRequestCompleteEPN11webkit_glue20ResourceLoaderBridge4PeerEN12ResourceType4TypeERKN3net16URLRequestStatusE
5320 fun:_ZN7content18ResourceDispatcher17OnRequestCompleteEiRKN3net16URLRequestStatusERKSsRKN4base9TimeTicksE
5321}
5322{
5323 bug_145698
5324 Memcheck:Leak
5325 fun:_Znw*
5326 fun:_ZN6chrome24ShowSessionCrashedPromptEP7Browser
5327 fun:_ZN25StartupBrowserCreatorImpl22AddInfoBarsIfNecessaryEP7BrowserN6chrome7startup16IsProcessStartupE
5328 fun:_ZN25StartupBrowserCreatorImpl17ProcessLaunchURLsEbRKSt6vectorI4GURLSaIS1_EE
5329 fun:_ZN25StartupBrowserCreatorImpl6LaunchEP7ProfileRKSt6vectorI4GURLSaIS3_EEb
5330}
5331{
5332 bug_145699
5333 Memcheck:Leak
5334 fun:_Znw*
5335 fun:_ZN17OAuth2ApiCallFlow24CreateAccessTokenFetcherEv
5336 fun:_ZN17OAuth2ApiCallFlow20BeginMintAccessTokenEv
5337 fun:_ZN17OAuth2ApiCallFlow12BeginApiCallEv
5338 fun:_ZN17OAuth2ApiCallFlow5StartEv
5339 fun:_ZN19OAuth2MintTokenFlow13FireAndForgetEv
5340}
5341{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005342 bug_145703
5343 Memcheck:Leak
5344 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005345 ...
5346 fun:_ZN7content16SiteInstanceImpl10GetProcessEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005347 fun:_ZN7content18RenderViewHostImplC1EPNS_12SiteInstanceEPNS_22RenderViewHostDelegateEPNS_24RenderWidgetHostDelegateEibPNS_23SessionStorageNamespaceE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005348 fun:_ZN7content21RenderViewHostFactory6CreateEPNS_12SiteInstanceEPNS_22RenderViewHostDelegateEPNS_24RenderWidgetHostDelegateEibPNS_23SessionStorageNamespaceE
5349 fun:_ZN7content21RenderViewHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEi
5350 fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
5351 fun:_ZN7content15TestWebContents6CreateEPNS_14BrowserContextEPNS_12SiteInstanceE
5352 fun:_ZN7content17WebContentsTester21CreateTestWebContentsEPNS_14BrowserContextEPNS_12SiteInstanceE
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005353}
5354{
5355 bug_145704
5356 Memcheck:Leak
5357 fun:_Znw*
5358 fun:_ZN2v88internal5Debug17CreateScriptCacheEv
5359 fun:_ZN2v88internal5Debug16GetLoadedScriptsEv
5360 fun:_ZN2v88internal29Runtime_DebugGetLoadedScriptsENS0_9ArgumentsEPNS0_7IsolateE
5361}
5362{
5363 bug_145705
5364 Memcheck:Leak
5365 fun:_Znw*
5366 fun:_ZN10extensions16SettingsFrontendC1ERK13scoped_refptrINS_22SettingsStorageFactoryEEP7Profile
5367 fun:_ZN10extensions16SettingsFrontend6CreateEP7Profile
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005368 fun:_ZN16ExtensionServiceC1E*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005369}
5370{
5371 bug_145708
5372 Memcheck:Leak
5373 fun:_Znw*
5374 fun:_ZN27ExtensionDevToolsClientHostC1EPN7content11WebContentsERKSsS4_i
5375 fun:_ZN22AttachDebuggerFunction7RunImplEv
5376 fun:_ZN17ExtensionFunction3RunEv
5377 fun:_ZN27ExtensionFunctionDispatcher8DispatchERK31ExtensionHostMsg_Request_ParamsPN7content14RenderViewHostE
5378 fun:_ZN10extensions13ExtensionHost9OnRequestERK31ExtensionHostMsg_Request_Params
5379}
5380{
5381 bug_145712
5382 Memcheck:Leak
5383 fun:_Znw*
5384 fun:_ZN6WebKit25NotificationPresenterImpl17requestPermissionEPN7WebCore22Scri ptExecutionContextEN3WTF10PassRefPtrINS1_12VoidCallbackEEE
5385 fun:_ZN7WebCore18NotificationCenter17requestPermissionEN3WTF10PassRefPtrINS_1 2VoidCallbackEEE
5386 fun:_ZN7WebCore20V8NotificationCenter25requestPermissionCallbackERKN2v89Argum entsE
5387}
5388{
5389 bug_145723
5390 Memcheck:Leak
5391 fun:_Znw*
5392 fun:_Z20NewExtensionFunctionI25TabsExecuteScriptFunctionEP17ExtensionFunctionv
5393 fun:_ZN25ExtensionFunctionRegistry11NewFunctionERKSs
5394 fun:_ZN27ExtensionFunctionDispatcher23CreateExtensionFunctionERK31ExtensionHostMsg_Request_ParamsPKN10extensions9ExtensionEiRKNS3_10ProcessMapEPNS3_12ExtensionAPIEPvPN3IPC6SenderEPN7content14RenderViewHostEi
5395 fun:_ZN27ExtensionFunctionDispatcher8DispatchERK31ExtensionHostMsg_Request_ParamsPN7content14RenderViewHostE
5396 fun:_ZN10extensions13ExtensionHost9OnRequestERK31ExtensionHostMsg_Request_Params
5397}
5398{
5399 bug_145733
5400 Memcheck:Leak
5401 fun:_Znw*
5402 fun:_ZN25ExtensionInstallUIDefault35GetNewThemeInstalledInfoBarDelegateEP11TabContentsPKN10extensions9ExtensionERKSsb
5403 fun:_ZN25ExtensionInstallUIDefault16ShowThemeInfoBarERKSsbPKN10extensions9ExtensionEP7Profile
5404 fun:_ZN25ExtensionInstallUIDefault16OnInstallSuccessEPKN10extensions9ExtensionEP8SkBitmap
5405 fun:_ZN22ExtensionInstallPrompt16OnInstallSuccessEPKN10extensions9ExtensionEP8SkBitmap
5406 fun:_ZN10extensions12CrxInstaller25ReportSuccessFromUIThreadEv
5407}
5408{
5409 bug_145735
5410 Memcheck:Leak
5411 fun:_Znw*
5412 fun:_ZN9__gnu_cxx13new_allocatorIcE8allocateEmPKv
5413 fun:_ZNSt12_Vector_baseIcSaIcEE11_M_allocateEm
5414 fun:_ZNSt12_Vector_baseIcSaIcEEC2EmRKS0_
5415 fun:_ZNSt6vectorIcSaIcEEC1EmRKcRKS0_
5416 fun:_ZN4base5files12_GLOBAL__N_121InotifyReaderCallbackEPNS1_13InotifyReaderEii
5417}
5418{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005419 bug_145747a
5420 Memcheck:Leak
5421 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005422 fun:_ZN24TranslateInfoBarDelegate19CreateErrorDelegateEN15TranslateErrors4TypeEP14InfoBarServiceP11PrefServiceRKSsS7_
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005423 fun:_ZN16TranslateManager14PageTranslatedEPN7content11WebContentsEP21PageTranslatedDetails
5424 fun:_ZN16TranslateManager7ObserveEiRKN7content18NotificationSourceERKNS0_19NotificationDetailsE
5425 fun:_ZN23NotificationServiceImpl6NotifyEiRKN7content18NotificationSourceERKNS0_19NotificationDetailsE
5426 fun:_ZN18TranslateTabHelper16OnPageTranslatedEiRKSsS1_N15TranslateErrors4TypeE
5427}
5428{
5429 bug_145747b
5430 Memcheck:Leak
5431 fun:_Znw*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005432 fun:_ZN24TranslateInfoBarDelegate19CreateErrorDelegateEN15TranslateErrors4TypeEP14InfoBarServiceP11PrefServiceRKSsS7_
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005433 fun:_ZN16TranslateManager18OnURLFetchCompleteEPKN3net10URLFetcherE
5434 fun:_ZN20TranslateManagerTest31SimulateTranslateScriptURLFetchEb
5435}
5436{
5437 bug_146464
5438 Memcheck:Leak
5439 fun:realloc
5440 fun:add_codeset.isra.10
5441 ...
5442 fun:XCreatePixmap
5443 fun:XCreateBitmapFromData
5444 ...
5445 fun:_ZN4aura19RootWindowHostLinuxC1EPNS_22RootWindowHostDelegateERKN3gfx4RectE
5446}
5447{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005448 bug_146950
5449 Memcheck:Leak
5450 fun:malloc
5451 fun:get_peer_sock_name
5452 fun:_xcb_get_auth_info
5453 fun:xcb_connect_to_display_with_auth_info
5454 fun:_XConnectXCB
5455 fun:XOpenDisplay
5456 fun:_ZN4base18MessagePumpAuraX1118GetDefaultXDisplayEv
5457}
5458{
5459 bug_147755_a
5460 Memcheck:Leak
5461 fun:_Znw*
5462 fun:_ZN12PluginFinder18GetPluginInstallerERKN6webkit13WebPluginInfoE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005463 fun:_ZN11PluginPrefs30EnablePluginIfPossibleCallbackE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005464}
5465{
5466 bug_147755_b
5467 Memcheck:Leak
5468 fun:_Znw*
5469 fun:_ZN12PluginFinder17GetPluginMetadataERKN6webkit13WebPluginInfoE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005470 fun:_ZN11PluginPrefs12EnablePluginE*
5471 fun:_ZN15PluginPrefsTest25EnablePluginSynchronouslyE*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005472 fun:_ZN44PluginPrefsTest_UnifiedPepperFlashState_Test8TestBodyEv
5473}
5474{
5475 bug_148637_a
5476 Memcheck:Unaddressable
5477 ...
5478 fun:_ZN9SkPathRef6EditorC1EP12SkAutoTUnrefIS_Eii
5479 fun:_ZN6SkPath10incReserveEj
5480 fun:_ZN7WebCoreL23setPathFromConvexPointsEP6SkPathmPKNS_10FloatPointE
5481 fun:_ZN7WebCore15GraphicsContext17drawConvexPolygonEmPKNS_10FloatPointEb
5482}
5483{
5484 bug_148637_b
5485 Memcheck:Unaddressable
5486 fun:_Z13sk_atomic_incPi
5487 fun:_ZNK8SkRefCnt3refEv
5488 fun:_ZN9SkPathRef11CreateEmptyEv
5489 fun:_ZN6SkPathC1Ev
5490 fun:_ZN11SkClipStack3RecC1EiRK6SkRectN8SkRegion2OpEb
5491 fun:_ZN11SkClipStack11clipDevRectERK6SkRectN8SkRegion2OpEb
5492 fun:_ZN8SkCanvas8clipRectERK6SkRectN8SkRegion2OpEb
5493 fun:_ZN7WebCore15GraphicsContext4clipERKNS_9FloatRectE
5494 fun:_ZN7WebCore15GraphicsContext4clipERKNS_7IntRectE
5495}
5496{
5497 bug_149734a
5498 Memcheck:Leak
5499 fun:malloc
5500 fun:_ZN3WTF10fastMallocEm
5501 fun:_ZN3WTF16VectorBufferBaseIN7WebCore9AttributeEE14allocateBufferEm
5502 fun:_ZN3WTF12VectorBufferIN7WebCore9AttributeELm4EE14allocateBufferEm
5503 fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE22reserveInitialCapacityEm
5504 fun:_ZN7WebCore20ElementAttributeData13cloneDataFromERKS0_RKNS_7ElementERS3_
5505}
5506{
5507 bug_149734b
5508 Memcheck:Leak
5509 fun:malloc
5510 fun:_ZN3WTF10fastMallocEm
5511 fun:_ZN3WTF16VectorBufferBaseIN7WebCore9AttributeEE14allocateBufferEm
5512 fun:_ZN3WTF12VectorBufferIN7WebCore9AttributeELm4EE14allocateBufferEm
5513 fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE15reserveCapacityEm
5514 fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE14expandCapacityEm
5515 fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE14expandCapacityEmPKS2_
5516 fun:_ZN3WTF6VectorIN7WebCore9AttributeELm4EE14appendSlowCaseIS2_EEvRKT_
5517 fun:_ZN7WebCore20ElementAttributeData12addAttributeERKNS_9AttributeEPNS_7ElementENS_30SynchronizationOfLazyAttributeE
5518}
5519{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01005520 bug_150995
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005521 Memcheck:Leak
5522 fun:_Zna*
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01005523 fun:_ZN14webkit_support12_GLOBAL__N_113DoLibpngWrite*
5524 fun:_ZN14webkit_support26EncodeWithCompressionLevel*
5525 fun:_ZN14webkit_support6EncodeEPKhNS_12_GLOBAL__N_111ColorFormat*
5526 fun:_ZN14webkit_support25EncodeBGRAPNGWithChecksum*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005527 fun:_ZNK9TestShell9dumpImageEP8SkCanvas
5528 fun:_ZN9TestShell4dumpEv
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01005529 fun:_ZN9TestShell12testFinishedEP11WebViewHost
5530 fun:_ZN11WebViewHost12testFinishedEv
5531 fun:_ZN13WebTestRunner10TestRunner9WorkQueue15processWorkSoonEv
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005532}
5533{
5534 bug_151006
5535 Memcheck:Leak
5536 fun:malloc
5537 fun:uprv_malloc_46
5538 fun:_ZN6icu_467UMemorynwEm
5539 fun:_ZN6icu_4610DateFormat6createENS0_6EStyleES1_RKNS_6LocaleE
5540 fun:_ZN6icu_4610DateFormat22createDateTimeInstanceENS0_6EStyleES1_RKNS_6LocaleE
5541 fun:udat_open_46
5542 fun:_ZNK7WebCore9LocaleICU14openDateFormatE16UDateFormatStyleS1_
5543 fun:_ZN7WebCore9LocaleICU24initializeDateTimeFormatEv
5544 fun:_ZN7WebCore9LocaleICU15shortTimeFormatEv
5545 fun:_ZN7WebCore19DateTimeEditElement6layoutERKNS_9StepRangeERKNS_14DateComponentsERNS_9LocalizerE
5546 fun:_ZN7WebCore19DateTimeEditElement13setEmptyValueERKNS_9StepRangeERKNS_14DateComponentsERNS_9LocalizerE
5547 fun:_ZN7WebCore13TimeInputType20updateInnerTextValueEv
5548 fun:_ZN7WebCore13TimeInputType19createShadowSubtreeEv
5549 fun:_ZN7WebCore16HTMLInputElement10updateTypeEv
5550 fun:_ZN7WebCore16HTMLInputElement14parseAttributeERKNS_9AttributeE
5551 fun:_ZN7WebCore7Element16attributeChangedERKNS_9AttributeE
5552 fun:_ZN7WebCore13StyledElement16attributeChangedERKNS_9AttributeE
5553 fun:_ZN7WebCore7Element19parserSetAttributesERKN3WTF6VectorINS_9AttributeELm0EEENS_27FragmentScriptingPermissionE
5554 fun:_ZN7WebCore20HTMLConstructionSite17createHTMLElementEPNS_15AtomicHTMLTokenE
5555 fun:_ZN7WebCore20HTMLConstructionSite28insertSelfClosingHTMLElementEPNS_15AtomicHTMLTokenE
5556 fun:_ZN7WebCore15HTMLTreeBuilder24processStartTagForInBodyEPNS_15AtomicHTMLTokenE
5557 fun:_ZN7WebCore15HTMLTreeBuilder15processStartTagEPNS_15AtomicHTMLTokenE
5558}
5559{
5560 bug_151007
5561 Memcheck:Leak
5562 fun:malloc
5563 fun:_ZN3WTF10fastMallocEm
5564 fun:_ZN3WTF10RefCountedIN7WebCore15AtomicHTMLTokenEEnwEm
5565 fun:_ZN7WebCore15AtomicHTMLToken6createERNS_9HTMLTokenE
5566 fun:_ZN7WebCore15HTMLTreeBuilder22constructTreeFromTokenERNS_9HTMLTokenE
5567 fun:_ZN7WebCore18HTMLDocumentParser13pumpTokenizerENS0_15SynchronousModeE
5568 fun:_ZN7WebCore18HTMLDocumentParser23pumpTokenizerIfPossibleENS0_15SynchronousModeE
5569 fun:_ZN7WebCore18HTMLDocumentParser6insertERKNS_15SegmentedStringE
5570 fun:_ZN7WebCore18HTMLDocumentParser21parseDocumentFragmentERKN3WTF6StringEPNS_16DocumentFragmentEPNS_7ElementENS_27FragmentScriptingPermissionE
5571 fun:_ZN7WebCore16DocumentFragment9parseHTMLERKN3WTF6StringEPNS_7ElementENS_27FragmentScriptingPermissionE
5572 fun:_ZN7WebCore31createFragmentForInnerOuterHTMLERKN3WTF6StringEPNS_7ElementENS_27FragmentScriptingPermissionERi
5573 fun:_ZN7WebCore11HTMLElement12setInnerHTMLERKN3WTF6StringERi
5574 fun:_ZN7WebCore21HTMLElementV8InternalL19innerHTMLAttrSetterEN2v85LocalINS1_6StringEEENS2_INS1_5ValueEEERKNS1_12AccessorInfoE
5575 fun:_ZN2v88internal21StoreCallbackPropertyENS0_9ArgumentsEPNS0_7IsolateE
5576 ...
5577 fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
5578}
5579{
5580 bug_151017
5581 Memcheck:Leak
5582 fun:_Znw*
5583 fun:_ZN19GrTextureStripAtlas8GetAtlasERKNS_4DescE
5584 fun:_ZN16GrGradientEffectC2EP9GrContextRK20SkGradientShaderBaseN8SkShader8TileModeE
5585 ...
5586 fun:_ZN12_GLOBAL__N_121skPaint2GrPaintShaderEP11SkGpuDeviceRK7SkPaintbPNS0_19SkAutoCachedTextureEP7GrPaint
5587 fun:_ZN11SkGpuDevice8drawRectERK6SkDrawRK6SkRectRK7SkPaint
5588 fun:_ZN8SkCanvas8drawRectERK6SkRectRK7SkPaint
5589 fun:_ZN7WebCore15GraphicsContext8fillRectERKNS_9FloatRectE
5590 fun:_ZN7WebCore24CanvasRenderingContext2D8fillRectEffff
5591 fun:_ZN7WebCore34CanvasRenderingContext2DV8InternalL16fillRectCallbackERKN2v89ArgumentsE
5592 fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
5593 fun:_ZN2v88internalL21Builtin_HandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
5594 ...
5595 fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
5596 fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
5597 fun:_ZN2v88Function4CallENS_6HandleINS_6ObjectEEEiPNS1_INS_5ValueEEE
5598}
5599{
5600 bug_151908
5601 Memcheck:Leak
5602 fun:_Znw*
5603 ...
5604 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
5605 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
5606 fun:_ZN14webkit_support23CreateGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesEPNS0_7WebViewE
5607 fun:_ZN11WebViewHost19createOutputSurfaceEv
5608 fun:_ZN6WebKit11WebViewImpl19createOutputSurfaceEv
5609 fun:_ZN6WebKit20WebLayerTreeViewImpl19createOutputSurfaceEv
5610}
5611{
5612 bug_155404
5613 Memcheck:Uninitialized
5614 fun:_ZN2v88internalL21ProfilerSignalHandlerEiP7siginfoPv
5615 obj:/lib/libpthread-2.11.1.so
5616}
5617{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005618 bug_156829
5619 Memcheck:Leak
5620 fun:_Znw*
5621 fun:_ZN7content23AudioInputDeviceManager23EnumerateOnDeviceThread*
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005622}
5623{
5624 bug_158510
5625 Memcheck:Uninitialized
5626 fun:_ZN7WebCore11RenderTable6layoutEv
5627 ...
5628 fun:_ZN7WebCore11RenderBlock6layoutEv
5629}
5630{
5631 bug_158514
5632 Memcheck:Uninitialized
5633 ...
5634 fun:_ZN2v88internal16ProfileGenerator16RecordTickSampleERKNS0_10TickSampleE
5635 fun:_ZN2v88internal23ProfilerEventsProcessor12ProcessTicksEj
5636 fun:_ZN2v88internal23ProfilerEventsProcessor3RunEv
5637 fun:_ZN2v88internalL11ThreadEntryEPv
5638}
5639{
Torne (Richard Coles)58218062012-11-14 11:43:16 +00005640 bug_159005
5641 Memcheck:Uninitialized
5642 fun:_ZN7WebCore13RenderMarquee18updateMarqueeStyleEv
5643 fun:_ZN7WebCore11RenderLayer12styleChangedENS_15StyleDifferenceEPKNS_11RenderStyleE
5644 fun:_ZN7WebCore22RenderLayerModelObject14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
5645 fun:_ZN7WebCore9RenderBox14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
5646 fun:_ZN7WebCore11RenderBlock14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
5647 fun:_ZN7WebCore12RenderObject8setStyleEN3WTF10PassRefPtrINS_11RenderStyleEEE
5648}
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005649{
5650 bug_160877
5651 Memcheck:Leak
5652 fun:_Znw*
5653 ...
5654 fun:_ZN7content*DummyListenSocketC1Ev
5655 fun:_ZNK7content*DummyListenSocketFactory15CreateAndListenEPN3net18StreamListenSocket8DelegateE
5656 ...
5657 fun:_ZN3net10HttpServerC1ERKNS_25StreamListenSocketFactoryEPNS0_8DelegateE
5658 fun:_ZN7content23DevToolsHttpHandlerImpl4InitEv
5659}
5660{
5661 bug_162825
5662 Memcheck:Uninitialized
5663 fun:bcmp
5664 fun:_ZNK3gpu5gles221ShaderTranslatorCache26ShaderTranslatorInitParamsltERKS2_
5665 fun:_ZNKSt4lessIN3gpu5gles221ShaderTranslatorCache26ShaderTranslatorInitParamsEEclERKS3_S6_
5666 ...
5667 fun:_ZNSt3mapIN3gpu5gles221ShaderTranslatorCache26ShaderTranslatorInitParamsEPNS1_16ShaderTranslatorESt4lessIS3_ESaISt4pairIKS3_S5_EEE4findERS9_
5668 fun:_ZN3gpu5gles221ShaderTranslatorCache13GetTranslatorE12ShShaderType12ShShaderSpecPK18ShBuiltInResourcesNS0_25ShaderTranslatorInterface22GlslImplementationTypeENS7_27GlslBuiltInFunctionBehaviorE
5669 fun:_ZN3gpu5gles216GLES2DecoderImpl26InitializeShaderTranslatorEv
5670}
5671{
5672 bug_162828
5673 Memcheck:Leak
5674 fun:malloc
5675 fun:_Z15sk_malloc_flagsmj
5676 fun:_Z15sk_malloc_throwm
5677 fun:_ZN6SkMask10AllocImageEm
5678 fun:_ZL17drawRectsIntoMaskPK6SkRectiP6SkMask
5679 fun:_ZN20SkBlurMaskFilterImpl17filterRectsToNineEPK6SkRectiRK8SkMatrixRK7SkIRectPN12SkMaskFilter9NinePatchE
5680 fun:_ZN12SkMaskFilter10filterPathERK6SkPathRK8SkMatrixRK12SkRasterClipP9SkBounderP9SkBlitterN7SkPaint5StyleE
5681 fun:_ZNK6SkDraw8drawPathERK6SkPathRK7SkPaintPK8SkMatrixb
5682}
5683{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005684 bug_163111
5685 Memcheck:Leak
5686 fun:_Znw*
5687 fun:_ZN4dbus8Response14FromMethodCallEPNS_10MethodCallE
5688 fun:_ZN8chromeos20IBusPanelServiceImpl*
5689}
5690{
5691 bug_163922
5692 Memcheck:Leak
5693 fun:_Znw*
5694 fun:_ZN10extensions16SettingsFrontendC1ERK13scoped_refptrINS_22SettingsStorageFactoryEEP7Profile
5695 fun:_ZN10extensions16SettingsFrontend6CreateEP7Profile
5696 fun:_ZN16ExtensionServiceC1E*
5697 fun:_ZN10extensions19ExtensionSystemImpl6Shared4InitEb
5698 fun:_ZN10extensions19ExtensionSystemImpl21InitForRegularProfileEb
5699 fun:_ZN14ProfileManager22DoFinalInitForServicesEP7Profileb
5700 fun:_ZN14ProfileManager11DoFinalInitEP7Profileb
5701 fun:_ZN14ProfileManager10AddProfileEP7Profile
5702 fun:_ZN14ProfileManager10GetProfileE*
5703}
5704{
5705 bug_163924
5706 Memcheck:Leak
5707 fun:_Znw*
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01005708 fun:_ZN28JSONAsynchronousUnpackerImpl22StartProcessOnIOThreadEN7content13BrowserThread2IDERKSs
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005709}
5710{
5711 bug_164176
5712 Memcheck:Leak
5713 fun:_Znw*
5714 fun:_ZN18BrowserProcessImpl21PreMainMessageLoopRunEv
5715 fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
5716 fun:_ZN22ChromeBrowserMainParts21PreMainMessageLoopRunEv
5717 fun:_ZN7content15BrowserMainLoop13CreateThreadsEv
5718 fun:_ZN7content21BrowserMainRunnerImpl10InitializeERKNS_18MainFunctionParamsE
5719 fun:_ZN7content11BrowserMainERKNS_18MainFunctionParamsE
5720 fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
5721 fun:_ZN7content21ContentMainRunnerImpl3RunEv
5722 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
5723 fun:ChromeMain
5724}
5725{
5726 bug_164178
5727 Memcheck:Leak
5728 fun:_Znw*
5729 fun:_ZN3net25MultiThreadedCertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_6CRLSetEPNS_16CertVerifyResultERKN4base8CallbackIFviEEEPPvRKNS_11BoundNetLogE
5730 fun:_ZN3net25SingleRequestCertVerifier6VerifyEPNS_15X509CertificateERKSsiPNS_6CRLSetEPNS_16CertVerifyResultERKN4base8CallbackIFviEEERKNS_11BoundNetLogE
5731 fun:_ZN3net18SSLClientSocketNSS12DoVerifyCertEi
5732 fun:_ZN3net18SSLClientSocketNSS15DoHandshakeLoopEi
5733 fun:_ZN3net18SSLClientSocketNSS21OnHandshakeIOCompleteEi
5734}
5735{
5736 bug_164179
5737 Memcheck:Leak
5738 fun:_Znw*
5739 ...
5740 fun:_ZN3net10URLFetcher6CreateERK4GURLNS0_11RequestTypeEPNS_18URLFetcherDelegateE
5741 fun:_ZN18WebResourceService10StartFetchEv
5742}
5743{
5744 bug_164198
5745 Memcheck:Uninitialized
5746 fun:_ZN7WebCore9RenderBox15paintFillLayersERKNS_9PaintInfoERKNS_5ColorEPKNS_9FillLayerERKNS_10LayoutRectENS_24BackgroundBleedAvoidanceENS_17CompositeOperatorEPNS_12RenderObjectE
5747 ...
5748 fun:_ZN7WebCore11RenderBlock11paintObjectERNS_9PaintInfoERKNS_11LayoutPointE
5749 fun:_ZN7WebCore11RenderBlock5paintERNS_9PaintInfoERKNS_11LayoutPointE
5750 fun:_ZN7WebCore11RenderLayer18paintLayerContentsEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
5751 fun:_ZN7WebCore11RenderLayer31paintLayerContentsAndReflectionEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
5752 fun:_ZN7WebCore11RenderLayer10paintLayerEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
5753 fun:_ZN7WebCore11RenderLayer9paintListEPN3WTF6VectorIPS0_Lm0EEEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
5754 fun:_ZN7WebCore11RenderLayer18paintLayerContentsEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
5755 fun:_ZN7WebCore11RenderLayer31paintLayerContentsAndReflectionEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
5756 fun:_ZN7WebCore11RenderLayer10paintLayerEPNS_15GraphicsContextERKNS0_17LayerPaintingInfoEj
5757}
5758{
5759 bug_166470
5760 Memcheck:Leak
5761 fun:_Znw*
5762 fun:_ZN4base4BindIMN11dom_storage17DomStorageContextEFvRK4GURLE13scoped_refptrIS2_ES3_EENS_8CallbackINS_8internal9BindStateINSB_13FunctorTraitsIT_E12RunnableTypeENSF_7RunTypeEFvNSB_19CallbackParamTraitsIT0_E11StorageTypeENSI_IT1_E11StorageTypeEEE14UnboundRunTypeEEESE_RKSJ_RKSM_
5763 fun:_ZN7content21DOMStorageContextImpl18DeleteLocalStorageERK4GURL
Ben Murdoch32409262013-08-07 11:04:47 +01005764 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005765 fun:_ZN10extensions11DataDeleter13StartDeletingEP7ProfileRKSsRK4GURL
5766 fun:_ZN16ExtensionService18UninstallExtensionESsbPSbItN4base20string16_char_traitsESaItEE
5767}
5768{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005769 bug_166470c
5770 Memcheck:Leak
5771 fun:_Znw*
5772 fun:_ZN11dom_storage19DomStorageNamespace24DeleteLocalStorageOriginERK4GURL
5773 fun:_ZN11dom_storage17DomStorageContext18DeleteLocalStorageERK4GURL
5774}
5775{
5776 bug_166470d
5777 Memcheck:Leak
5778 ...
5779 fun:_ZN7fileapi26GetOriginIdentifierFromURLERK4GURL
5780 fun:_ZN11dom_storage14DomStorageArea26DatabaseFileNameFromOriginERK4GURL
5781 fun:_ZN11dom_storage14DomStorageAreaC1E*
5782 fun:_ZN11dom_storage19DomStorageNamespace24DeleteLocalStorageOriginERK4GURL
5783 fun:_ZN11dom_storage17DomStorageContext18DeleteLocalStorageERK4GURL
5784}
5785{
5786 bug_166709
5787 Memcheck:Leak
5788 fun:_Znw*
5789 fun:_ZN4base4BindIMNS_12_GLOBAL__N_121PostTaskAndReplyRelayEFvvENS_8internal17UnretainedWrapper*
5790 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8Location*
5791 ...
5792 fun:_ZN16ExtensionService12AddExtensionEPKN10extensions9ExtensionE
5793 fun:_ZN52BackgroundApplicationListModelTest_ExplicitTest_Test8TestBodyEv
5794}
5795{
5796 bug_166709b
5797 Memcheck:Leak
5798 fun:_Znw*
5799 fun:_ZN4base12_GLOBAL__N_112CreateThreadEmbPNS_14PlatformThread8DelegateEPmNS_14ThreadPriorityE
5800 fun:_ZN4base14PlatformThread6CreateEmPNS0_8DelegateEPm
5801 fun:_ZN4base12SimpleThread5StartEv
5802 fun:_ZN4base19SequencedWorkerPool6WorkerC1ERK13scoped_refptrIS0_EiRKSs
5803 fun:_ZN4base19SequencedWorkerPool5Inner30FinishStartingAdditionalThreadEi
5804 fun:_ZN4base19SequencedWorkerPool5Inner10ThreadLoopEPNS0_6WorkerE
5805 fun:_ZN4base19SequencedWorkerPool6Worker3RunEv
5806 fun:_ZN4base12SimpleThread10ThreadMainEv
5807 fun:_ZN4base12_GLOBAL__N_110ThreadFuncEPv
5808}
5809{
5810 bug_166709c
5811 Memcheck:Leak
5812 fun:_Znw*
5813 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
5814 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
5815 fun:_ZN7content13BrowserThread28PostBlockingPoolTaskAndReplyERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESA_
5816 fun:_ZN10extensions11ImageLoader15LoadImagesAsyncEPKNS_9ExtensionERKSt6vectorINS0_19ImageRepresentationESaIS5_EERKN4base8CallbackIFvRKN3gfx5ImageEEEE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005817}
5818{
5819 bug_166818
5820 Memcheck:Leak
5821 fun:malloc
5822 fun:g_malloc
5823 ...
5824 fun:gdk_pixbuf_loader_load_module
5825 fun:gdk_pixbuf_loader_close
5826 fun:_ZN2ui12_GLOBAL__N_110LoadPixbufEPN4base22RefCountedStaticMemoryEb
5827 fun:_ZN2ui14ResourceBundle19GetNativeImageNamedEiNS0_8ImageRTLE
5828 fun:_ZN2ui14ResourceBundle19GetNativeImageNamedEi
5829}
5830{
5831 bug_166819
5832 Memcheck:Leak
5833 fun:_Znw*
5834 fun:_ZNK3sql10Connection21GetUntrackedStatementEPKc
5835 fun:_ZNK3sql10Connection21DoesTableOrIndexExistEPKcS2_
5836 fun:_ZNK3sql10Connection14DoesTableExistEPKc
5837 fun:_ZN3sql9MetaTable14DoesTableExistEPNS_10ConnectionE
5838 ...
5839 fun:_ZN7history16TopSitesDatabase4InitE*
5840 fun:_ZN7history15TopSitesBackend16InitDBOnDBThreadE*
5841}
5842{
5843 bug_166819b
5844 Memcheck:Leak
5845 fun:_Znw*
5846 fun:_ZNK3sql10Connection21GetUntrackedStatementEPKc
5847 fun:_ZNK3sql10Connection21DoesTableOrIndexExistEPKcS2_
5848 fun:_ZNK3sql10Connection14DoesTableExistEPKc
5849 fun:_ZN7history17ShortcutsDatabase11EnsureTableEv
5850 fun:_ZN7history17ShortcutsDatabase4InitEv
5851 fun:_ZN7history16ShortcutsBackend12InitInternalEv
5852}
5853{
5854 bug_166976a
5855 Memcheck:Leak
5856 fun:_Znw*
5857 fun:_ZN4base19SequencedWorkerPool5Inner30FinishStartingAdditionalThreadEi
5858 fun:_ZN4base19SequencedWorkerPool5Inner10ThreadLoopEPNS0_6WorkerE
5859 fun:_ZN4base19SequencedWorkerPool6Worker3RunEv
5860 fun:_ZN4base12SimpleThread10ThreadMainEv
5861 fun:_ZN4base12_GLOBAL__N_110ThreadFuncEPv
5862}
5863{
5864 bug_166976b
5865 Memcheck:Leak
5866 fun:_Znw*
5867 fun:_ZN9__gnu_cxx13new_allocatorISt10_List_nodeIPN4base13WaitableEvent6WaiterEEE8allocateEmPKv
5868 fun:_ZNSt10_List_baseIPN4base13WaitableEvent6WaiterESaIS3_EE11_M_get_nodeEv
5869 fun:_ZNSt4listIPN4base13WaitableEvent6WaiterESaIS3_EE14_M_create_nodeERKS3_
5870 fun:_ZNSt4listIPN4base13WaitableEvent6WaiterESaIS3_EE9_M_insertESt14_List_iteratorIS3_ERKS3_
5871 fun:_ZNSt4listIPN4base13WaitableEvent6WaiterESaIS3_EE9push_backERKS3_
5872 fun:_ZN4base13WaitableEvent7EnqueueEPNS0_6WaiterE
5873 fun:_ZN4base13WaitableEvent9TimedWaitERKNS_9TimeDeltaE
5874 fun:_ZN4base13WaitableEvent4WaitEv
Ben Murdoch32409262013-08-07 11:04:47 +01005875 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005876 fun:_ZN4base19SequencedWorkerPool6WorkerC1ERK13scoped_refptrIS0_EiRKSs
5877 fun:_ZN4base19SequencedWorkerPool5Inner30FinishStartingAdditionalThreadEi
5878 fun:_ZN4base19SequencedWorkerPool5Inner10ThreadLoopEPNS0_6WorkerE
5879 fun:_ZN4base19SequencedWorkerPool6Worker3RunEv
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005880}
5881{
5882 bug_167175a
5883 Memcheck:Leak
5884 ...
5885 fun:g_*
5886 ...
5887 fun:_ZN16BrowserWindowGtk11InitWidgetsEv
5888 fun:_ZN16BrowserWindowGtk4InitEv
5889 fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
5890}
5891{
5892 bug_167175b
5893 Memcheck:Leak
5894 fun:malloc
5895 obj:/lib/libpng12.so.0.42.0
5896 fun:png_create_read_struct_2
5897 ...
5898 fun:_ZN15ReloadButtonGtkC1EP18LocationBarViewGtkP7Browser
5899 fun:_ZN17BrowserToolbarGtk4InitEP10_GtkWindow
5900 fun:_ZN16BrowserWindowGtk11InitWidgetsEv
5901 fun:_ZN16BrowserWindowGtk4InitEv
5902 fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
5903}
5904{
5905 bug_167175d
5906 Memcheck:Leak
5907 fun:_Znw*
5908 fun:_ZN9__gnu_cxx13new_allocatorISbItN4base20string16_char_traitsESaItEEE8allocateEmPKv
5909 fun:_ZNSt12_Vector_baseISbItN4base20string16_char_traitsESaItEESaIS3_EE11_M_allocateEm
5910 ...
5911 fun:_ZN15WrenchMenuModel5BuildEbb
5912 fun:_ZN15WrenchMenuModelC1EPN2ui19AcceleratorProviderEP7Browserbb
5913 fun:_ZN17BrowserToolbarGtkC1EP7BrowserP16BrowserWindowGtk
5914 fun:_ZN16BrowserWindowGtk11InitWidgetsEv
5915 fun:_ZN16BrowserWindowGtk4InitEv
5916 fun:_ZN13BrowserWindow19CreateBrowserWindowEP7Browser
5917}
5918{
5919 bug_164781a
5920 Memcheck:Uninitialized
5921 ...
5922 fun:vp8cx_encode_*_macroblock
5923 fun:thread_encoding_proc
5924}
5925{
5926 bug_167481b
5927 Memcheck:Uninitialized
5928 ...
5929 fun:encode_frame_to_data_rate
5930 fun:vp8_get_compressed_data
5931 fun:vp8e_encode
5932 fun:vpx_codec_encode
5933}
5934{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005935 bug_170340
5936 Memcheck:Uninitialized
5937 fun:_ZN3WTF12AtomicString3addEPKt
5938 fun:_ZN3WTF12AtomicStringC1EPKt
5939 fun:_ZN7WebCore18HTMLPreloadScanner12processTokenEv
5940 fun:_ZN7WebCore18HTMLPreloadScanner4scanEv
5941 fun:_ZN7WebCore18HTMLDocumentParser13pumpTokenizerENS0_15SynchronousModeE
5942 fun:_ZN7WebCore18HTMLDocumentParser23pumpTokenizerIfPossibleENS0_15SynchronousModeE
5943 fun:_ZN7WebCore18HTMLDocumentParser6appendERKNS_15SegmentedStringE
5944 fun:_ZN7WebCore25DecodedDataDocumentParser5flushEPNS_14DocumentWriterE
5945 fun:_ZN7WebCore14DocumentWriter3endEv
5946 fun:_ZN7WebCore14DocumentLoader15finishedLoadingEv
5947}
5948{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005949 bug_171722
5950 Memcheck:Leak
5951 fun:_Znw*
5952 fun:_ZN3net12_GLOBAL__N_120URLRequestFtpJobTest9AddSocketEPNS_13MockReadWriteILNS_17MockReadWriteTypeE0EEEmPNS2_ILS3_1EEEm
5953}
5954{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005955 bug_172005
5956 Memcheck:Leak
5957 fun:_Znw*
5958 fun:_ZN7leveldb10VersionSet11LogAndApplyEPNS_11VersionEditEPNS_4port5MutexE
5959 fun:_ZN7leveldb2DB4OpenERKNS_7OptionsERKSsPPS0_
5960 fun:_ZN11dom_storage22SessionStorageDatabase9TryToOpenEPPN7leveldb2DBE
5961 fun:_ZN11dom_storage22SessionStorageDatabase8LazyOpenEb
5962 fun:_ZN11dom_storage22SessionStorageDatabase24ReadNamespacesAndOriginsEPSt3mapISsSt6vectorI4GURLSaIS3_EESt4lessISsESaISt4pairIKSsS5_EEE
5963 fun:_ZN11dom_storage17DomStorageContext36FindUnusedNamespacesInCommitSequenceERKSt3setISsSt4lessISsESaISsEES7_
5964}
5965{
5966 bug_172005b
5967 Memcheck:Leak
5968 fun:_Znw*
5969 fun:_ZN7leveldb6DBImplC1ERKNS_7OptionsERKSs
5970 fun:_ZN7leveldb2DB4OpenERKNS_7OptionsERKSsPPS0_
5971 fun:_ZN11dom_storage22SessionStorageDatabase9TryToOpenEPPN7leveldb2DBE
5972 fun:_ZN11dom_storage22SessionStorageDatabase8LazyOpenEb
5973 fun:_ZN11dom_storage22SessionStorageDatabase24ReadNamespacesAndOriginsEPSt3mapISsSt6vectorI4GURLSaIS3_EESt4lessISsESaISt4pairIKSsS5_EEE
5974 fun:_ZN11dom_storage17DomStorageContext36FindUnusedNamespacesInCommitSequenceERKSt3setISsSt4lessISsESaISsEES7_
5975}
5976{
5977 bug_172025
5978 Memcheck:Uninitialized
5979 fun:_ZN11WebViewHost19didCreateDataSourceEPN6WebKit8WebFrameEPNS0_13WebDataSourceE
5980 fun:_ZN6WebKit21FrameLoaderClientImpl20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
5981 fun:_ZN7WebCore11FrameLoader4initEv
5982 fun:_ZN7WebCore5Frame4initEv
5983 fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPN7WebCore4PageE
5984 fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
5985 fun:_ZN9TestShell15createNewWindowERKN6WebKit6WebURLEP16DRTDevToolsAgentPN13WebTestRunner17WebTestInterfacesE
5986 fun:_ZN9TestShell16createMainWindowEv
5987 fun:_ZN9TestShell10initializeEv
5988}
5989{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00005990 bug_172884
5991 Memcheck:Leak
5992 fun:_Znw*
5993 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKiSt3setIPN10extensions15DeclarativeRuleINS5_16ContentConditionENS5_13ContentActionEEESt4lessISA_ESaISA_EEEEE8allocateEmPKv
5994 ...
5995 fun:_ZNSt3mapIiSt3setIPN10extensions15DeclarativeRuleINS1_16ContentConditionENS1_13ContentActionEEESt4lessIS6_ESaIS6_EES7_IiESaISt4pairIKiSA_EEE6insertESt17_Rb_tree_iteratorISE_ERKSE_
5996 fun:_ZNSt3mapIiSt3setIPN10extensions15DeclarativeRuleINS1_16ContentConditionENS1_13ContentActionEEESt4lessIS6_ESaIS6_EES7_IiESaISt4pairIKiSA_EEEixERSD_
5997 fun:_ZN10extensions20ContentRulesRegistry5ApplyEPN7content11WebContentsERKSt6vectorISsSaISsEE
5998 fun:_ZN10extensions20ContentRulesRegistry20DidNavigateMainFrameEPN7content11WebContentsERKNS1_20LoadCommittedDetailsERKNS1_19FrameNavigateParamsE
5999 fun:_ZN10extensions9TabHelper20DidNavigateMainFrameERKN7content20LoadCommittedDetailsERKNS1_19FrameNavigateParamsE
6000 fun:_ZN7content15WebContentsImpl30DidNavigateMainFramePostCommitERKNS_20LoadCommittedDetailsERK32ViewHostMsg_FrameNavigate_Params
6001 fun:_ZN7content15WebContentsImpl11DidNavigateEPNS_14RenderViewHostERK32ViewHostMsg_FrameNavigate_Params
6002 fun:_ZN7content18RenderViewHostImpl10OnNavigateERKN3IPC7MessageE
6003 fun:_ZN7content18RenderViewHostImpl17OnMessageReceivedERKN3IPC7MessageE
6004 fun:_ZN7content21RenderProcessHostImpl17OnMessageReceivedERKN3IPC7MessageE
6005 fun:_ZN3IPC12ChannelProxy7Context17OnDispatchMessageERKNS_7MessageE
6006}
6007{
6008 bug_173096
6009 Memcheck:Uninitialized
6010 fun:bcmp
6011 fun:_ZN2cc19LayerTreeDebugState5equalERKS0_S2_
6012 fun:_ZN2cc13LayerTreeHost13setDebugStateERKNS_19LayerTreeDebugStateE
6013 fun:_ZN6WebKit20WebLayerTreeViewImpl*set*
6014 fun:_ZN6WebKit11WebViewImpl33setIsAcceleratedCompositingActiveEb
6015 fun:_ZN6WebKit11WebViewImpl20setRootGraphicsLayerEPN7WebCore13GraphicsLayerE
6016 fun:_ZN6WebKit16ChromeClientImpl23attachRootGraphicsLayerEPN7WebCore5FrameEPNS1_13GraphicsLayerE
6017 fun:_ZN7WebCore21RenderLayerCompositor15attachRootLayerENS0_19RootLayerAttachmentE
6018 fun:_ZN7WebCore21RenderLayerCompositor15ensureRootLayerEv
6019 fun:_ZN7WebCore21RenderLayerCompositor21enableCompositingModeEb
6020 fun:_ZN7WebCore21RenderLayerCompositor13updateBackingEPNS_11RenderLayerENS0_24CompositingChangeRepaintE
6021 fun:_ZN7WebCore21RenderLayerCompositor27updateLayerCompositingStateEPNS_11RenderLayerENS0_24CompositingChangeRepaintE
6022 fun:_ZN7WebCore11RenderLayer12styleChangedENS_15StyleDifferenceEPKNS_11RenderStyleE
6023 fun:_ZN7WebCore22RenderLayerModelObject14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
6024 fun:_ZN7WebCore9RenderBox14styleDidChangeENS_15StyleDifferenceEPKNS_11RenderStyleE
6025}
6026{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006027 bug_175100
6028 Memcheck:Leak
6029 ...
6030 fun:_ZN20OneClickSigninHelper14DidStopLoadingEPN7content14RenderViewHostE
6031 fun:_ZN*OneClickSigninHelperTest*
6032}
6033{
6034 bug_175815
6035 Memcheck:Leak
6036 fun:_Znw*
6037 fun:_ZN4base5Value18CreateIntegerValueEi
6038 fun:_ZNK4base16FundamentalValue8DeepCopyEv
6039 fun:_ZN4base8internal12_GLOBAL__N_125DictionaryHiddenRootValue26RemoveWithoutPathExpansionERKSsPPNS_5ValueE
6040 fun:_ZN4base15DictionaryValue6RemoveERKSsPPNS_5ValueE
6041 fun:_ZN32PluginFinderTest_JsonSyntax_Test8TestBodyEv
6042}
6043{
6044 bug_175823
6045 Memcheck:Leak
6046 ...
6047 fun:_ZN18ValueStoreFrontend*
6048}
6049{
6050 bug_175985
6051 Memcheck:Uninitialized
6052 fun:_ZN2cc13LayerTreeHost13setDebugStateERKNS_19LayerTreeDebugStateE
6053 ...
6054 fun:_ZN6WebKit20WebLayerTreeViewImpl*
6055}
6056{
6057 bug_176270
6058 Memcheck:Uninitialized
6059 fun:_ZNK2cc19LayerTreeDebugState20recordRenderingStatsEv
6060}
6061{
6062 bug_176616_a
6063 Memcheck:Uninitialized
6064 fun:_ZN13WebTestRunner16WebTestProxyBase19didCreateDataSourceEPN6WebKit8WebFrameEPNS1_13WebDataSourceE
6065 fun:_ZN13WebTestRunner12WebTestProxyI11WebViewHostP9TestShellE19didCreateDataSourceEPN6WebKit8WebFrameEPNS5_13WebDataSourceE
6066 fun:_ZN6WebKit21FrameLoaderClientImpl20createDocumentLoaderERKN7WebCore15ResourceRequestERKNS1_14SubstituteDataE
6067 fun:_ZN7WebCore11FrameLoader4initEv
6068 fun:_ZN7WebCore5Frame4initEv
6069 fun:_ZN6WebKit12WebFrameImpl21initializeAsMainFrameEPN7WebCore4PageE
6070 fun:_ZN6WebKit11WebViewImpl19initializeMainFrameEPNS_14WebFrameClientE
6071 fun:_ZN9TestShell15createNewWindowERKN6WebKit6WebURLEP16DRTDevToolsAgentPN13WebTestRunner17WebTestInterfacesE
6072 fun:_ZN9TestShell16createMainWindowEv
6073 fun:_ZN9TestShell10initializeEP25MockWebKitPlatformSupport
6074}
6075{
6076 bug_176616_b
6077 Memcheck:Uninitialized
6078 fun:_ZN13WebTestRunner10TestRunner5resetEv
6079 fun:_ZN13WebTestRunner14TestInterfaces8resetAllEv
6080 fun:_ZN13WebTestRunner17WebTestInterfaces8resetAllEv
6081 fun:_ZN9TestShell19resetTestControllerEv
6082 fun:_ZL7runTestR9TestShellR10TestParamsRKSsb
6083}
6084{
6085 bug_176619_a
6086 Memcheck:Uninitialized
6087 fun:_ZN3WTF6StringC1EPKt
6088 fun:_ZN7WebCore12WebVTTParser22constructTreeFromTokenEPNS_8DocumentE
6089 fun:_ZN7WebCore12WebVTTParser33createDocumentFragmentFromCueTextERKN3WTF6StringE
6090 fun:_ZN7WebCore12TextTrackCue20createWebVTTNodeTreeEv
6091 fun:_ZN7WebCore12TextTrackCue22createCueRenderingTreeEv
6092 fun:_ZN7WebCore12TextTrackCue17updateDisplayTreeEf
6093}
6094{
6095 bug_176619_b
6096 Memcheck:Uninitialized
6097 fun:_ZN7WebCore12WebVTTParser13collectDigitsERKN3WTF6StringEPj
6098 fun:_ZN7WebCore12WebVTTParser16collectTimeStampERKN3WTF6StringEPj
6099 fun:_ZN7WebCore12WebVTTParser22constructTreeFromTokenEPNS_8DocumentE
6100 fun:_ZN7WebCore12WebVTTParser33createDocumentFragmentFromCueTextERKN3WTF6StringE
6101 fun:_ZN7WebCore12TextTrackCue20createWebVTTNodeTreeEv
6102 fun:_ZN7WebCore12TextTrackCue22createCueRenderingTreeEv
6103 fun:_ZN7WebCore12TextTrackCue17updateDisplayTreeEf
6104}
6105{
6106 bug_176621
6107 Memcheck:Leak
6108 fun:_Znw*
6109 fun:_ZN13WebTestRunner10TestPlugin6createEPN6WebKit8WebFrameERKNS1_15WebPluginParamsEPNS_15WebTestDelegateE
6110 fun:_ZN13WebTestRunner16WebTestProxyBase12createPluginEPN6WebKit8WebFrameERKNS1_15WebPluginParamsE
6111 fun:_ZN13WebTestRunner12WebTestProxyI11WebViewHostP9TestShellE12createPluginEPN6WebKit8WebFrameERKNS5_15WebPluginParamsE
6112 fun:_ZN6WebKit21FrameLoaderClientImpl12createPluginERKN7WebCore7IntSizeEPNS1_17HTMLPlugInElementERKNS1_4KURLERKN3WTF6VectorINSA_6String*
6113 fun:_ZN7WebCore14SubframeLoader10loadPluginEPNS_22HTMLPlugInImageElementERKNS_4KURLERKN3WTF6StringERKNS6_6VectorIS7*
6114}
6115{
6116 bug_176888
6117 Memcheck:Leak
6118 fun:malloc
6119 fun:strdup
6120 fun:p11_kit_registered_module_to_name
6121 fun:gnutls_pkcs11_init
6122 fun:gnutls_global_init
6123 fun:_ZN12_GLOBAL__N_117GcryptInitializer4InitEv
6124 fun:_ZN12_GLOBAL__N_117GcryptInitializerC1Ev
6125 fun:_ZN4base25DefaultLazyInstanceTraitsIN12_GLOBAL__N_117GcryptInitializerEE3NewEPv
6126}
6127{
6128 bug_176889_a
6129 Memcheck:Uninitialized
6130 fun:inflateReset2
6131 fun:inflateInit2_
6132 fun:png_create_read_struct_2
6133 obj:/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-png.so
6134 obj:/usr/lib/x86_64-linux-gnu/libgdk_pixbuf-2.0.so.0.2600.1
6135 fun:gdk_pixbuf_loader*
6136}
6137{
6138 bug_176889_b
6139 Memcheck:Uninitialized
6140 fun:sse2_composite_over_8888_8888
6141 ...
6142 fun:gdk_pixbuf_loader_close
6143}
6144{
6145 bug_176889_c
6146 Memcheck:Uninitialized
6147 fun:sse2_combine_over_u
6148 ...
6149 fun:gdk_pixbuf_loader_close
6150}
6151{
6152 bug_176889_d
6153 Memcheck:Uninitialized
6154 obj:*/librsvg-2.so*
6155 fun:rsvg_handle_get_pixbuf_sub
6156 obj:*/libpixbufloader-svg.so
6157 fun:gdk_pixbuf_loader_close
6158}
6159{
6160 bug_176889_e
6161 Memcheck:Uninitialized
6162 fun:gdk_pixbuf_saturate_and_pixelate
6163}
6164{
6165 bug_176891a
6166 Memcheck:Leak
6167 fun:calloc
6168 fun:nss_ZAlloc
6169 fun:nssCryptokiObject_Create
6170 fun:create_objects_from_handles
6171 fun:find_objects
6172 fun:find_objects_by_template
6173 fun:nssToken_FindCertificateByEncodedCertificate
6174 fun:PK11_FindCertFromDERCertItem
6175 fun:_ZN24mozilla_security_manager12_GLOBAL__N_125nsPKCS12Blob_ImportHelper*
6176}
6177{
6178 bug_176891b
6179 Memcheck:Leak
6180 ...
6181 fun:nssPKIObject_Create
6182 fun:nssTrustDomain_FindTrustForCertificate
6183 fun:STAN_DeleteCertTrustMatchingSlot
6184 fun:SEC_DeletePermCertificate
6185 ...
6186 fun:_ZN3net15NSSCertDatabase16DeleteCertAndKeyEPKNS_15X509CertificateE
6187}
6188{
6189 bug_177213
6190 Memcheck:Leak
6191 ...
6192 fun:_ZN10extensionsL9SerializeERKSt6vectorINS_10UserScriptESaIS1_EE
6193}
6194{
6195 bug_178424a
6196 Memcheck:Param
6197 write(buf)
6198 obj:/lib*/libpthread-*.so
6199 fun:_ZN3net10FileStream7Context13WriteFileImplE13scoped_refptrINS_8IOBufferEEi
6200}
6201{
6202 bug_178424b
6203 Memcheck:Param
6204 read(buf)
6205 obj:/lib*/libpthread-*.so
6206 fun:_ZN3net10FileStream7Context12ReadFileImplE13scoped_refptrINS_8IOBufferEEi
6207}
6208{
6209 bug_179758_a
6210 Memcheck:Leak
6211 fun:_Znw*
6212 fun:_ZN4base54WeakPtrTest_NonOwnerThreadCanCopyAndAssignWeakPtr_Test8TestBodyEv
6213}
6214{
6215 bug_179758_b
6216 Memcheck:Leak
6217 fun:_Znw*
6218 fun:_ZN4base58WeakPtrTest_NonOwnerThreadCanCopyAndAssignWeakPtrBase_Test8TestBodyEv
6219}
6220{
6221 bug_180381
6222 Memcheck:Leak
6223 fun:_Znw*
6224 ...
6225 fun:_ZN4base8FilePath31StripTrailingSeparatorsInternalEv
6226 fun:_ZNK4base8FilePath7DirNameEv
6227 fun:_ZN11dom_storage18DomStorageDatabase18GetJournalFilePathERKN4base8FilePathE
6228 fun:_ZN11dom_storage27LocalStorageDatabaseAdapter11DeleteFilesEv
6229 fun:_ZN11dom_storage14DomStorageArea12DeleteOriginEv
6230 fun:_ZN11dom_storage19DomStorageNamespace24DeleteLocalStorageOriginERK4GURL
6231 fun:_ZN11dom_storage17DomStorageContext18DeleteLocalStorageERK4GURL
6232}
6233{
6234 bug_181038
6235 Memcheck:Leak
6236 ...
6237 fun:_ZN3gfx9GLApiBase17glCompileShaderFnEj
6238 fun:_ZN3gpu5gles214ProgramManager18ForceCompileShaderEPKSsPNS0_6ShaderEPNS0_16ShaderTranslatorEPNS0_11FeatureInfoE
6239 fun:_ZN3gpu5gles214ProgramManager15DoCompileShaderEPNS0_6ShaderEPNS0_16ShaderTranslatorEPNS0_11FeatureInfoE
6240 fun:_ZN3gpu5gles216GLES2DecoderImpl15DoCompileShaderEj
6241}
6242{
6243 bug_181038_link
6244 Memcheck:Leak
6245 fun:malloc
6246 ...
6247 fun:_ZN3gfx9GLApiBase15glLinkProgramFnEj
6248 fun:_ZN3gpu5gles27Program4LinkEPNS0_13ShaderManagerEPNS0_16ShaderTranslatorES5_PNS0_11FeatureInfoE
6249 fun:_ZN3gpu5gles216GLES2DecoderImpl13DoLinkProgramEj
6250 fun:_ZN3gpu5gles216GLES2DecoderImpl17HandleLinkProgramEjRKNS0_4cmds11LinkProgramE
6251 fun:_ZN3gpu5gles216GLES2DecoderImpl9DoCommandEjjPKv
6252 fun:_ZN3gpu13CommandParser14ProcessCommandEv
6253 fun:_ZN3gpu12GpuScheduler10PutChangedEv
6254 fun:_ZN6webkit3gpu18GLInProcessContext12PumpCommandsEv
6255}
6256{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006257 bug_181082
6258 Memcheck:Leak
6259 fun:_Znw*
6260 fun:_ZN12_GLOBAL__N_124ResourceLoaderBridgeImpl5StartEPN11webkit_glue20ResourceLoaderBridge4PeerE
6261 fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN6WebKit13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
6262 fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN6WebKit13WebURLRequestEPNS1_18WebURLLoaderClientE
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006263 fun:_ZN7WebCore22ResourceHandleInternal5start*
6264 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006265 fun:_ZN7WebCore14CachedResource4loadEPNS_20CachedResourceLoaderERKNS_21ResourceLoaderOptionsE
6266 fun:_ZN7WebCore20CachedResourceLoader15requestResourceENS_14CachedResource4TypeERNS_21CachedResourceRequestE
6267}
6268{
6269 bug_181680
6270 Memcheck:Leak
6271 fun:_Znw*
6272 fun:_ZN7WebCore11ScriptState10forContextEN2v85LocalINS1_7ContextEEE
6273 fun:_ZN7WebCore17ScriptDebugServer12breakProgramEN2v86HandleINS1_6ObjectEEENS2_INS1_5ValueEEE
6274 fun:_ZN7WebCore17ScriptDebugServer18handleV8DebugEventERKN2v85Debug12EventDetailsE
6275 fun:_ZN7WebCore17ScriptDebugServer20v8DebugEventCallbackERKN2v85Debug12EventDetailsE
6276 fun:_ZN2v88internal8Debugger18CallCEventCallbackENS_10DebugEventENS0_6HandleINS0_6ObjectEEES5_PNS_5Debug10ClientDataE
6277}
6278{
6279 bug_181691
6280 Memcheck:Leak
6281 fun:_Znw*
6282 ...
6283 fun:_Z10InitThreadv
6284 fun:ShCompile
6285 fun:_ZN3gpu5gles216ShaderTranslator9TranslateEPKc
6286 fun:_ZN3gpu5gles214ProgramManager18ForceCompileShaderEPKSsPNS0_6ShaderEPNS0_16ShaderTranslatorEPNS0_11FeatureInfoE
6287 fun:_ZN3gpu5gles214ProgramManager15DoCompileShaderEPNS0_6ShaderEPNS0_16ShaderTranslatorEPNS0_11FeatureInfoE
6288}
6289{
6290 bug_184264
6291 Memcheck:Leak
6292 fun:_Znw*
6293 fun:_ZN7WebCore24createDragImageFromImageEPNS_5ImageENS_27RespectImageOrientationEnumE
6294 fun:_ZN7WebCore5Frame21dragImageForSelectionEv
6295 fun:_ZN7WebCore27createDragImageForSelectionEPNS_5FrameE
6296 fun:_ZN7WebCore14DragController9startDragEPNS_5FrameERKNS_9DragStateENS_13DragOperationERKNS_18PlatformMouseEventERKNS_8IntPointE
6297 fun:_ZN7WebCore12EventHandler10handleDragERKNS_28MouseEventWithHitTestResultsENS_19CheckDragHysteresisE
6298 fun:_ZN7WebCore12EventHandler23handleMouseDraggedEventERKNS_28MouseEventWithHitTestResultsE
6299 fun:_ZN7WebCore12EventHandler20handleMouseMoveEventERKNS_18PlatformMouseEventEPNS_13HitTestResultEb
6300 fun:_ZN7WebCore12EventHandler28passMouseMoveEventToSubframeERNS_28MouseEventWithHitTestResultsEPNS_5FrameEPNS_13HitTestResultE
6301 fun:_ZN7WebCore12EventHandler20handleMouseMoveEventERKNS_18PlatformMouseEventEPNS_13HitTestResultEb
6302 fun:_ZN7WebCore12EventHandler10mouseMovedERKNS_18PlatformMouseEventE
6303}
6304{
6305 bug_189194
6306 Memcheck:Leak
6307 ...
6308 fun:*ProfileSigninConfirmationDialogTest_*
6309}
6310{
6311 bug_195160_a
6312 Memcheck:Leak
6313 fun:_Znw*
6314 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIiEE8allocateEmPKv
6315 fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE11_M_get_nodeEv
6316 fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE14_M_create_nodeERKi
6317 fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE10_M_insert_EPKSt18_Rb_tree_node_baseS8_RKi
6318 fun:_ZNSt8_Rb_treeIiiSt9_IdentityIiESt4lessIiESaIiEE16_M_insert_uniqueERKi
6319 fun:_ZNSt3setIiSt4lessIiESaIiEE6insertERKi
6320 fun:_ZN10extensions10URLMatcher14UpdateTriggersEv
6321 fun:_ZN10extensions10URLMatcher28UpdateInternalDatastructuresEv
6322 fun:_ZN10extensions10URLMatcher16AddConditionSetsERKSt6vectorI13scoped_refptrINS_22URLMatcherConditionSetEESaIS4_EE
6323 fun:_ZN12_GLOBAL__N_113FilterBuilder5BuildEv
6324 fun:_ZN12_GLOBAL__N_134LoadWhitelistsOnBlockingPoolThreadE12ScopedVectorI19ManagedModeSiteListE
6325}
6326{
6327 bug_195160_b
6328 Memcheck:Leak
6329 fun:_Znw*
6330 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeIPN10extensions13StringPatternEEE8allocateEmPKv
6331 fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE11_M_get_nodeEv
6332 fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE14_M_create_nodeERKS2_
6333 fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE10_M_insert_EPKSt18_Rb_tree_node_baseSB_RKS2_
6334 fun:_ZNSt8_Rb_treeIPN10extensions13StringPatternES2_St9_IdentityIS2_ENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE16_M_insert_uniqueERKS2_
6335 fun:_ZNSt3setIPN10extensions13StringPatternENS0_26URLMatcherConditionFactory27StringPatternPointerCompareESaIS2_EE6insertERKS2_
6336 fun:_ZN10extensions26URLMatcherConditionFactory15CreateConditionENS_19URLMatcherCondition9CriterionERKSs
6337 fun:_ZN10extensions26URLMatcherConditionFactory35CreateHostSuffixPathPrefixConditionERKSsS2_
6338 fun:_ZN6policy12URLBlacklist18CreateConditionSetEPN10extensions10URLMatcherEiRKSsS5_btS5_
6339 fun:_ZN12_GLOBAL__N_113FilterBuilder10AddPatternERKSsi
6340 fun:_ZN12_GLOBAL__N_113FilterBuilder11AddSiteListEP19ManagedModeSiteList
6341 fun:_ZN12_GLOBAL__N_134LoadWhitelistsOnBlockingPoolThreadE12ScopedVectorI19ManagedModeSiteListE
6342}
6343{
6344 bug_195160_c
6345 Memcheck:Leak
6346 fun:_Znw*
6347 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
6348 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
6349 fun:_ZN4base26PostTaskAndReplyWithResultI10scoped_ptrIN20ManagedModeURLFilter8ContentsENS_14DefaultDeleterIS3_EEES6_EEbPNS_10TaskRunnerERKN15tracked_objects8LocationERKNS_8CallbackIFT_vEEERKNSD_IFvT0_EEE
6350 fun:_ZN20ManagedModeURLFilter14LoadWhitelistsE12ScopedVectorI19ManagedModeSiteListE
6351}
6352{
6353 bug_222363
6354 Memcheck:Leak
6355 fun:_Znw*
6356 fun:_ZN18WebDatabaseService12LoadDatabaseERKN4base8CallbackIFvN3sql10InitStatusEEEE
6357}
6358{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006359 bug_222687a
6360 Memcheck:Leak
6361 fun:_Znw*
6362 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006363 fun:_ZN6chrome12_GLOBAL__N_134CreateMtabWatcherLinuxOnFileThread*
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006364}
6365{
6366 bug_222687b
6367 Memcheck:Leak
6368 ...
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006369 fun:_ZN4base26PostTaskAndReplyWithResultIPN6chrome16MtabWatcherLinux*
6370 fun:_ZN7content13BrowserThread26PostTaskAndReplyWithResultIPN6chrome16MtabWatcherLinux*
6371 fun:_ZN6chrome19StorageMonitorLinux4InitEv
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006372}
6373{
6374 bug_222687c
6375 Memcheck:Leak
6376 fun:_Znw*
6377 fun:_ZN4base4BindIMN6chrome19StorageMonitorLinux*
6378 fun:_ZN6chrome19StorageMonitorLinux4InitEv
6379 fun:_ZN27ChromeBrowserMainPartsLinux15PostProfileInitEv
6380 fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
6381 fun:_ZN22ChromeBrowserMainParts21PreMainMessageLoopRunEv
6382 fun:_ZN7content15BrowserMainLoop13CreateThreadsEv
6383}
6384{
Ben Murdochca12bfa2013-07-23 11:17:05 +01006385 bug_222687d
6386 Memcheck:Leak
6387 ...
6388 fun:_ZN21TestingBrowserProcess15storage_monitorEv
6389 fun:_ZN6chrome14StorageMonitor11GetInstanceEv
6390 fun:_ZN6chrome12_GLOBAL__N_131GetMediaTransferProtocolManagerEv
6391 fun:_ZN6chrome40MediaTransferProtocolDeviceObserverLinuxD1Ev
6392 fun:_ZN6chrome40MediaTransferProtocolDeviceObserverLinuxD0Ev
6393 fun:_ZNK4base14DefaultDeleterIN6chrome40MediaTransferProtocolDeviceObserverLinuxEEclEPS2_
6394 fun:_ZN4base8internal15scoped_ptr_implIN6chrome40MediaTransferProtocolDeviceObserverLinuxENS_14DefaultDeleterIS3_EEED1Ev
6395 fun:_ZN10scoped_ptrIN6chrome40MediaTransferProtocolDeviceObserverLinuxEN4base14DefaultDeleterIS1_EEED1Ev
6396 fun:_ZN6chrome19StorageMonitorLinuxD1Ev
6397 ...
6398 fun:_ZN6chrome4test18TestStorageMonitor15RemoveSingletonEv
6399}
6400{
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006401 bug_222876
6402 Memcheck:Leak
6403 fun:_Znw*
6404 fun:_ZN21WebDataServiceWrapperC1EP7Profile
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +01006405 fun:_ZNK21WebDataServiceFactory23BuildServiceInstanceForEPN7content14BrowserContextE
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006406 fun:_ZN33BrowserContextKeyedServiceFactory27GetServiceForBrowserContextEPN7content14BrowserContextEb
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006407 fun:_ZN21WebDataServiceFactory13GetForProfileEP7ProfileNS0_17ServiceAccessTypeE
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006408 ...
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006409 fun:_ZN12TokenService10InitializeEPKcP7Profile
6410}
6411{
6412 bug_222880
6413 Memcheck:Leak
6414 fun:malloc
6415 fun:_ZN3WTF10fastMallocEm
6416 fun:_ZN3WTF16VectorBufferBaseINS_6RefPtrIN7WebCore7ArchiveEEEE14allocateBufferEm
6417 ...
6418 fun:_ZN7WebCore7Archive18addSubframeArchiveEN3WTF10PassRefPtrIS0_EE
6419 fun:_ZN7WebCore11MHTMLParser22parseArchiveWithHeaderEPNS_10MIMEHeaderE
6420 fun:_ZN7WebCore11MHTMLParser12parseArchiveEv
6421 fun:_ZN7WebCore12MHTMLArchive6createERKNS_4KURLEPNS_12SharedBufferE
6422}
6423{
6424 bug_222883
6425 Memcheck:Uninitialized
6426 fun:_ZN2v88internal15ScavengeVisitor15ScavengePointerEPPNS0_6ObjectE.isra.327
6427 fun:_ZN2v88internal15ScavengeVisitor13VisitPointersEPPNS0_6ObjectES4_
6428 fun:_ZNK2v88internal13StandardFrame18IterateExpressionsEPNS0_13ObjectVisitorE
6429 ...
6430 fun:_ZN2v88internal4Heap8ScavengeEv
6431 fun:_ZN2v88internal4Heap24PerformGarbageCollectionENS0_16GarbageCollectorEPNS0_8GCTracerE.constprop.678
6432}
6433{
6434 bug_222887
6435 Memcheck:Leak
6436 fun:_Znw*
6437 fun:_ZN6webkit3gpu18GLInProcessContext10InitializeERKN3gfx4SizeEPS1_PKcPKiNS2_13GpuPreferenceE
6438 fun:_ZN6webkit3gpu18GLInProcessContext22CreateOffscreenContextEPS1_RKN3gfx4SizeES2_PKcPKiNS3_13GpuPreferenceE
6439 fun:_ZN6webkit3gpu46WebGraphicsContext3DInProcessCommandBufferImpl10InitializeEN6WebKit20WebGraphicsContext3D10AttributesEPS3_
6440 fun:_ZN25TestWebKitPlatformSupport32createOffscreenGraphicsContext3DERKN6WebKit20WebGraphicsContext3D10AttributesE
6441 fun:_ZN7WebCore17GraphicsContext3D6createENS0_10AttributesEPNS_10HostWindowENS0_11RenderStyleE
6442}
6443{
6444 bug_222898
6445 Memcheck:Leak
6446 fun:malloc
6447 fun:_ZN3WTF10fastMallocEm
6448 fun:_ZN3WTF9BitVector13OutOfLineBits6createEm
6449 fun:_ZN3WTF9BitVector15resizeOutOfLineEm
6450 fun:_ZN3WTF9BitVector10ensureSizeEm
6451 fun:_ZN3WTF9BitVectorC1Em
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006452 fun:_ZN7WebCore10UseCounter10didObserveENS0_7FeatureE
6453 fun:_ZN7WebCore10UseCounter7observeEPNS_8DocumentENS0_7FeatureE
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006454}
6455{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006456 bug_224747
6457 Memcheck:Leak
6458 fun:_Znw*
6459 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
6460 ...
6461 fun:_ZN64BackgroundApplicationListModelTest_AddRemovePermissionsTest_Test8TestBodyEv
6462}
6463{
6464 bug_225028
6465 Memcheck:Leak
6466 fun:_Znw*
6467 fun:_ZN31SafeBrowsingDatabaseFactoryImpl26CreateSafeBrowsingDatabaseEbbbb
6468 fun:_ZN20SafeBrowsingDatabase6CreateEbbbb
6469 fun:_ZN27SafeBrowsingDatabaseManager11GetDatabaseEv
6470}
6471{
6472 bug_225596
6473 Memcheck:Leak
6474 fun:_Znw*
6475 fun:_ZN8chromeos12input_method22InputMethodManagerImpl4InitERK13scoped_refptrIN4base19SequencedTaskRunnerEES7_
6476 fun:_ZN8chromeos12input_method10InitializeERK13scoped_refptrIN4base19SequencedTaskRunnerEES6_
6477 fun:_ZN8chromeos12input_method48InputMethodConfigurationTest_TestInitialize_Test8TestBodyEv
6478}
6479{
6480 bug_226254
6481 Memcheck:Leak
6482 fun:_Znw*
6483 fun:_ZN4base4BindIMN10extensions16UserScriptMaster14ScriptReloader*
6484 fun:_ZN10extensions16UserScriptMaster14ScriptReloader9StartLoad*
6485 fun:_ZN10extensions16UserScriptMaster9StartLoadEv
6486 fun:_ZN10extensions16UserScriptMaster7ObserveEiRKN7content18NotificationSourceERKNS1_19NotificationDetailsE
6487}
6488{
6489 bug_227278a
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +00006490 Memcheck:Uninitialized
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006491 ...
6492 fun:_ZN7content35CompositingIOSurfaceTransformerTest13RunResizeTestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
6493 fun:_ZN7content65CompositingIOSurfaceTransformerTest_ResizesTexturesCorrectly_Test8TestBodyEv
6494}
6495{
6496 bug_227278b
6497 Memcheck:Uninitialized
6498 ...
6499 fun:_ZN7content35CompositingIOSurfaceTransformerTest25RunTransformRGBToYV12TestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
6500 fun:_ZN7content60CompositingIOSurfaceTransformerTest_TransformsRGBToYV12_Test8TestBodyEv
6501}
6502{
6503 bug_227278c
6504 Memcheck:Uninitialized
6505 fun:BitSetNextSetBit
6506 fun:RegistersReInterfere
6507 fun:RegistersMerge
6508 fun:glpPPShaderLinearizeStreamMgr
6509 fun:glpPPShaderLinearize
6510 fun:glePrepareShaderForEmulation
6511 fun:gleSetVPTransformFuncAll
6512 fun:gleVPRenderQuadsSmooth
6513 fun:gleDrawArraysOrElements_ExecCore
6514 fun:glDrawArrays_Exec
6515 fun:glDrawArrays
6516 fun:_ZN7content12_GLOBAL__N_18DrawQuadEffffbff
6517 fun:_ZN7content31CompositingIOSurfaceTransformer14ResizeBilinearEjRKN3gfx4RectERKNS1_4SizeEPj
6518 fun:_ZN7content35CompositingIOSurfaceTransformerTest13RunResizeTestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
6519 fun:_ZN7content65CompositingIOSurfaceTransformerTest_ResizesTexturesCorrectly_Test8TestBodyEv
6520}
6521{
6522 bug_227278d
6523 Memcheck:Uninitialized
6524 fun:glViewport_Exec
6525 fun:glViewport
6526 fun:_ZN7content12_GLOBAL__N_139SetTransformationsForOffScreenRenderingERKN3gfx4SizeE
6527 fun:_ZN7content31CompositingIOSurfaceTransformer18TransformRGBToYV12EjRKN3gfx4RectERKNS1_4SizeEPjS8_S8_PS5_S9_
6528 fun:_ZN7content35CompositingIOSurfaceTransformerTest25RunTransformRGBToYV12TestERK8SkBitmapRKN3gfx4RectERKNS4_4SizeE
6529 fun:_ZN7content60CompositingIOSurfaceTransformerTest_TransformsRGBToYV12_Test8TestBodyEv
6530}
6531{
6532 bug_227278e
6533 Memcheck:Free
6534 fun:_ZdlPv
6535 fun:_ZN12BindingTableD2Ev
6536 fun:_ZN14TGenericLinkerD0Ev
6537 fun:ShDestruct
6538 fun:gleFreeProgramObject
6539 fun:gleUnbindDeleteHashNameAndObject
6540 fun:glDeleteObjectARB_Exec
6541 fun:glDeleteProgram
6542 fun:_ZN7content34CompositingIOSurfaceShaderPrograms5ResetEv
6543 fun:_ZN7content35CompositingIOSurfaceTransformerTestD2Ev
6544 fun:_ZN7content69CompositingIOSurfaceTransformerTest_ShaderProgramsCompileAndLink_TestD2Ev
6545 fun:_ZN7content69CompositingIOSurfaceTransformerTest_ShaderProgramsCompileAndLink_TestD1Ev
6546 fun:_ZN7content69CompositingIOSurfaceTransformerTest_ShaderProgramsCompileAndLink_TestD0Ev
6547 fun:_ZN7testing4Test11DeleteSelf_Ev
6548}
6549{
6550 bug_230366a
6551 Memcheck:Leak
6552 fun:_Znw*
6553 fun:_Z28InitializeGlobalParseContextv
6554 fun:_Z10InitThreadv
6555 fun:ShCompile
6556 fun:_ZN6webkit3gpu33WebGraphicsContext3DInProcessImpl25AngleValidateShaderSourceEPNS1_17ShaderSourceEntryE
6557 fun:_ZN6webkit3gpu33WebGraphicsContext3DInProcessImpl13compileShaderEj
6558 fun:_ZN2cc18ProgramBindingBase10LoadShaderEPN6WebKit20WebGraphicsContext3DEjRKSs
6559 fun:_ZN2cc18ProgramBindingBase4InitEPN6WebKit20WebGraphicsContext3DERKSsS5_
6560 fun:_ZN2cc14ProgramBindingINS_26VertexShaderPosTexIdentityENS_21FragmentShaderRGBATexEEC1EPN6WebKit20WebGraphicsContext3DENS_17TexCoordPrecisionE
6561 fun:_ZN2cc24AcceleratedTextureCopierC1EPN6WebKit20WebGraphicsContext3DEbi
6562 fun:_ZN2cc24AcceleratedTextureCopier6CreateEPN6WebKit20WebGraphicsContext3DEbi
6563 fun:_ZN2cc16ResourceProvider10InitializeEi
6564 fun:_ZN2cc16ResourceProvider6CreateEPNS_13OutputSurfaceEi
6565 fun:_ZN2cc17LayerTreeHostImpl18InitializeRendererE10scoped_ptrINS_13OutputSurfaceEN4base14DefaultDeleterIS2_EEE
6566 fun:_ZN2cc11ThreadProxy30InitializeRendererOnImplThreadEPNS_15CompletionEventEPbPNS_20RendererCapabilitiesE
6567}
6568{
6569 bug_230366b
6570 Memcheck:Leak
6571 fun:_Znw*
6572 fun:_Z21InitializeGlobalPoolsv
6573 fun:_Z10InitThreadv
6574 fun:ShCompile
6575 fun:_ZN6webkit3gpu33WebGraphicsContext3DInProcessImpl25AngleValidateShaderSourceEPNS1_17ShaderSourceEntryE
6576 fun:_ZN6webkit3gpu33WebGraphicsContext3DInProcessImpl13compileShaderEj
6577 fun:_ZN2cc18ProgramBindingBase10LoadShaderEPN6WebKit20WebGraphicsContext3DEjRKSs
6578 fun:_ZN2cc18ProgramBindingBase4InitEPN6WebKit20WebGraphicsContext3DERKSsS5_
6579 fun:_ZN2cc14ProgramBindingINS_26VertexShaderPosTexIdentityENS_21FragmentShaderRGBATexEEC1EPN6WebKit20WebGraphicsContext3DENS_17TexCoordPrecisionE
6580 fun:_ZN2cc24AcceleratedTextureCopierC1EPN6WebKit20WebGraphicsContext3DEbi
6581 fun:_ZN2cc24AcceleratedTextureCopier6CreateEPN6WebKit20WebGraphicsContext3DEbi
6582 fun:_ZN2cc16ResourceProvider10InitializeEi
6583 fun:_ZN2cc16ResourceProvider6CreateEPNS_13OutputSurfaceEi
6584 fun:_ZN2cc17LayerTreeHostImpl18InitializeRendererE10scoped_ptrINS_13OutputSurfaceEN4base14DefaultDeleterIS2_EEE
6585 fun:_ZN2cc11ThreadProxy30InitializeRendererOnImplThreadEPNS_15CompletionEventEPbPNS_20RendererCapabilitiesE
6586}
6587{
6588 bug_233541
6589 Memcheck:Leak
6590 fun:_Znw*
6591 fun:_ZN22DiskCacheTestWithCache13CreateBackendEjPN4base6ThreadE
6592 fun:_ZN22DiskCacheTestWithCache13InitDiskCacheEv
6593 fun:_ZN22DiskCacheTestWithCache9InitCacheEv
6594 fun:*DiskCacheBackendTest_SimpleDoom*
6595}
6596{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006597 bug_234845
6598 Memcheck:Leak
6599 fun:malloc
6600 fun:PORT_Alloc_Util
6601 fun:pk11_CreateSymKey
6602 fun:PK11_KeyGenWithTemplate
6603 fun:pk11_TokenKeyGenWithFlagsAndKeyType
6604 fun:pk11_RawPBEKeyGenWithKeyType
6605 fun:PK11_PBEKeyGen
6606 fun:PK11_ExportEncryptedPrivKeyInfo
6607 fun:_ZN6crypto12ECPrivateKey25ExportEncryptedPrivateKeyERKSsiPSt6vectorIhSaIhEE
6608}
6609{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006610 bug_235584
6611 Memcheck:Leak
6612 fun:_Znw*
6613 fun:_ZN4base4Bind*
6614 fun:_ZN3net18SSLClientSocketNSS4Core21OnHandshakeIOCompleteEi
6615 fun:_ZN3net18SSLClientSocketNSS4Core28OnGetDomainBoundCertCompleteEi
6616}
6617{
6618 bug_236791
6619 Memcheck:Leak
6620 fun:_Znw*
6621 fun:_ZN3ash4test53FocusCyclerTest_CycleFocusThroughWindowWithPanes_Test8TestBodyEv
6622}
6623{
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006624 bug_238170a
6625 Memcheck:Uninitialized
6626 fun:_ZN7WebCore20ElementRuleCollector20collectMatchingRulesERKNS_12MatchRequestERNS_13StyleResolver9RuleRangeE
6627 fun:_ZN7WebCore20ElementRuleCollector19hasAnyMatchingRulesEPNS_7RuleSetE
6628}
6629{
6630 bug_238170b
6631 Memcheck:Uninitialized
6632 fun:_ZN7WebCore20ElementRuleCollector20collectMatchingRulesERKNS_12MatchRequestERNS_13StyleResolver9RuleRangeE
6633 fun:_ZN7WebCore13StyleResolver16matchAuthorRulesERNS_20ElementRuleCollectorEb
6634}
6635{
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006636 bug_238170c
6637 Memcheck:Uninitialized
6638 fun:_ZN7WebCore23ReplaceSelectionCommand7doApplyEv
6639 fun:_ZN7WebCore20CompositeEditCommand5applyEv
6640 fun:_ZN7WebCore12applyCommandEN3WTF10PassRefPtrINS_20CompositeEditCommandEEE
6641}
6642{
Ben Murdocheb525c52013-07-10 11:40:50 +01006643 bug_238547
Torne (Richard Coles)c2e0dbd2013-05-09 18:35:53 +01006644 Memcheck:Leak
Ben Murdocheb525c52013-07-10 11:40:50 +01006645 fun:_Znw*
6646 fun:_ZN9__gnu_cxx13new_allocatorIPN4base11PendingTaskEE8allocateEmPKv
6647 fun:_ZNSt11_Deque_baseIN4base11PendingTaskESaIS1_EE15_M_allocate_mapEm
6648 fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE17_M_reallocate_mapEmb
6649 fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE22_M_reserve_map_at_backEm
6650 fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE16_M_push_back_auxERKS1_
6651 fun:_ZNSt5dequeIN4base11PendingTaskESaIS1_EE9push_backERKS1_
6652 fun:_ZNSt5queueIN4base11PendingTaskESt5dequeIS1_SaIS1_EEE4pushERKS1_
Ben Murdochbbcdd452013-07-25 10:06:34 +01006653 ...
6654 fun:_ZN4base*MessageLoop*15PostDelayedTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEENS_9TimeDeltaE
Torne (Richard Coles)b2df76e2013-05-13 16:52:09 +01006655}
6656{
6657 bug_239141
6658 Memcheck:Leak
6659 fun:malloc
6660 fun:_ZN3WTF10fastMallocEm
6661 fun:_ZN3WTF9BitVector13OutOfLineBits6createEm
6662 fun:_ZN3WTF9BitVector15resizeOutOfLineEm
6663 fun:_ZN3WTF9BitVector10ensureSizeEm
6664 fun:_ZN3WTF9BitVectorC1Em
6665 fun:_ZN7WebCore10UseCounter17recordMeasurementENS0_7FeatureE
6666}
6667{
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006668 bug_241044
6669 Memcheck:Uninitialized
6670 fun:_ZN7WebCore8Settings29setOpenGLMultisamplingEnabledEb
6671 fun:_ZN6WebKit15WebSettingsImpl29setOpenGLMultisamplingEnabledEb
6672 fun:_ZN11webkit_glue19ApplyWebPreferencesERK14WebPreferencesPN6WebKit7WebViewE
6673 fun:_ZN7content14RenderViewImpl10InitializeEPNS_20RenderViewImplParamsE
6674 fun:_ZN7content14RenderViewImpl6CreateEiRKNS_19RendererPreferencesERK14WebPreferencesPN4base14RefCountedDataIiEEiilRKSbItNS7_20string16_char_traitsESaItEEbbiRKN6WebKit13WebScreenInfoE17AccessibilityModeb
6675 fun:_ZN7content16RenderThreadImpl15OnCreateNewViewERK18ViewMsg_New_Params
6676}
6677{
6678 bug_241892a
6679 Memcheck:Leak
6680 fun:_Znw*
6681 fun:_ZN7WebCore11CSSSelector8RareData6createEN3WTF10PassRefPtrINS2_16AtomicStringImplEEE
6682 fun:_ZN7WebCore11CSSSelector14createRareDataEv
6683 ...
6684 fun:_Z10cssyyparsePN7WebCore9CSSParserE
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01006685 fun:_ZN7WebCore9CSSParser10parseSheetEPNS_18StyleSheetContentsE*
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006686 fun:_ZN7WebCore18StyleSheetContents17parseStringAtLineERKN3WTF6StringEib
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01006687 fun:_ZN7WebCore12StyleElement11createSheetE*
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006688 fun:_ZN7WebCore12StyleElement7processEPNS_7ElementE
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006689}
6690{
6691 bug_241892b
6692 Memcheck:Leak
6693 fun:_Znw*
6694 fun:_ZN7WebCore11CSSSelector8RareData6createEN3WTF10PassRefPtrINS2_16AtomicStringImplEEE
6695 fun:_ZN7WebCore11CSSSelector14createRareDataEv
6696 ...
6697 fun:_Z10cssyyparsePN7WebCore9CSSParserE
6698 fun:_ZN7WebCore9CSSParser13parseSelectorERKN3WTF6StringERNS_15CSSSelectorListE
6699}
6700{
Ben Murdochca12bfa2013-07-23 11:17:05 +01006701 bug_241892c
6702 Memcheck:Leak
6703 fun:_Znw*
6704 fun:_ZN7WebCore11CSSSelector8RareData6createEN3WTF10PassRefPtrINS2_16AtomicStringImplEEE
6705 fun:_ZN7WebCore11CSSSelector14createRareDataEv
6706 fun:_ZN7WebCore11CSSSelector12setAttributeERKNS_13QualifiedNameE
6707 fun:_ZN7WebCore17CSSParserSelector12setAttributeERKNS_13QualifiedNameE
6708 fun:_Z10cssyyparsePN7WebCore9CSSParserE
6709 fun:_ZN7WebCore9CSSParser10parseSheetEPNS_18StyleSheetContentsERKN3WTF6StringERKNS3_12TextPositionEPNS0_17SourceDataHandlerEb
6710 fun:_ZN7WebCore18StyleSheetContents21parseStringAtPositionERKN3WTF6StringERKNS1_12TextPositionEb
6711 fun:_ZN7WebCore12StyleElement11createSheetEPNS_7ElementERKN3WTF6StringE
6712 fun:_ZN7WebCore12StyleElement7processEPNS_7ElementE
6713 fun:_ZN7WebCore12StyleElement17processStyleSheetEPNS_8DocumentEPNS_7ElementE
6714 fun:_ZN7WebCore16HTMLStyleElement26didNotifySubtreeInsertionsEPNS_13ContainerNodeE
6715 fun:_ZN7WebCore26ChildNodeInsertionNotifier6notifyEPNS_4NodeE
6716 fun:_ZN7WebCoreL24updateTreeAfterInsertionEPNS_13ContainerNodeEPNS_4NodeENS_14AttachBehaviorE
6717 fun:_ZN7WebCore13ContainerNode11appendChildEN3WTF10PassRefPtrINS_4NodeEEERiNS_14AttachBehaviorE
6718 fun:_ZN7WebCore4Node11appendChildEN3WTF10PassRefPtrIS0_EERiNS_14AttachBehaviorE
6719 fun:_ZN7WebCore6V8Node23appendChildMethodCustomERKN2v820FunctionCallbackInfoINS1_5ValueEEE
6720 fun:_ZN7WebCore14NodeV8InternalL37appendChildMethodCallbackForMainWorldERKN2v820FunctionCallbackInfoINS1_5ValueEEE
6721}
6722
6723{
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006724 bug_241932
6725 Memcheck:Leak
6726 fun:calloc
6727 fun:_ZN3WTF13tryFastCallocEmm
6728 fun:_ZN3WTF9RawBufferC1EjjNS0_20InitializationPolicyE
6729 fun:_ZN3WTF19ArrayBufferContentsC1EjjNS_9RawBuffer20InitializationPolicyE
6730 fun:_ZN3WTF11ArrayBuffer6createEPKvj
6731 fun:_ZN7WebCore12_GLOBAL__N_16Reader17doReadArrayBufferEv
6732 fun:_ZN7WebCore12_GLOBAL__N_16Reader15readArrayBufferEPN2v86HandleINS2_5ValueEEE
6733 fun:_ZN7WebCore12_GLOBAL__N_16Reader4readEPN2v86HandleINS2_5ValueEEERNS0_16CompositeCreatorE
6734 fun:_ZN7WebCore12_GLOBAL__N_112Deserializer13doDeserializeEv
6735 fun:_ZN7WebCore12_GLOBAL__N_112Deserializer11deserializeEv
6736 fun:_ZN7WebCore21SerializedScriptValue11deserializeEPN2v87IsolateEPN3WTF6VectorINS4_6RefPtrINS_11MessagePortEEELm1EEE
6737 fun:_ZN7WebCore14V8MessageEvent20dataAttrGetterCustomEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
6738 fun:_ZN7WebCore22MessageEventV8InternalL22dataAttrGetterCallbackEN2v85LocalINS1_6StringEEERKNS1_12AccessorInfoE
6739}
6740{
6741 bug_242672
6742 Memcheck:Leak
6743 fun:malloc
6744 fun:_ZN3WTF10fastMallocEm
6745 fun:_ZN3WTF9BitVector13OutOfLineBits6createEm
6746 fun:_ZN3WTF9BitVector15resizeOutOfLineEm
6747 fun:_ZN3WTF9BitVector10ensureSizeEm
6748 fun:_ZN7WebCore10UseCounterC1Ev
6749 fun:_ZN7WebCore4PageC1ERNS0_11PageClientsE
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006750}
6751{
6752 bug_243132
6753 Memcheck:Leak
6754 fun:malloc
6755 fun:_ZN3WTF10fastMallocEm
6756 fun:_ZN3WTF10StringImpl19createUninitializedEjRPh
6757 fun:_ZN3WTF6String6appendERKS0_
6758 fun:_ZN7WebCoreL24valueForGridTrackBreadthERKNS_10GridLengthEPKNS_11RenderStyleEPNS_10RenderViewE
6759 fun:_ZN7WebCoreL21valueForGridTrackSizeERKNS_13GridTrackSizeEPKNS_11RenderStyleEPNS_10RenderViewE
6760 fun:_ZN7WebCoreL21valueForGridTrackListERKN3WTF6VectorINS_13GridTrackSizeELm0EEERKNS0_7HashMap*
6761 fun:_ZNK7WebCore27CSSComputedStyleDeclaration19getPropertyCSSValueENS_13CSSPropertyIDENS_13EUpdateLayoutE
6762 fun:_ZNK7WebCore27CSSComputedStyleDeclaration19getPropertyCSSValueENS_13CSSPropertyIDE
6763 fun:_ZNK7WebCore27CSSComputedStyleDeclaration16getPropertyValueENS_13CSSPropertyIDE
6764 fun:_ZN7WebCore27CSSComputedStyleDeclaration16getPropertyValueERKN3WTF6StringE
6765}
6766{
6767 bug_243137
6768 Memcheck:Leak
6769 fun:_Znw*
6770 fun:_ZN7WebCore11RenderStyle6createEv
6771 fun:_ZN7WebCore13StyleResolver15styleForElementEPNS_7ElementEPNS_11RenderStyle*
6772 fun:_ZN7WebCore7Element16styleForRendererEv
6773 fun:_ZN7WebCore20NodeRenderingContext32createRendererForElementIfNeededEv
6774 fun:_ZN7WebCore7Element22createRendererIfNeededEv
6775 fun:_ZN7WebCore7Element6attachEv
6776 fun:_ZN7WebCore22HTMLPlugInImageElement6attachEv
6777}
6778{
6779 bug_243753
6780 Memcheck:Leak
6781 fun:_Znw*
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01006782 fun:_ZN7fileapi28SandboxFileSystemBackendTest11GetRootPathERK4GURLNS_14FileSystemTypeEbPN4base8FilePathE
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006783}
6784{
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01006785 bug_245714
6786 Memcheck:Leak
6787 fun:_Znw*
6788 fun:_ZN7content17WorkerServiceImplC1Ev
6789 fun:_ZN22DefaultSingletonTraitsIN7content17WorkerServiceImplEE3NewEv
6790 fun:_ZN9SingletonIN7content17WorkerServiceImplE22DefaultSingletonTraitsIS1_ES1_E3getEv
6791 fun:_ZN7content17WorkerServiceImpl11GetInstanceEv
6792 fun:_ZN7content19WorkerMessageFilter16OnChannelClosingEv
6793 fun:_ZN3IPC12ChannelProxy7Context15OnChannelClosedEv
6794}
6795{
Ben Murdocheb525c52013-07-10 11:40:50 +01006796 bug_245714b
6797 Memcheck:Leak
6798 fun:_Znw*
6799 fun:_ZN7content17WorkerServiceImplC1Ev
6800 fun:_ZN22DefaultSingletonTraitsIN7content17WorkerServiceImplEE3NewEv
6801 fun:_ZN9SingletonIN7content17WorkerServiceImplE22DefaultSingletonTraitsIS1_ES1_E3getEv
6802 fun:_ZN7content17WorkerServiceImpl11GetInstanceEv
6803 fun:_ZN7content22ResourceRequestDetailsC1EPKN3net10URLRequestEi
6804 fun:_ZN7content26ResourceDispatcherHostImpl18DidReceiveResponseEPNS_14ResourceLoaderE
6805 fun:_ZN7content14ResourceLoader23CompleteResponseStartedEv
6806 fun:_ZN7content14ResourceLoader17OnResponseStartedEPN3net10URLRequestE
6807 fun:_ZN3net10URLRequest21NotifyResponseStartedEv
6808}
6809{
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01006810 bug_245828
6811 Memcheck:Leak
6812 fun:_Znw*
6813 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
6814 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
6815 fun:_ZN7content13BrowserThread16PostTaskAndReplyENS0_2IDERKN15tracked_objects8LocationERKN4base8CallbackIFvvEEESB_
6816 fun:_ZN7content23DevToolsHttpHandlerImpl4StopEv
6817 fun:_ZN7content21ShellDevToolsDelegate4StopEv
6818 fun:_ZN7content21ShellBrowserMainParts22PostMainMessageLoopRunEv
6819 fun:_ZN7content15BrowserMainLoop25ShutdownThreadsAndCleanUpEv
6820 fun:_ZN7content21BrowserMainRunnerImpl8ShutdownEv
Ben Murdocheb525c52013-07-10 11:40:50 +01006821 fun:_Z16ShellBrowserMainRKN7content18MainFunctionParams*
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01006822 fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
6823 fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6824 fun:_ZN7content21ContentMainRunnerImpl3RunEv
6825 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
6826}
6827{
6828 bug_245866
6829 Memcheck:Leak
6830 fun:_Znw*
6831 fun:_ZN4base23EnsureProcessTerminatedEi
6832 fun:_ZN7content6Zygote17HandleReapRequestEiRK6Pickle14PickleIterator
6833 fun:_ZN7content6Zygote24HandleRequestFromBrowserEi
6834 fun:_ZN7content6Zygote15ProcessRequestsEv
6835 fun:_ZN7content10ZygoteMainERKNS_18MainFunctionParamsEPNS_18ZygoteForkDelegateE
6836 fun:_ZN7content9RunZygoteERKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6837 fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
6838 fun:_ZN7content21ContentMainRunnerImpl3RunEv
6839 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
6840}
6841{
6842 bug_246148
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006843 Memcheck:Leak
6844 fun:_Znw*
6845 ...
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01006846 fun:_ZN7content16SiteInstanceImpl10GetProcessEv
6847 fun:_ZN7content18RenderViewHostImplC1EPNS_12SiteInstanceEPNS_22RenderViewHostDelegateEPNS_24RenderWidgetHostDelegateEiibPNS_23SessionStorageNamespaceE
6848 fun:_ZN7content21RenderViewHostFactory6CreateEPNS_12SiteInstanceEPNS_22RenderViewHostDelegateEPNS_24RenderWidgetHostDelegateEiibPNS_23SessionStorageNamespaceE
6849 fun:_ZN7content21RenderViewHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEii
6850 fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
6851 fun:_ZN7content15TestWebContents6CreateEPNS_14BrowserContextEPNS_12SiteInstanceE
6852 fun:_ZN7content17WebContentsTester21CreateTestWebContentsEPNS_14BrowserContextEPNS_12SiteInstanceE
6853 fun:_ZN8autofill12_GLOBAL__N_128AutofillDialogControllerTest5SetUpEv
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006854}
6855{
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01006856 bug_246153
6857 Memcheck:Uninitialized
6858 fun:_ZN7WebCore8Settings29setOpenGLMultisamplingEnabledEb
6859 fun:_ZN6WebKit15WebSettingsImpl29setOpenGLMultisamplingEnabledEb
6860 fun:_ZN11webkit_glue19ApplyWebPreferencesERK14WebPreferencesPN6WebKit7WebViewE
6861 ...
6862 fun:_ZN7content14RenderViewImpl10InitializeEPNS_20RenderViewImplParamsE
6863 fun:_ZN7content14RenderViewImpl6CreateEiRKNS_19RendererPreferencesERK14WebPreferencesPN4base14RefCountedDataIiEEiiilRKSbItNS7_20string16_char_traitsESaItEEbbiRKN6WebKit13WebScreenInfoE17AccessibilityModeb
6864 fun:_ZN7content16RenderThreadImpl15OnCreateNewViewERK18ViewMsg_New_Params
6865}
6866{
6867 bug_247525a
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006868 Memcheck:Leak
6869 fun:_Znw*
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01006870 fun:_ZN7fileapi24SandboxFileSystemBackendC1EPN5quota17QuotaManagerProxyEPN4base19SequencedTaskRunnerERKNS4_8FilePathERKNS_17FileSystemOptionsEPNS1_20SpecialStoragePolicyE
6871 fun:_ZN7fileapi17FileSystemContextC1E10scoped_ptrINS_21FileSystemTaskRunnersEN4base14DefaultDeleterIS2_EEEPNS_19ExternalMountPointsEPN5quota20SpecialStoragePolicyEPNS9_17QuotaManagerProxyE12ScopedVectorINS_17FileSystemBackendEERKNS3_8FilePathERKNS_17FileSystemOptionsE
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01006872 fun:_ZN7content23CreateFileSystemContextERKN4base8FilePathEbPN7fileapi19ExternalMountPointsEPN5quota20SpecialStoragePolicyEPNS7_17QuotaManagerProxyE
6873 fun:_ZN7content20StoragePartitionImpl6CreateEPNS_14BrowserContextEbRKN4base8FilePathE
6874 fun:_ZN7content23StoragePartitionImplMap3GetERKSsS2_b
6875 fun:_ZN7content12_GLOBAL__N_129GetStoragePartitionFromConfigEPNS_14BrowserContextERKSsS4_b
6876 fun:_ZN7content14BrowserContext19GetStoragePartitionEPS0_PNS_12SiteInstanceE
6877 fun:_ZN7content24NavigationControllerImpl26GetSessionStorageNamespaceEPNS_12SiteInstanceE
6878 fun:_ZN7content21RenderViewHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEii
6879 fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
6880 fun:_ZN7content15TestWebContents6CreateEPNS_14BrowserContextEPNS_12SiteInstanceE
6881 fun:_ZN7content25RenderViewHostTestHarness21CreateTestWebContentsEv
6882 fun:_ZN7content25RenderViewHostTestHarness5SetUpEv
6883 fun:_ZN31ChromeRenderViewHostTestHarness5SetUpEv
6884}
6885{
6886 bug_247525b
6887 Memcheck:Leak
6888 fun:_Znw*
6889 fun:_ZN8appcache19AppCacheStorageImpl10InitializeERKN4base8FilePathEPNS1_16MessageLoopProxyES6_
6890 fun:_ZN8appcache15AppCacheService10InitializeERKN4base8FilePathEPNS1_16MessageLoopProxyES6_
6891 fun:_ZN7content21ChromeAppCacheService20InitializeOnIOThreadERKN4base8FilePathEPNS_15ResourceContextEPN3net23URLRequestContextGetterE13scoped_refptrIN5quota20SpecialStoragePolicyEE
6892}
6893{
6894 bug_247525c
6895 Memcheck:Leak
6896 fun:_Znw*
6897 fun:_ZN7content20StoragePartitionImpl6CreateEPNS_14BrowserContextEbRKN4base8FilePathE
6898 fun:_ZN7content23StoragePartitionImplMap3GetERKSsS2_b
6899 fun:_ZN7content12_GLOBAL__N_129GetStoragePartitionFromConfigEPNS_14BrowserContextERKSsS4_b
6900 fun:_ZN7content14BrowserContext19GetStoragePartitionEPS0_PNS_12SiteInstanceE
6901 fun:_ZN7content24NavigationControllerImpl26GetSessionStorageNamespaceEPNS_12SiteInstanceE
6902 fun:_ZN7content21RenderViewHostManager4InitEPNS_14BrowserContextEPNS_12SiteInstanceEii
6903 fun:_ZN7content15WebContentsImpl4InitERKNS_11WebContents12CreateParamsE
6904 fun:_ZN7content15TestWebContents6CreateEPNS_14BrowserContextEPNS_12SiteInstanceE
6905 fun:_ZN7content25RenderViewHostTestHarness21CreateTestWebContentsEv
6906 fun:_ZN7content25RenderViewHostTestHarness5SetUpEv
6907 fun:_ZN31ChromeRenderViewHostTestHarness5SetUpEv
Torne (Richard Coles)90dce4d2013-05-29 14:40:03 +01006908}
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +01006909{
6910 bug_250529_a
6911 Memcheck:Leak
6912 fun:_Znw*
6913 fun:_ZN14TestingProfile20CreateRequestContextEv
6914 fun:_ZN12_GLOBAL__N_130ProfileSyncServiceTypedUrlTest5SetUpEv
6915}
6916{
6917 bug_250529_b
6918 Memcheck:Leak
6919 fun:_Znw*
6920 fun:_ZN14TestingProfile20CreateRequestContextEv
6921 fun:_ZN30ProfileSyncServicePasswordTest5SetUpEv
6922}
6923{
6924 bug_250533
6925 Memcheck:Leak
6926 fun:_Znw*
6927 ...
6928 fun:_ZN3net21TestURLRequestContext4InitEv
6929 fun:_ZN3net21TestURLRequestContextC1Ev
6930 fun:_ZN3net27TestURLRequestContextGetter20GetURLRequestContextEv
6931 fun:_ZN11jingle_glue26ProxyResolvingClientSocketC1EPN3net19ClientSocketFactoryERK13scoped_refptrINS1_23URLRequestContextGetterEERKNS1_9SSLConfigERKNS1_12HostPortPairE
6932 fun:_ZN11jingle_glue23XmppClientSocketFactory27CreateTransportClientSocketERKN3net12HostPortPairE
6933 fun:_ZN11jingle_glue17ChromeAsyncSocket7ConnectERKN9talk_base13SocketAddressE
6934}
6935{
6936 bug_250533_b
6937 Memcheck:Leak
6938 fun:_Znw*
6939 ...
6940 fun:_ZN3net18HttpNetworkSessionC1ERKNS0_6ParamsE
6941 fun:_ZN11jingle_glue26ProxyResolvingClientSocketC1EPN3net19ClientSocketFactoryERK13scoped_refptrINS1_23URLRequestContextGetterEERKNS1_9SSLConfigERKNS1_12HostPortPairE
6942 fun:_ZN11jingle_glue23XmppClientSocketFactory27CreateTransportClientSocketERKN3net12HostPortPairE
6943 fun:_ZN11jingle_glue17ChromeAsyncSocket7ConnectERKN9talk_base13SocketAddressE
6944}
6945{
6946 bug_250688
6947 Memcheck:Leak
6948 fun:_Znw*
6949 fun:_ZN9__gnu_cxx13new_allocatorISt13_Rb_tree_nodeISt4pairIKN3net9HostCache3KeyES2_INS4_5EntryEN4base9TimeTicksEEEEE8allocateEmPKv
6950 fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE11_M_get_nodeEv
6951 fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE14_M_create_nodeERKS9_
6952 fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE10_M_insert_EPKSt18_Rb_tree_node_baseSI_RKS9_
6953 fun:_ZNSt8_Rb_treeIN3net9HostCache3KeyESt4pairIKS2_S3_INS1_5EntryEN4base9TimeTicksEEESt10_Select1stIS9_ESt4lessIS2_ESaIS9_EE16_M_insert_uniqueERKS9_
6954 fun:_ZNSt3mapIN3net9HostCache3KeyESt4pairINS1_5EntryEN4base9TimeTicksEESt4lessIS2_ESaIS3_IKS2_S7_EEE6insertERKSB_
6955 fun:_ZN3net13ExpiringCacheINS_9HostCache3KeyENS1_5EntryEN4base9TimeTicksESt4lessIS5_ENS1_15EvictionHandlerEE3PutERKS2_RKS3_RKS5_SF_
6956 fun:_ZN3net9HostCache3SetERKNS0_3KeyERKNS0_5EntryEN4base9TimeTicksENS7_9TimeDeltaE
6957 fun:_ZN3net20MockHostResolverBase11ResolveProcEmRKNS_12HostResolver11RequestInfoEPNS_11AddressListE
6958 fun:_ZN3net20MockHostResolverBase10ResolveNowEm
6959}
6960{
6961 bug_251004_a
6962 Memcheck:Leak
6963 fun:_Znw*
6964 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
6965 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
6966 fun:_ZN3net10FileStream7Context14CloseAndDeleteEv
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +01006967}
6968{
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01006969 bug_251034
6970 Memcheck:Leak
6971 ...
6972 fun:_ZN3gpu5gles216ShaderTranslator4InitE12ShShaderType12ShShaderSpecPK18ShBuiltInResourcesNS0_25ShaderTranslatorInterface22GlslImplementationTypeENS7_27GlslBuiltInFunctionBehaviorE
6973 fun:_ZN3gpu5gles221ShaderTranslatorCache13GetTranslatorE12ShShaderType12ShShaderSpecPK18ShBuiltInResourcesNS0_25ShaderTranslatorInterface22GlslImplementationTypeENS7_27GlslBuiltInFunctionBehaviorE
6974 fun:_ZN3gpu5gles216GLES2DecoderImpl26InitializeShaderTranslatorEv
6975 fun:_ZN3gpu5gles216GLES2DecoderImpl10InitializeERK13scoped_refptrIN3gfx9GLSurfaceEERKS2_INS3_9GLContextEEbRKNS3_4SizeERKNS0_18DisallowedFeaturesEPKcRKSt6vectorIiSaIiEE
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +01006976 fun:_ZN3gpu22InProcessCommandBuffer21InitializeOnGpuThreadEbmRKN3gfx4SizeEPKcRKSt6vectorIiSaIiEENS1_13GpuPreferenceE
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01006977}
6978{
Ben Murdocheb525c52013-07-10 11:40:50 +01006979 bug_252054
6980 Memcheck:Unaddressable
6981 fun:_ZNK7WebCore32PlatformSpeechSynthesisUtterance6clientEv
6982 fun:_ZN7WebCore15SpeechSynthesis17didFinishSpeakingEN3WTF10PassRefPtrINS_32PlatformSpeechSynthesisUtteranceEEE
6983 fun:_ZN7WebCore29PlatformSpeechSynthesizerMock16speakingFinishedEPNS_5TimerIS0_EE
6984 fun:_ZN7WebCore5TimerINS_29PlatformSpeechSynthesizerMockEE5firedEv
6985 fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
6986 fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
6987 fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +01006988}
6989{
Ben Murdocheb525c52013-07-10 11:40:50 +01006990 bug_252036
6991 Memcheck:Uninitialized
6992 fun:_ZN2cc9Scheduler27SetupNextBeginFrameIfNeededEv
6993 fun:_ZN2cc9Scheduler23ProcessScheduledActionsEv
6994}
6995{
6996 bug_252209
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +01006997 Memcheck:Leak
6998 fun:_Znw*
Ben Murdocheb525c52013-07-10 11:40:50 +01006999 fun:_ZN7content18ResourceDispatcher12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
7000 fun:_ZN7content11ChildThread12CreateBridgeERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
7001 fun:_ZN7content25WebKitPlatformSupportImpl20CreateResourceLoaderERKN11webkit_glue20ResourceLoaderBridge11RequestInfoE
7002 fun:_ZN11webkit_glue16WebURLLoaderImpl7Context5StartERKN6WebKit13WebURLRequestEPNS_20ResourceLoaderBridge16SyncLoadResponseEPNS_25WebKitPlatformSupportImplE
7003 fun:_ZN11webkit_glue16WebURLLoaderImpl18loadAsynchronouslyERKN6WebKit13WebURLRequestEPNS1_18WebURLLoaderClientE
7004 fun:_ZN7WebCore22ResourceHandleInternal5startENS_17StoredCredentialsE
7005 fun:_ZN7WebCore14ResourceHandle5startENS_17StoredCredentialsE
7006 fun:_ZN7WebCore14ResourceHandle6createERKNS_15ResourceRequestEPNS_20ResourceHandleClientEbbNS_17StoredCredentialsE
7007}
7008{
7009 bug_252228
7010 Memcheck:Leak
7011 fun:_Znw*
7012 ...
7013 fun:_ZN2v88internal25FunctionCallbackArguments4CallEPFNS_6HandleINS_5ValueEEERKNS_9ArgumentsEE
7014 fun:_ZN2v88internalL19HandleApiCallHelperILb0EEEPNS0_11MaybeObjectENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
7015 fun:_ZN2v88internalL25Builtin_implHandleApiCallENS0_12_GLOBAL__N_116BuiltinArgumentsILNS0_21BuiltinExtraArgumentsE1EEEPNS0_7IsolateE
7016 fun:_ZN2v88internalL21Builtin_HandleApiCallEiPPNS0_6ObjectEPNS0_7IsolateE
7017 ...
7018 fun:_ZN2v88internalL6InvokeEbNS0_6HandleINS0_10JSFunctionEEENS1_INS0_6ObjectEEEiPS5_Pb
7019 fun:_ZN2v88internal9Execution4CallENS0_6HandleINS0_6ObjectEEES4_iPS4_Pbb
7020}
7021{
7022 bug_252241_a
7023 Memcheck:Leak
7024 fun:_Znw*
7025 ...
7026 fun:_ZN7content20WebKitTestController20PrepareForLayoutTestERK4GURLRKN4base8FilePathEbRKSs
7027 fun:_Z16ShellBrowserMainRKN7content18MainFunctionParams*
7028 fun:_ZN7content17ShellMainDelegate10RunProcessERKSsRKNS_18MainFunctionParamsE
7029 fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
7030 fun:_ZN7content21ContentMainRunnerImpl3RunEv
7031 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
7032}
7033{
7034 bug_252241_b
7035 Memcheck:Leak
7036 fun:_Znw*
7037 fun:_ZN7content19ContentMainDelegate26CreateContentUtilityClientEv
7038 fun:_ZN7content24ContentClientInitializer3SetERKSsPNS_19ContentMainDelegateE
7039 fun:_ZN7content21ContentMainRunnerImpl10InitializeEiPPKcPNS_19ContentMainDelegateE
7040 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
7041}
7042{
Ben Murdocheb525c52013-07-10 11:40:50 +01007043 bug_252641
7044 Memcheck:Uninitialized
7045 fun:pthread_rwlock_init$UNIX2003
7046 fun:_ZN3re25MutexC2Ev
7047 fun:_ZN3re25MutexC1Ev
7048 ...
7049 fun:_ZN11leveldb_env19ParseMethodAndErrorEPKcPNS_8MethodIDEPi
7050 fun:_ZN7contentL21HistogramLevelDBErrorERKSsRKN7leveldb6StatusE
7051 fun:_ZN7content15LevelDBDatabase4OpenERKN4base8FilePathEPKNS_17LevelDBComparatorEPb
7052 fun:_ZN7content12_GLOBAL__N_139LevelDBDatabaseTest_CorruptionTest_Test8TestBodyEv
7053}
7054{
7055 bug_253797
7056 Memcheck:Uninitialized
7057 fun:_ZNSt11char_traitsIcE6lengthEPKc
7058 fun:_ZN4base8internal17StringPieceDetail*
7059 fun:_ZN4base16BasicStringPieceISsEC1EPKc
7060 fun:_ZN8autofill22AutofillQueryXmlParser13CharacterDataEPN4buzz15XmlParseContextEPKci
7061 fun:_ZN4buzz9XmlParser18ExpatCharacterDataEPKci
7062 fun:_ZN4buzzL21CharacterDataCallbackEPvPKci
7063 obj:*libexpat.so*
7064 obj:*libexpat.so*
7065 obj:*libexpat.so*
7066 obj:*libexpat.so*
7067 fun:XML_ParseBuffer
7068 fun:_ZN4buzz9XmlParser5ParseEPKcmb
7069 fun:_ZN8autofill12_GLOBAL__N_126AutofillQueryXmlParserTest13ParseQueryXMLERKSsb
7070 fun:_ZN8autofill12_GLOBAL__N_149AutofillQueryXmlParserTest_ParseAutofillFlow_Test8TestBodyEv
7071}
7072{
Ben Murdocheb525c52013-07-10 11:40:50 +01007073 bug_255718
7074 Memcheck:Leak
7075 fun:_Znw*
7076 fun:_ZN4base4BindIMNS_12_GLOBAL__N_121PostTaskAndReplyRelayEFvvENS_8internal17UnretainedWrapperIS2_EEEENS_8CallbackINS5_9BindStateINS5_13FunctorTraitsIT_E12RunnableTypeENSC_7RunTypeEFvNS5_19CallbackParamTraitsIT0_E11StorageTypeEEE14UnboundRunTypeEEESB_RKSG_
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +01007077 fun:_ZN4base8internal20PostTaskAndReplyImpl16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEESA_
7078 fun:_ZN4base10TaskRunner16PostTaskAndReplyERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEES9_
Ben Murdocheb525c52013-07-10 11:40:50 +01007079 fun:_ZN4base26PostTaskAndReplyWithResultIN5quota15QuotaStatusCodeES2_EEbPNS_10TaskRunnerERKN15tracked_objects8LocationERKNS_8CallbackIFT_vEEERKNS9_IFvT0_EEE
7080 fun:_ZN7fileapi21FileSystemQuotaClient16DeleteOriginDataERK4GURLN5quota11StorageTypeERKN4base8CallbackIFvNS4_15QuotaStatusCodeEEEE
7081 fun:_ZN5quota12QuotaManager17OriginDataDeleter3RunEv
7082 fun:_ZN5quota9QuotaTask5StartEv
7083 fun:_ZN5quota12QuotaManager16DeleteOriginDataERK4GURLNS_11StorageTypeEiRKN4base8CallbackIFvNS_15QuotaStatusCodeEEEE
7084 fun:_ZN7content12_GLOBAL__N_134ClearQuotaManagedOriginsOnIOThreadERK13scoped_refptrIN5quota12QuotaManagerEERKSt3setI4GURLSt4lessIS8_ESaIS8_EENS2_11StorageTypeE
7085 fun:_ZN7content12_GLOBAL__N_121ClearOriginOnIOThreadEjRK4GURLRK13scoped_refptrIN3net23URLRequestContextGetterEERKS4_IN5quota12QuotaManagerEE
7086}
7087{
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01007088 bug_258466
Ben Murdocheb525c52013-07-10 11:40:50 +01007089 Memcheck:Leak
7090 fun:_Znw*
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01007091 fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
7092 fun:_ZN22ChromeBrowserMainParts21PreMainMessageLoopRunEv
7093 fun:_ZN7content15BrowserMainLoop13CreateThreadsEv
7094 fun:_ZN7content21BrowserMainRunnerImpl10InitializeERKNS_18MainFunctionParamsE
7095 fun:_ZN7content11BrowserMainERKNS_18MainFunctionParamsE
7096 fun:_ZN7content23RunNamedProcessTypeMainERKSsRKNS_18MainFunctionParamsEPNS_19ContentMainDelegateE
7097 fun:_ZN7content21ContentMainRunnerImpl3RunEv
7098 fun:_ZN7content11ContentMainEiPPKcPNS_19ContentMainDelegateE
7099 fun:ChromeMain
7100}
7101{
7102 bug_258132a
7103 Memcheck:Leak
7104 fun:_Znw*
7105 fun:_ZN5ppapi5proxy15PPP_Class_Proxy19CreateProxiedObjectEPK18PPB_Var_DeprecatedPNS0_10DispatcherEill
7106 fun:_ZN5ppapi5proxy24PPB_Var_Deprecated_Proxy27OnMsgCreateObjectDeprecatedEillNS0_24SerializedVarReturnValueE
7107}
7108{
7109 bug_258132b
7110 Memcheck:Leak
7111 fun:_Znw*
7112 fun:_ZN5ppapi5proxy26PluginProxyMultiThreadTest7RunTestEv
7113 fun:_ZN5ppapi*ThreadAwareCallback*Test_*
7114}
7115{
7116 bug_259188
7117 Memcheck:Leak
7118 fun:_Znw*
7119 fun:_ZN7WebCore16V8PerIsolateData6createEPN2v87IsolateE
7120 fun:_ZN7WebCore16V8PerIsolateData17ensureInitializedEPN2v87IsolateE
7121 fun:_ZN6WebKit10initializeEPNS_8PlatformE
7122}
7123{
7124 bug_259303
7125 Memcheck:Leak
7126 fun:_Znw*
7127 fun:_ZN3IPC7Message23EnsureFileDescriptorSetEv
7128 fun:_ZN3IPC7Message19file_descriptor_setEv
7129 fun:_ZN3IPC7Channel11ChannelImpl24WillDispatchInputMessageEPNS_7MessageE
7130 fun:_ZN3IPC8internal13ChannelReader17DispatchInputDataEPKci
7131 fun:_ZN3IPC8internal13ChannelReader23ProcessIncomingMessagesEv
7132 fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi
7133 fun:_ZN4base19MessagePumpLibevent21FileDescriptorWatcher28OnFileCanReadWithoutBlockingEiPS0_
7134 fun:_ZN4base19MessagePumpLibevent22OnLibeventNotificationEisPv
7135}
7136{
Ben Murdoch7dbb3d52013-07-17 14:55:54 +01007137 bug_259357d
7138 Memcheck:Uninitialized
7139 ...
7140 fun:_ZN3gpu5gles239ShaderTranslatorTest_OptionsString_Test8TestBodyEv
7141}
7142{
7143 bug_259357f
7144 Memcheck:Uninitialized
7145 fun:_ZNK3gpu12AsyncAPIMock6IsArgsclEPKv
7146 fun:_ZNK7testing8internal12TrulyMatcherIN3gpu12AsyncAPIMock6IsArgsEE15MatchAndExplainIPKvEEbRT_PNS_19MatchResultListenerE
7147 fun:_ZNK7testing18PolymorphicMatcherINS_8internal12TrulyMatcherIN3gpu12AsyncAPIMock6IsArgsEEEE15MonomorphicImplIPKvE15MatchAndExplainESA_PNS_19MatchResultListenerE
7148 fun:_ZNK7testing8internal11MatcherBaseIPKvE15MatchAndExplainES3_PNS_19MatchResultListenerE
7149 fun:_ZNK7testing8internal11MatcherBaseIPKvE7MatchesES3_
7150 fun:_ZN7testing8internal11TuplePrefixILm3EE7MatchesINSt3tr15tupleIINS_7MatcherIjEES7_NS6_IPKvEEEEENS5_IIjjS9_EEEEEbRKT_RKT0_
7151 fun:_ZN7testing8internal12TupleMatchesINSt3tr15tupleIINS_7MatcherIjEES5_NS4_IPKvEEEEENS3_IIjjS7_EEEEEbRKT_RKT0_
7152 fun:_ZNK7testing8internal16TypedExpectationIFN3gpu5error5ErrorEjjPKvEE7MatchesERKNSt3tr15tupleIIjjS6_EEE
7153 fun:_ZNK7testing8internal16TypedExpectationIFN3gpu5error5ErrorEjjPKvEE21ShouldHandleArgumentsERKNSt3tr15tupleIIjjS6_EEE
7154 fun:_ZNK7testing8internal18FunctionMockerBaseIFN3gpu5error5ErrorEjjPKvEE29FindMatchingExpectationLockedERKNSt3tr15tupleIIjjS6_EEE
7155 fun:_ZN7testing8internal18FunctionMockerBaseIFN3gpu5error5ErrorEjjPKvEE30UntypedFindMatchingExpectationES6_PS6_PbPSoSB_
7156 fun:_ZN7testing8internal25UntypedFunctionMockerBase17UntypedInvokeWithEPKv
7157 fun:_ZN7testing8internal18FunctionMockerBaseIFN3gpu5error5ErrorEjjPKvEE10InvokeWithERKNSt3tr15tupleIIjjS6_EEE
7158 fun:_ZN7testing8internal14FunctionMockerIFN3gpu5error5ErrorEjjPKvEE6InvokeEjjS6_
7159 fun:_ZN3gpu12AsyncAPIMock9DoCommandEjjPKv
7160 fun:_ZN3gpu13CommandParser14ProcessCommandEv
7161 fun:_ZN3gpu12GpuScheduler10PutChangedEv
7162}
7163{
7164 bug_259789
7165 Memcheck:Uninitialized
7166 fun:_ZN7WebCore12_GLOBAL__N_116adjustAttributesERKNS_17GraphicsContext3D10AttributesEPNS_8SettingsE
7167 fun:_ZN7WebCore21WebGLRenderingContext19maybeRestoreContextEPNS_5TimerIS0_EE
7168 fun:_ZN7WebCore5TimerINS_21WebGLRenderingContextEE5firedEv
7169 fun:_ZN7WebCore12ThreadTimers24sharedTimerFiredInternalEv
7170 fun:_ZN7WebCore12ThreadTimers16sharedTimerFiredEv
7171 fun:_ZN11webkit_glue25WebKitPlatformSupportImpl9DoTimeoutEv
7172}
7173{
7174 bug_259799
7175 Memcheck:Leak
7176 fun:_Znw*
7177 fun:_ZN6WebKit16EditorClientImpl23requestCheckingOfStringEN3WTF10PassRefPtrIN7WebCore19TextCheckingRequestEEE
7178 fun:_ZN7WebCore12SpellChecker13invokeRequestEN3WTF10PassRefPtrINS_17SpellCheckRequestEEE
7179 fun:_ZN7WebCore12SpellChecker18requestCheckingForEN3WTF10PassRefPtrINS_17SpellCheckRequestEEE
7180 fun:_ZN7WebCore6Editor40markAllMisspellingsAndBadGrammarInRangesEjPNS_5RangeES2_
7181 fun:_ZN7WebCore6Editor33markMisspellingsAfterTypingToWordERKNS_15VisiblePositionERKNS_16VisibleSelectionE
7182 fun:_ZN7WebCore13TypingCommand27markMisspellingsAfterTypingENS0_14ETypingCommandE
7183 fun:_ZN7WebCore13TypingCommand24typingAddedToOpenCommandENS0_14ETypingCommandE
7184 fun:_ZN7WebCore13TypingCommand28insertTextRunWithoutNewlinesERKN3WTF6StringEb
7185 fun:_ZNK7WebCore26TypingCommandLineOperationclEmmb
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +01007186}
Ben Murdochca12bfa2013-07-23 11:17:05 +01007187{
7188 bug_262875
7189 Memcheck:Leak
7190 fun:_Znw*
7191 ...
7192 fun:_ZN3sql10Connection18GetCachedStatementERKNS_11StatementIDEPKc
7193 ...
7194 fun:_ZN15webkit_database15DatabaseTracker23UpgradeToCurrentVersionEv
7195 fun:_ZN15webkit_database15DatabaseTracker8LazyInitEv
7196 fun:_ZN15webkit_database15DatabaseTracker23GetAllOriginIdentifiersEPSt6vectorISsSaISsEE
7197 fun:_ZN15webkit_database12_GLOBAL__N_120GetOriginsOnDBThreadEPNS_15DatabaseTrackerEPSt3setI4GURLSt4lessIS4_ESaIS4_EE
7198}
Ben Murdocha3f7b4e2013-07-24 10:36:34 +01007199{
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +01007200 bug_268258
7201 Memcheck:Leak
7202 fun:malloc
7203 fun:_ZN3WTF10fastMallocEm
7204 fun:_ZN3WTF10StringImpl12createStaticEPKcjj
7205 fun:_ZN7WebCore*Names*init*
7206}
7207{
7208 bug_268267
7209 Memcheck:Leak
7210 fun:_Znw*
7211 fun:_ZNK4base8internal18WeakReferenceOwner6GetRefEv
7212 fun:_ZN4base14WeakPtrFactoryINS_12_GLOBAL__N_16TargetEE10GetWeakPtrEv
7213 fun:_ZN4base45WeakPtrTest_MoveOwnershipAfterInvalidate_Test8TestBodyEv
Ben Murdocha3f7b4e2013-07-24 10:36:34 +01007214}
Ben Murdoch2385ea32013-08-06 11:01:04 +01007215{
7216 bug_268368
7217 Memcheck:Leak
7218 fun:calloc
7219 fun:_dlerror_run
7220 ...
7221 fun:_ZN4base17LoadNativeLibraryERKNS_8FilePathEPSs
7222 fun:_ZN7content10PluginList17ReadWebPluginInfoERKN4base8FilePathEPNS_13WebPluginInfoE
7223 fun:_ZN7content10PluginList14ReadPluginInfoERKN4base8FilePathEPNS_13WebPluginInfoE
7224}
Ben Murdochbb1529c2013-08-08 10:24:53 +01007225{
7226 bug_269201
7227 Memcheck:Unaddressable
7228 ...
7229 fun:_ZN4base8internal17IncomingTaskQueue18AddToIncomingQueueERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEENS_9TimeDeltaEb
7230 fun:_ZN4base11MessageLoop8PostTaskERKN15tracked_objects8LocationERKNS_8CallbackIFvvEEE
7231 fun:_ZN8printing8PrintJob21UpdatePrintedDocumentEPNS_15PrintedDocumentE
7232 fun:_ZN8printing8PrintJob4StopEv
7233 }