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

  /external/chromium/base/win/
scoped_handle.h 23 // ScopedHandle hfile(CreateFile(...));
33 class ScopedHandle {
35 ScopedHandle() : handle_(NULL) {
38 explicit ScopedHandle(HANDLE h) : handle_(NULL) {
42 ~ScopedHandle() {
84 DISALLOW_COPY_AND_ASSIGN(ScopedHandle);
  /external/llvm/lib/Support/Windows/
Windows.h 46 class ScopedHandle {
50 ScopedHandle(const ScopedHandle &other); // = delete;
51 void operator=(const ScopedHandle &other); // = delete;
53 ScopedHandle()
56 explicit ScopedHandle(handle_type h)
59 ~ScopedHandle() {
70 ScopedHandle &operator=(handle_type h) {
133 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
134 typedef ScopedHandle<FileHandleTraits> ScopedFileHandle
    [all...]
  /external/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...]

Completed in 115 milliseconds