Home
last modified time | relevance | path

Searched defs:ScopedHandle (Results 1 – 14 of 14) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_win.cc152 struct ScopedHandle { struct
153 ScopedHandle() : h_(nullptr) {} in ScopedHandle() function
154 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle() function
155 ~ScopedHandle() { in ~ScopedHandle()
159 HANDLE get() { return h_; } in get()
160 HANDLE *receive() { return &h_; } in receive()
161 HANDLE release() { in release()
166 HANDLE h_;
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_symbolizer_win.cpp182 struct ScopedHandle { struct
183 ScopedHandle() : h_(nullptr) {} in ScopedHandle() argument
184 explicit ScopedHandle(HANDLE h) : h_(h) {} in ScopedHandle() argument
185 ~ScopedHandle() { in ~ScopedHandle()
189 HANDLE get() { return h_; } in get()
190 HANDLE *receive() { return &h_; } in receive()
191 HANDLE release() { in release()
196 HANDLE h_;
/external/llvm-project/compiler-rt/lib/fuzzer/
DFuzzerUtilFuchsia.cpp239 struct ScopedHandle { in CrashHandler() struct
240 ~ScopedHandle() { _zx_handle_close(Handle); } in CrashHandler()
241 zx_handle_t Handle = ZX_HANDLE_INVALID; in CrashHandler()
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerUtilFuchsia.cpp239 struct ScopedHandle { in CrashHandler() struct
240 ~ScopedHandle() { _zx_handle_close(Handle); } in CrashHandler()
241 zx_handle_t Handle = ZX_HANDLE_INVALID; in CrashHandler()
/external/webrtc/modules/audio_device/win/
Dcore_audio_utility_win.h283 ScopedHandle() : handle_(nullptr) {} in ScopedHandle() function
284 explicit ScopedHandle(HANDLE h) : handle_(nullptr) { Set(h); } in ScopedHandle() function
/external/llvm-project/llvm/lib/Support/
DRandomNumberGenerator.cpp63 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DRandomNumberGenerator.cpp63 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local
/external/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp79 class ScopedHandle { class
85 ScopedHandle() in ScopedHandle() function in __anond6cdad920111::ScopedHandle
88 explicit ScopedHandle(handle_type handle) in ScopedHandle() function in __anond6cdad920111::ScopedHandle
/external/llvm-project/llvm/utils/KillTheDoctor/
DKillTheDoctor.cpp78 class ScopedHandle { class
84 ScopedHandle() in ScopedHandle() function in __anon008993c00111::ScopedHandle
87 explicit ScopedHandle(handle_type handle) in ScopedHandle() function in __anon008993c00111::ScopedHandle
/external/llvm/lib/Support/Windows/
DWindowsSupport.h98 ScopedHandle() in ScopedHandle() function
101 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Windows/
DWindowsSupport.h85 ScopedHandle() in ScopedHandle() function
88 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/external/llvm-project/llvm/include/llvm/Support/Windows/
DWindowsSupport.h85 ScopedHandle() in ScopedHandle() function
88 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DWindowsSupport.h99 ScopedHandle() in ScopedHandle() function
102 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/external/libchrome/mojo/public/cpp/system/
Dhandle.h200 typedef ScopedHandleBase<Handle> ScopedHandle; typedef