Searched defs:ScopedHandle (Results 1 - 3 of 3) sorted by relevance

/external/chromium/base/win/
H A Dscoped_handle.h23 // ScopedHandle hfile(CreateFile(...));
33 class ScopedHandle { class in namespace:base::win
35 ScopedHandle() : handle_(NULL) { function in class:base::win::ScopedHandle
38 explicit ScopedHandle(HANDLE h) : handle_(NULL) { function in class:base::win::ScopedHandle
42 ~ScopedHandle() {
84 DISALLOW_COPY_AND_ASSIGN(ScopedHandle);
/external/llvm/lib/Support/Windows/
H A DWindows.h46 class ScopedHandle { class
50 ScopedHandle(const ScopedHandle &other); // = delete;
51 void operator=(const ScopedHandle &other); // = delete;
53 ScopedHandle() function in class:ScopedHandle
56 explicit ScopedHandle(handle_type h) function in class:ScopedHandle
59 ~ScopedHandle() {
70 ScopedHandle &operator=(handle_type h) {
133 typedef ScopedHandle<CommonHandleTraits> ScopedCommonHandle;
134 typedef ScopedHandle<FileHandleTrait
[all...]
/external/llvm/utils/KillTheDoctor/
H A DKillTheDoctor.cpp74 class ScopedHandle { class in namespace:__anon9295
80 ScopedHandle() function in class:__anon9295::ScopedHandle
83 explicit ScopedHandle(handle_type handle) function in class:__anon9295::ScopedHandle
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<TokenHandl
[all...]

Completed in 96 milliseconds