Lines Matching defs:_handle
154 if (_handle == INVALID_HANDLE_VALUE)
156 if (!::FindClose(_handle))
158 _handle = INVALID_HANDLE_VALUE;
202 _handle = ::FindFirstFileA(fs2fas(path), &fd);
203 if (_handle == INVALID_HANDLE_VALUE)
213 _handle = ::FindFirstFileW(fs2us(path), &fd);
215 if (_handle == INVALID_HANDLE_VALUE && USE_SUPER_PATH)
219 _handle = ::FindFirstFileW(superPath, &fd);
222 if (_handle == INVALID_HANDLE_VALUE)
235 if (!::FindNextFileA(_handle, &fd))
243 if (!::FindNextFileW(_handle, &fd))
332 _handle = g_FindFirstStreamW(fs2us(path), My_FindStreamInfoStandard, &sd, 0);
333 if (_handle == INVALID_HANDLE_VALUE)
343 _handle = g_FindFirstStreamW(superPath, My_FindStreamInfoStandard, &sd, 0);
347 if (_handle == INVALID_HANDLE_VALUE)
363 if (!g_FindNextStreamW(_handle, &sd))
838 if (!::FindCloseChangeNotification(_handle))
840 _handle = INVALID_HANDLE_VALUE;
848 _handle = ::FindFirstChangeNotification(fs2fas(path), BoolToBOOL(watchSubtree), notifyFilter);
853 _handle = ::FindFirstChangeNotificationW(fs2us(path), BoolToBOOL(watchSubtree), notifyFilter);
859 _handle = ::FindFirstChangeNotificationW(superPath, BoolToBOOL(watchSubtree), notifyFilter);
863 return _handle;