Home
last modified time | relevance | path

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

/aosp_15_r20/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_win.cc152 struct ScopedHandle { struct
153 ScopedHandle() : h_(nullptr) {} in ScopedHandle() argument
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_;
/aosp_15_r20/external/rust/android-crates-io/crates/libfuzzer-sys/libfuzzer/
DFuzzerUtilFuchsia.cpp223 struct ScopedHandle { in CrashHandler() struct
224 ~ScopedHandle() { _zx_handle_close(Handle); } in CrashHandler()
225 zx_handle_t Handle = ZX_HANDLE_INVALID; in CrashHandler()
/aosp_15_r20/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp79 class ScopedHandle { class
85 ScopedHandle() in ScopedHandle() function in __anon88ebdf810111::ScopedHandle
88 explicit ScopedHandle(handle_type handle) in ScopedHandle() function in __anon88ebdf810111::ScopedHandle
/aosp_15_r20/external/cronet/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/threading/
H A Dplatform_thread_win_for_testing.cc27 class ScopedHandle { class
29 ScopedHandle() : handle_(INVALID_HANDLE_VALUE) {} in ScopedHandle() function in partition_alloc::internal::base::__anonf23c53000111::ScopedHandle
/aosp_15_r20/external/webrtc/modules/audio_device/win/
H A Dcore_audio_utility_win.h219 ScopedHandle() : handle_(nullptr) {} in ScopedHandle() function
220 explicit ScopedHandle(HANDLE h) : handle_(nullptr) { Set(h); } in ScopedHandle() function
/aosp_15_r20/external/cronet/base/win/
H A Dscoped_handle.h199 using ScopedHandle = CheckedScopedHandle; variable
201 using ScopedHandle = UncheckedScopedHandle; variable
H A Dscoped_handle_unittest.cc47 TEST_F(ScopedHandleTest, ScopedHandle) { in TEST_F() argument
/aosp_15_r20/external/llvm/lib/Support/Windows/
H A DWindowsSupport.h98 ScopedHandle() in ScopedHandle() function
101 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/Support/Windows/
DWindowsSupport.h88 ScopedHandle() in ScopedHandle() function
91 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h88 ScopedHandle() in ScopedHandle() function
91 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/Support/Windows/
DWindowsSupport.h88 ScopedHandle() in ScopedHandle() function
91 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h85 ScopedHandle() in ScopedHandle() function
88 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/Support/Windows/
DWindowsSupport.h88 ScopedHandle() in ScopedHandle() function
91 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/Support/Windows/
DWindowsSupport.h88 ScopedHandle() in ScopedHandle() function
91 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
H A DWindowsSupport.h99 ScopedHandle() in ScopedHandle() function
102 explicit ScopedHandle(handle_type h) in ScopedHandle() function
/aosp_15_r20/external/leveldb/util/
H A Denv_windows.cc70 class ScopedHandle { class
72 ScopedHandle(HANDLE handle) : handle_(handle) {} in ScopedHandle() function in leveldb::__anon0d865ec80111::ScopedHandle
74 ScopedHandle(ScopedHandle&& other) noexcept : handle_(other.Release()) {} in ScopedHandle() function in leveldb::__anon0d865ec80111::ScopedHandle
/aosp_15_r20/external/cronet/base/
H A Dsync_socket.h31 using ScopedHandle = ScopedPlatformFile; variable
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DRandomNumberGenerator.cpp63 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
H A DRandomNumberGenerator.cpp73 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local
/aosp_15_r20/hardware/google/aemu/base/include/aemu/base/system/
DWin32Utils.h85 using ScopedHandle = std::unique_ptr<void, HandleCloser>; variable
/aosp_15_r20/external/libchrome/mojo/public/cpp/system/
H A Dhandle.h200 typedef ScopedHandleBase<Handle> ScopedHandle; typedef
/aosp_15_r20/external/cronet/ipc/
H A Dipc_message_utils_unittest.cc273 TEST(IPCMessageUtilsTest, ScopedHandle) { in TEST() argument