Home | History | Annotate | Download | only in win

Lines Matching defs:handle_

35   ScopedHandle() : handle_(NULL) {
38 explicit ScopedHandle(HANDLE h) : handle_(NULL) {
49 return handle_ != NULL;
57 handle_ = new_handle;
61 return handle_;
64 operator HANDLE() { return handle_; }
68 HANDLE h = handle_;
69 handle_ = NULL;
74 if (handle_) {
75 if (!::CloseHandle(handle_)) {
78 handle_ = NULL;
83 HANDLE handle_;