Home | History | Annotate | Download | only in win

Lines Matching refs:HANDLE

17 // Used so we always remember to close the handle.
28 // To sqirrel the handle away somewhere else:
31 // To explicitly close the handle:
38 explicit ScopedHandle(HANDLE h) : handle_(NULL) {
52 void Set(HANDLE new_handle) {
60 HANDLE Get() {
64 operator HANDLE() { return handle_; }
66 HANDLE Take() {
68 HANDLE h = handle_;
83 HANDLE handle_;