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

  /external/qemu/android/base/files/
ScopedHandle.h 30 class ScopedHandle {
33 ScopedHandle() : handle_(INVALID_HANDLE_VALUE) {}
36 explicit ScopedHandle(HANDLE handle) : handle_(handle) {}
39 ~ScopedHandle() { close(); }
62 // Swap the content of two ScopedHandle instances.
63 void swap(ScopedHandle* other) {
70 DISALLOW_COPY_AND_ASSIGN(ScopedHandle);
  /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 169 typedef GenericScopedHandle<HandleTraits, DummyVerifierTraits> ScopedHandle;
  /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/
core.h 45 // |ScopedHandle| is just (a typedef of) a |ScopedHandleBase<Handle>|.
48 // |ScopedMessagePipeHandle| is *not* a (subclass of) |ScopedHandle|.
76 // have to be all of the same type (probably |Handle|/|ScopedHandle|). Fourth,
200 typedef ScopedHandleBase<Handle> ScopedHandle;
201 MOJO_COMPILE_ASSERT(sizeof(ScopedHandle) == sizeof(Handle),

Completed in 221 milliseconds