HomeSort by relevance Sort by last modified time
    Searched defs:ScopedHandle (Results 1 - 7 of 7) sorted by null

  /external/swiftshader/third_party/LLVM/lib/Support/Windows/
Windows.h 67 class ScopedHandle {
71 ScopedHandle() : Handle(InvalidHandle) {}
72 ScopedHandle(HandleType handle) : Handle(handle) {}
74 ~ScopedHandle() {
87 ScopedHandle &operator=(HandleType handle) {
105 typedef ScopedHandle<HANDLE, uintptr_t(-1),
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_win.cc 152 struct ScopedHandle {
153 ScopedHandle() : h_(nullptr) {}
154 explicit ScopedHandle(HANDLE h) : h_(h) {}
155 ~ScopedHandle() {
172 ScopedHandle stdin_read, stdin_write;
173 ScopedHandle stdout_read, stdout_write;
  /external/llvm/lib/Support/Windows/
WindowsSupport.h 91 class ScopedHandle {
95 ScopedHandle(const ScopedHandle &other); // = delete;
96 void operator=(const ScopedHandle &other); // = delete;
98 ScopedHandle()
101 explicit ScopedHandle(handle_type h)
104 ~ScopedHandle() {
115 ScopedHandle &operator=(handle_type h) {
194 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
195 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle
    [all...]
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 79 class ScopedHandle {
85 ScopedHandle()
88 explicit ScopedHandle(handle_type handle)
91 ~ScopedHandle() {
95 ScopedHandle& operator=(handle_type handle) {
166 typedef ScopedHandle<FileMappingHandle> FileMappingScopedHandle;
167 typedef ScopedHandle<MappedViewOfFileHandle> MappedViewOfFileScopedHandle;
168 typedef ScopedHandle<ProcessHandle> ProcessScopedHandle;
169 typedef ScopedHandle<ThreadHandle> ThreadScopedHandle;
170 typedef ScopedHandle<TokenHandle> TokenScopedHandle
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
WindowsSupport.h 92 class ScopedHandle {
96 ScopedHandle(const ScopedHandle &other); // = delete;
97 void operator=(const ScopedHandle &other); // = delete;
99 ScopedHandle()
102 explicit ScopedHandle(handle_type h)
105 ~ScopedHandle() {
116 ScopedHandle &operator=(handle_type h) {
195 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
196 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle
    [all...]
  /external/swiftshader/third_party/LLVM/utils/KillTheDoctor/
KillTheDoctor.cpp 74 class ScopedHandle {
80 ScopedHandle()
83 explicit ScopedHandle(handle_type handle)
86 ~ScopedHandle() {
90 ScopedHandle& operator=(handle_type handle) {
161 typedef ScopedHandle<FileMappingHandle> FileMappingScopedHandle;
162 typedef ScopedHandle<MappedViewOfFileHandle> MappedViewOfFileScopedHandle;
163 typedef ScopedHandle<ProcessHandle> ProcessScopedHandle;
164 typedef ScopedHandle<ThreadHandle> ThreadScopedHandle;
165 typedef ScopedHandle<TokenHandle> TokenScopedHandle
    [all...]
  /external/libmojo/mojo/public/cpp/system/
handle.h 45 // |ScopedHandle| is just (a typedef of) a |ScopedHandleBase<Handle>|.
48 // |ScopedMessagePipeHandle| is *not* a (subclass of) |ScopedHandle|.
183 typedef ScopedHandleBase<Handle> ScopedHandle;
184 static_assert(sizeof(ScopedHandle) == sizeof(Handle),
185 "Bad size for C++ ScopedHandle");

Completed in 562 milliseconds