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

  /external/llvm/lib/Support/Windows/
WindowsSupport.h 67 class ScopedHandle {
71 ScopedHandle(const ScopedHandle &other); // = delete;
72 void operator=(const ScopedHandle &other); // = delete;
74 ScopedHandle()
77 explicit ScopedHandle(handle_type h)
80 ~ScopedHandle() {
91 ScopedHandle &operator=(handle_type h) {
154 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
155 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle
    [all...]
  /external/libchrome/base/synchronization/
waitable_event.h 56 explicit WaitableEvent(win::ScopedHandle event_handle);
140 win::ScopedHandle handle_;
  /external/libchrome/base/files/
memory_mapped_file.h 95 win::ScopedHandle file_mapping_;
file.h 319 win::ScopedHandle file_;
  /external/libchrome/base/process/
process.h 135 win::ScopedHandle process_;
  /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/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/libchrome/base/message_loop/
message_loop_unittest.cc 332 win::ScopedHandle event(CreateEvent(NULL, FALSE, FALSE, NULL));
376 win::ScopedHandle event(CreateEvent(NULL, FALSE, FALSE, NULL));
510 win::ScopedHandle file_;
547 win::ScopedHandle callback_called(CreateEvent(NULL, TRUE, FALSE, NULL));
551 win::ScopedHandle server(
580 win::ScopedHandle callback1_called(
582 win::ScopedHandle callback2_called(
589 win::ScopedHandle server1(
591 win::ScopedHandle server2(
    [all...]

Completed in 790 milliseconds