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

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

Issue 2054683002: Add suppressions for memcheck errors. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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
« 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 # This file is used in addition to the one already maintained in Chrome. 1 # This file is used in addition to the one already maintained in Chrome.
2 # It acts as a place holder for future additions for WebRTC. 2 # It acts as a place holder for future additions for WebRTC.
3 # It must exist for the Python wrapper script to work properly. 3 # It must exist for the Python wrapper script to work properly.
4 4
5 # There are three kinds of suppressions in this file. 5 # There are three kinds of suppressions in this file.
6 # 1. third_party libraries 6 # 1. third_party libraries
7 # 2. webrtc stuff 7 # 2. webrtc stuff
8 # 3. libjingle stuff (talk folder) 8 # 3. libjingle stuff (talk folder)
9 #----------------------------------------------------------------------- 9 #-----------------------------------------------------------------------
10 10
11 # third_party libraries 11 # third_party libraries
12 12
13 { 13 {
14 libnss_leak_hitting_trusty_machines 14 libnss_leak_hitting_trusty_machines
15 Memcheck:Leak 15 Memcheck:Leak
16 fun:calloc 16 fun:calloc
17 obj:/usr/lib/x86_64-linux-gnu/libnss3.so 17 obj:/usr/lib/x86_64-linux-gnu/libnss3.so
18 ... 18 ...
19 fun:NSS_NoDB_Init 19 fun:NSS_NoDB_Init
20 ... 20 ...
21 } 21 }
22 { 22 {
23 libc_free_hitting_gce_vms 23 libc_free_hitting_gce_vms
24 Memcheck:Free 24 Memcheck:Free
25 fun:free 25 fun:free
26 fun:__libc_freeres 26 fun:__libc_freeres
27 fun:_vgnU_freeres 27 fun:_vgnU_freeres
28 ... 28 ...
29 } 29 }
30 {
31 Ubuntu_Precise_Itoa_Optimized_Code
32 Memcheck:Uninitialized
33 fun:_itoa_word
34 fun:vfprintf
35 fun:vsnprintf
36 fun:snprintf
37 ...
38 }
30 39
31 #----------------------------------------------------------------------- 40 #-----------------------------------------------------------------------
32 # webrtc stuff 41 # webrtc stuff
33 { 42 {
34 bug_3446 43 bug_3446
35 Memcheck:Uninitialized 44 Memcheck:Uninitialized
36 fun:vp8cx_pick_filter_level_fast 45 fun:vp8cx_pick_filter_level_fast
37 fun:vp8_loopfilter_frame 46 fun:vp8_loopfilter_frame
38 fun:encode_frame_to_data_rate 47 fun:encode_frame_to_data_rate
39 fun:vp8_get_compressed_data 48 fun:vp8_get_compressed_data
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 fun:silk_NLSF_encode 422 fun:silk_NLSF_encode
414 fun:silk_process_NLSFs 423 fun:silk_process_NLSFs
415 fun:silk_process_NLSFs_FLP 424 fun:silk_process_NLSFs_FLP
416 fun:silk_find_pred_coefs_FLP 425 fun:silk_find_pred_coefs_FLP
417 fun:silk_encode_frame_FLP 426 fun:silk_encode_frame_FLP
418 fun:silk_Encode 427 fun:silk_Encode
419 fun:opus_encode_native 428 fun:opus_encode_native
420 fun:opus_encode 429 fun:opus_encode
421 fun:WebRtcOpus_Encode 430 fun:WebRtcOpus_Encode
422 } 431 }
432 {
433 bug_5983
434 Memcheck:Uninitialized
435 fun:_ZN6webrtc11DataChannel4InitERKNS_23InternalDataChannelInitE
436 ...
437 }
438 {
439 bug_5984
440 Memcheck:Uninitialized
441 fun:_ZN6webrtc15GainControlImpl19ProcessCaptureAudioEPNS_11AudioBufferEb
442 ...
443 }
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