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

  /external/llvm/lib/Support/Windows/
WindowsSupport.h 59 class ScopedHandle {
63 ScopedHandle(const ScopedHandle &other); // = delete;
64 void operator=(const ScopedHandle &other); // = delete;
66 ScopedHandle()
69 explicit ScopedHandle(handle_type h)
72 ~ScopedHandle() {
83 ScopedHandle &operator=(handle_type h) {
146 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
147 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle
    [all...]
  /external/chromium_org/base/win/
scoped_handle.h 165 typedef GenericScopedHandle<HandleTraits, VerifierTraits> ScopedHandle;
169 // for ScopedHandle.
174 // tracked by the handle verifier and ScopedHandle is not the one closing it,
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 78 class ScopedHandle {
84 ScopedHandle()
87 explicit ScopedHandle(handle_type handle)
90 ~ScopedHandle() {
94 ScopedHandle& operator=(handle_type handle) {
165 typedef ScopedHandle<FileMappingHandle> FileMappingScopedHandle;
166 typedef ScopedHandle<MappedViewOfFileHandle> MappedViewOfFileScopedHandle;
167 typedef ScopedHandle<ProcessHandle> ProcessScopedHandle;
168 typedef ScopedHandle<ThreadHandle> ThreadScopedHandle;
169 typedef ScopedHandle<TokenHandle> TokenScopedHandle
    [all...]
  /external/chromium_org/mojo/public/cpp/system/
handle.h 43 // |ScopedHandle| is just (a typedef of) a |ScopedHandleBase<Handle>|.
46 // |ScopedMessagePipeHandle| is *not* a (subclass of) |ScopedHandle|.
74 // have to be all of the same type (probably |Handle|/|ScopedHandle|). Fourth,
192 typedef ScopedHandleBase<Handle> ScopedHandle;
193 MOJO_COMPILE_ASSERT(sizeof(ScopedHandle) == sizeof(Handle),

Completed in 199 milliseconds