Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Windows/
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 …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DWindowsSupport.h92 class ScopedHandle {
96 ScopedHandle(const ScopedHandle &other); // = delete;
97 void operator=(const ScopedHandle &other); // = delete;
99 ScopedHandle() in ScopedHandle() function
102 explicit ScopedHandle(handle_type h) in ScopedHandle() function
105 ~ScopedHandle() { in ~ScopedHandle()
116 ScopedHandle &operator=(handle_type h) {
195 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
196 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle;
197 typedef ScopedHandle<CryptContextTraits> ScopedCryptContext;
[all …]
/third_party/gn/src/base/win/
Dscoped_process_information.h62 ScopedHandle process_handle_;
63 ScopedHandle thread_handle_;
Dscoped_process_information.cc18 bool CheckAndDuplicateHandle(HANDLE source, ScopedHandle* target) { in CheckAndDuplicateHandle()
Dscoped_handle.h163 typedef GenericScopedHandle<HandleTraits, VerifierTraits> ScopedHandle; typedef
/third_party/gn/src/gn/
Dexec_process.cc64 base::win::ScopedHandle scoped_out_read(out_read); in ExecProcess()
65 base::win::ScopedHandle scoped_out_write(out_write); in ExecProcess()
74 base::win::ScopedHandle scoped_err_read(err_read); in ExecProcess()
75 base::win::ScopedHandle scoped_err_write(err_write); in ExecProcess()
Dfile_writer.h68 base::win::ScopedHandle file_;
Dfile_writer.cc34 file_ = base::win::ScopedHandle(::CreateFile( in Create()
/third_party/gn/src/base/files/
Dfile_util_win.cc439 win::ScopedHandle file_handle( in NormalizeToNativeFilePath()
448 win::ScopedHandle file_map_handle( in NormalizeToNativeFilePath()
533 win::ScopedHandle file(CreateFile(ToWCharT(&filename.value()), GENERIC_READ, in ReadFile()
548 win::ScopedHandle file(CreateFile(ToWCharT(&filename.value()), GENERIC_WRITE, in WriteFile()
575 win::ScopedHandle file(CreateFile(ToWCharT(&filename.value()), in AppendToFile()
Dplatform_file.h25 using ScopedPlatformFile = ::base::win::ScopedHandle;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DRandomNumberGenerator.cpp63 ScopedCryptContext ScopedHandle(hProvider); in getRandomBytes() local