Home
last modified time | relevance | path

Searched refs:ScopedHandle (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h81 class ScopedHandle {
85 ScopedHandle(const ScopedHandle &other) = delete;
86 void operator=(const ScopedHandle &other) = delete;
88 ScopedHandle() in ScopedHandle() function
91 explicit ScopedHandle(handle_type h) in ScopedHandle() function
94 ~ScopedHandle() { in ~ScopedHandle()
105 ScopedHandle &operator=(handle_type h) {
184 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
185 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle;
186 typedef ScopedHandle<CryptContextTraits> ScopedCryptContext;
[all …]
/src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp181 struct ScopedHandle { struct
182 ScopedHandle() : h_(nullptr) {} in ScopedHandle() function
183 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle() argument
184 ~ScopedHandle() { in ~ScopedHandle() argument
201 ScopedHandle stdin_read, stdin_write; in StartSymbolizerSubprocess()
202 ScopedHandle stdout_read, stdout_write; in StartSymbolizerSubprocess()
/src/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilFuchsia.cpp270 struct ScopedHandle { in CrashHandler() struct
271 ~ScopedHandle() { _zx_handle_close(Handle); } in CrashHandler() argument
279 ScopedHandle Channel; in CrashHandler()
311 ScopedHandle Exception; in CrashHandler()
330 ScopedHandle Thread; in CrashHandler()
/src/contrib/llvm-project/llvm/lib/Support/
H A DRandomNumberGenerator.cpp75 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local