Home | History | Annotate | Download | only in Windows

Lines Matching refs:_handle

99   if (_handle == INVALID_HANDLE_VALUE)

101 if (!::FindClose(_handle))
103 _handle = INVALID_HANDLE_VALUE;
113 _handle = ::FindFirstFile(wildcard, &fd);
115 if (_handle == INVALID_HANDLE_VALUE)
119 _handle = ::FindFirstFileW(longPath, &fd);
122 if (_handle == INVALID_HANDLE_VALUE)
136 _handle = ::FindFirstFileW(wildcard, &fd);
138 if (_handle == INVALID_HANDLE_VALUE)
142 _handle = ::FindFirstFileW(longPath, &fd);
145 if (_handle != INVALID_HANDLE_VALUE)
151 _handle = ::FindFirstFileA(UnicodeStringToMultiByte(wildcard,
153 if (_handle != INVALID_HANDLE_VALUE)
156 return (_handle != INVALID_HANDLE_VALUE);
163 bool result = BOOLToBool(::FindNextFile(_handle, &fd));
175 if (!::FindNextFileW(_handle, &fd))
182 if (!::FindNextFileA(_handle, &fd))
355 if (!::FindCloseChangeNotification(_handle))
357 _handle = INVALID_HANDLE_VALUE;
363 _handle = ::FindFirstChangeNotification(pathName, BoolToBOOL(watchSubtree), notifyFilter);
369 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter);
372 return _handle;
380 _handle = ::FindFirstChangeNotificationW(pathName, BoolToBOOL(watchSubtree), notifyFilter);
386 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter);
389 return _handle;