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

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

Issue 10701050: net: Implement canceling of all async operations in FileStream. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Correct fix for UploadFileElementReader Created 8 years, 3 months 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
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 6016 matching lines...) Expand 10 before | Expand all | Expand 10 after
6027 bug_149748b 6027 bug_149748b
6028 Memcheck:Unaddressable 6028 Memcheck:Unaddressable
6029 ... 6029 ...
6030 fun:*SkPath* 6030 fun:*SkPath*
6031 ... 6031 ...
6032 fun:_ZN8SkDevice8drawRectERK6SkDrawRK6SkRectRK7SkPaint 6032 fun:_ZN8SkDevice8drawRectERK6SkDrawRK6SkRectRK7SkPaint
6033 fun:_ZN8SkCanvas8drawRectERK6SkRectRK7SkPaint 6033 fun:_ZN8SkCanvas8drawRectERK6SkRectRK7SkPaint
6034 fun:_ZN7WebCore15GraphicsContext10strokeRectERKNS_9FloatRectEf 6034 fun:_ZN7WebCore15GraphicsContext10strokeRectERKNS_9FloatRectEf
6035 fun:_ZNK7WebCore13RenderSVGRect11strokeShapeEPNS_15GraphicsContextE 6035 fun:_ZNK7WebCore13RenderSVGRect11strokeShapeEPNS_15GraphicsContextE
6036 } 6036 }
6037 {
6038 FileStream::Context can leak through WorkerPool by design
6039 Memcheck:Leak
6040 fun:_Znw*
6041 fun:_ZN3net10FileStreamC1EPNS_6NetLogE
6042 ...
6043 }
6037 6044
6038 #----------------------------------------------------------------------- 6045 #-----------------------------------------------------------------------
6039 # 4. These only occur on our Google workstations 6046 # 4. These only occur on our Google workstations
6040 6047
6041 { 6048 {
6042 bug_todo_getdelim 6049 bug_todo_getdelim
6043 Memcheck:Leak 6050 Memcheck:Leak
6044 fun:malloc 6051 fun:malloc
6045 fun:getdelim 6052 fun:getdelim
6046 ... 6053 ...
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
6079 Memcheck:Leak 6086 Memcheck:Leak
6080 fun:malloc 6087 fun:malloc
6081 fun:get_peer_sock_name 6088 fun:get_peer_sock_name
6082 fun:_xcb_get_auth_info 6089 fun:_xcb_get_auth_info
6083 fun:xcb_connect_to_display_with_auth_info 6090 fun:xcb_connect_to_display_with_auth_info
6084 fun:_XConnectXCB 6091 fun:_XConnectXCB
6085 fun:XOpenDisplay 6092 fun:XOpenDisplay
6086 fun:_ZN4base18MessagePumpAuraX1118GetDefaultXDisplayEv 6093 fun:_ZN4base18MessagePumpAuraX1118GetDefaultXDisplayEv
6087 } 6094 }
6088 6095
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698