| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #ifndef WEBRTC_BASE_SANITIZER_H_ | 11 #ifndef WEBRTC_RTC_BASE_SANITIZER_H_ |
| 12 #define WEBRTC_BASE_SANITIZER_H_ | 12 #define WEBRTC_RTC_BASE_SANITIZER_H_ |
| 13 | 13 |
| 14 #if defined(__has_feature) | 14 #if defined(__has_feature) |
| 15 #if __has_feature(address_sanitizer) | 15 #if __has_feature(address_sanitizer) |
| 16 #define RTC_HAS_ASAN 1 | 16 #define RTC_HAS_ASAN 1 |
| 17 #endif | 17 #endif |
| 18 #if __has_feature(memory_sanitizer) | 18 #if __has_feature(memory_sanitizer) |
| 19 #define RTC_HAS_MSAN 1 | 19 #define RTC_HAS_MSAN 1 |
| 20 #endif | 20 #endif |
| 21 #endif | 21 #endif |
| 22 #ifndef RTC_HAS_ASAN | 22 #ifndef RTC_HAS_ASAN |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 106 |
| 107 template <typename T> | 107 template <typename T> |
| 108 inline void MsanCheckInitialized(const T& mem) { | 108 inline void MsanCheckInitialized(const T& mem) { |
| 109 rtc_MsanCheckInitialized(mem.data(), sizeof(mem.data()[0]), mem.size()); | 109 rtc_MsanCheckInitialized(mem.data(), sizeof(mem.data()[0]), mem.size()); |
| 110 } | 110 } |
| 111 | 111 |
| 112 } // namespace rtc | 112 } // namespace rtc |
| 113 | 113 |
| 114 #endif // __cplusplus | 114 #endif // __cplusplus |
| 115 | 115 |
| 116 #endif // WEBRTC_BASE_SANITIZER_H_ | 116 #endif // WEBRTC_RTC_BASE_SANITIZER_H_ |
| OLD | NEW |