| OLD | NEW |
| 1 ; Copyright 2016 Google Inc. All Rights Reserved. | 1 ; Copyright 2016 Google Inc. All Rights Reserved. |
| 2 ; | 2 ; |
| 3 ; Licensed under the Apache License, Version 2.0 (the "License"); | 3 ; Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 ; you may not use this file except in compliance with the License. | 4 ; you may not use this file except in compliance with the License. |
| 5 ; You may obtain a copy of the License at | 5 ; You may obtain a copy of the License at |
| 6 ; | 6 ; |
| 7 ; http://www.apache.org/licenses/LICENSE-2.0 | 7 ; http://www.apache.org/licenses/LICENSE-2.0 |
| 8 ; | 8 ; |
| 9 ; Unless required by applicable law or agreed to in writing, software | 9 ; Unless required by applicable law or agreed to in writing, software |
| 10 ; distributed under the License is distributed on an "AS IS" BASIS, | 10 ; distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 ; Breakpad-like exception filter. | 76 ; Breakpad-like exception filter. |
| 77 asan_CrashForException | 77 asan_CrashForException |
| 78 | 78 |
| 79 ; Functions exposed to enable/disable the deferred trimming mechanism. | 79 ; Functions exposed to enable/disable the deferred trimming mechanism. |
| 80 asan_EnableDeferredFreeThread | 80 asan_EnableDeferredFreeThread |
| 81 asan_DisableDeferredFreeThread | 81 asan_DisableDeferredFreeThread |
| 82 | 82 |
| 83 ; Exposed to allow the user to enumerate runtime experiments. | 83 ; Exposed to allow the user to enumerate runtime experiments. |
| 84 asan_EnumExperiments | 84 asan_EnumExperiments |
| 85 | 85 |
| 86 ; Initialize the SyzyAsan crash reporter. |
| 87 asan_InitializeCrashHandler |
| 88 |
| 86 ; Generated system intercepts | 89 ; Generated system intercepts |
| 87 asan_ReadFile | 90 asan_ReadFile |
| 88 asan_ReadFileEx | 91 asan_ReadFileEx |
| 89 asan_WriteFile | 92 asan_WriteFile |
| 90 asan_WriteFileEx | 93 asan_WriteFileEx |
| 91 asan_InterlockedCompareExchange | 94 asan_InterlockedCompareExchange |
| 92 asan_InterlockedIncrement | 95 asan_InterlockedIncrement |
| 93 asan_InterlockedDecrement | 96 asan_InterlockedDecrement |
| 94 asan_InterlockedExchange | 97 asan_InterlockedExchange |
| 95 asan_InterlockedExchangeAdd | 98 asan_InterlockedExchangeAdd |
| OLD | NEW |