Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(637)

Side by Side Diff: tools/valgrind/memcheck/suppressions.txt

Issue 8596002: Valgrind: Suppress a leak in NotificationPanel. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # There are four kinds of suppressions in this file. 1 # There are four kinds of suppressions in this file.
2 # 1. third party stuff we have no control over 2 # 1. third party stuff we have no control over
3 # 3 #
4 # 2. intentional unit test errors, or stuff that is somehow a false positive 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 5 # in our own code, or stuff that is so trivial it's not worth fixing
6 # 6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed. 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). 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 9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions. 10 # running overnight and removing outdated bugs/suppressions.
(...skipping 5204 matching lines...) Expand 10 before | Expand all | Expand 10 after
5215 { 5215 {
5216 # ProcessSingleton::LinuxWatcher is marked DeleteOnIOThread. Sometimes it 5216 # ProcessSingleton::LinuxWatcher is marked DeleteOnIOThread. Sometimes it
5217 # leaks on shutdown instead of getting deleted. The destructor doesn't do 5217 # leaks on shutdown instead of getting deleted. The destructor doesn't do
5218 # anything important, so this shouldn't be a big deal. 5218 # anything important, so this shouldn't be a big deal.
5219 bug_104578 5219 bug_104578
5220 Memcheck:Leak 5220 Memcheck:Leak
5221 fun:_Znw* 5221 fun:_Znw*
5222 fun:_ZN16ProcessSingletonC1ERK8FilePath 5222 fun:_ZN16ProcessSingletonC1ERK8FilePath
5223 fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv 5223 fun:_ZN22ChromeBrowserMainParts25PreMainMessageLoopRunImplEv
5224 } 5224 }
5225 {
5226 bug_104690
5227 Memcheck:Leak
5228 fun:malloc
5229 fun:g_malloc
5230 fun:g_slice_alloc
5231 fun:g_slice_alloc0
5232 fun:g_type_create_instance
5233 fun:g_object_constructor
5234 fun:g_object_newv
5235 fun:g_object_new
5236 fun:gtk_views_fixed_new
5237 fun:_ZN5views15NativeWidgetGtk15CreateGtkWidgetERKNS_6Widget10InitParamsE
5238 fun:_ZN5views15NativeWidgetGtk16InitNativeWidgetERKNS_6Widget10InitParamsE
5239 fun:_ZN5views6Widget4InitERKNS0_10InitParamsE
5240 fun:_ZN8chromeos17NotificationPanel4ShowEv
5241 fun:_ZN8chromeos17NotificationPanel3AddEP7Balloon
5242 fun:_ZN8chromeos21BalloonCollectionImpl21AddSystemNotificationERK12Notificati onP7Profilebb
5243 fun:_ZN8chromeos18SystemNotification4ShowERKSbItN4base20string16_char_traitsE SaItEES6_RKNS1_8CallbackIFvPKNS1_9ListValueEEEEbb
5244 fun:_ZN8chromeos18SystemNotification4ShowERKSbItN4base20string16_char_traitsE SaItEEbb
5245 fun:_ZN8chromeos18LowBatteryObserver4ShowEN4base9TimeDeltaEb
5246 fun:_ZN8chromeos18LowBatteryObserver12PowerChangedERKNS_17PowerSupplyStatusE
5247 fun:_ZN8chromeos26PowerManagerClientStubImpl6UpdateEv
5248 }
5225 5249
5226 #----------------------------------------------------------------------- 5250 #-----------------------------------------------------------------------
5227 # 4. These only occur on our Google workstations 5251 # 4. These only occur on our Google workstations
5228 { 5252 {
5229 bug_todo_freeres 5253 bug_todo_freeres
5230 Memcheck:Free 5254 Memcheck:Free
5231 fun:free 5255 fun:free
5232 fun:__libc_freeres 5256 fun:__libc_freeres
5233 fun:_vgnU_freeres 5257 fun:_vgnU_freeres
5234 fun:_Exit 5258 fun:_Exit
(...skipping 17 matching lines...) Expand all
5252 obj:/lib/libselinux.so.1 5276 obj:/lib/libselinux.so.1
5253 obj:/lib/libselinux.so.1 5277 obj:/lib/libselinux.so.1
5254 } 5278 }
5255 { 5279 {
5256 bug_todo_grep 5280 bug_todo_grep
5257 Memcheck:Leak 5281 Memcheck:Leak
5258 fun:malloc 5282 fun:malloc
5259 obj:/bin/grep 5283 obj:/bin/grep
5260 obj:/bin/grep 5284 obj:/bin/grep
5261 } 5285 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698