Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h78 class ScopedHandle {
82 ScopedHandle(const ScopedHandle &other) = delete;
83 void operator=(const ScopedHandle &other) = delete;
85 ScopedHandle() in ScopedHandle() function
88 explicit ScopedHandle(handle_type h) in ScopedHandle() function
91 ~ScopedHandle() { in ~ScopedHandle()
102 ScopedHandle &operator=(handle_type h) {
181 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
182 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle;
183 typedef ScopedHandle<CryptContextTraits> ScopedCryptContext;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp78 class ScopedHandle { class
84 ScopedHandle() in ScopedHandle() function in __anon46c0b0140111::ScopedHandle
87 explicit ScopedHandle(handle_type handle) in ScopedHandle() function in __anon46c0b0140111::ScopedHandle
90 ~ScopedHandle() { in ~ScopedHandle()
94 ScopedHandle& operator=(handle_type handle) { in operator =()
165 typedef ScopedHandle<FileMappingHandle> FileMappingScopedHandle;
166 typedef ScopedHandle<MappedViewOfFileHandle> MappedViewOfFileScopedHandle;
167 typedef ScopedHandle<ProcessHandle> ProcessScopedHandle;
168 typedef ScopedHandle<ThreadHandle> ThreadScopedHandle;
169 typedef ScopedHandle<TokenHandle> TokenScopedHandle;
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc180 struct ScopedHandle { struct
181 ScopedHandle() : h_(nullptr) {} in ScopedHandle() argument
182 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle() argument
183 ~ScopedHandle() { in ~ScopedHandle() argument
200 ScopedHandle stdin_read, stdin_write; in StartSymbolizerSubprocess()
201 ScopedHandle stdout_read, stdout_write; in StartSymbolizerSubprocess()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc178 struct ScopedHandle { struct
179 ScopedHandle() : h_(nullptr) {} in ScopedHandle() function
180 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle() argument
181 ~ScopedHandle() { in ~ScopedHandle() argument
198 ScopedHandle stdin_read, stdin_write; in StartSymbolizerSubprocess()
199 ScopedHandle stdout_read, stdout_write; in StartSymbolizerSubprocess()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_symbolizer_win.cpp183 struct ScopedHandle { struct
184 ScopedHandle() : h_(nullptr) {} in ScopedHandle() argument
185 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle() function
186 ~ScopedHandle() { in ~ScopedHandle() argument
203 ScopedHandle stdin_read, stdin_write; in StartSymbolizerSubprocess()
204 ScopedHandle stdout_read, stdout_write; in StartSymbolizerSubprocess()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerUtilFuchsia.cpp216 struct ScopedHandle { in CrashHandler() struct
217 ~ScopedHandle() { _zx_handle_close(Handle); } in CrashHandler() argument
225 ScopedHandle Port; in CrashHandler()
246 ScopedHandle Thread; in CrashHandler()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DRandomNumberGenerator.cpp63 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local