Lines Matching refs:_handle
110 if (_handle == INVALID_HANDLE_VALUE) in Close()
112 if (!::FindClose(_handle)) in Close()
114 _handle = INVALID_HANDLE_VALUE; in Close()
157 _handle = ::FindFirstFileA(fs2fas(path), &fd); in FindFirst()
158 if (_handle == INVALID_HANDLE_VALUE) in FindFirst()
168 _handle = ::FindFirstFileW(fs2us(path), &fd); in FindFirst() local
170 if (_handle == INVALID_HANDLE_VALUE && USE_SUPER_PATH) in FindFirst()
174 _handle = ::FindFirstFileW(superPath, &fd); in FindFirst()
177 if (_handle == INVALID_HANDLE_VALUE) in FindFirst()
190 if (!::FindNextFileA(_handle, &fd)) in FindNext()
198 if (!::FindNextFileW(_handle, &fd)) in FindNext()
282 _handle = g_FindFirstStreamW(fs2us(path), My_FindStreamInfoStandard, &sd, 0); in FindFirst() local
283 if (_handle == INVALID_HANDLE_VALUE) in FindFirst()
293 _handle = g_FindFirstStreamW(superPath, My_FindStreamInfoStandard, &sd, 0); in FindFirst()
297 if (_handle == INVALID_HANDLE_VALUE) in FindFirst()
313 if (!g_FindNextStreamW(_handle, &sd)) in FindNext()
665 if (!::FindCloseChangeNotification(_handle)) in Close()
667 _handle = INVALID_HANDLE_VALUE; in Close()
675 _handle = ::FindFirstChangeNotification(fs2fas(path), BoolToBOOL(watchSubtree), notifyFilter); in FindFirst()
680 _handle = ::FindFirstChangeNotificationW(fs2us(path), BoolToBOOL(watchSubtree), notifyFilter); in FindFirst() local
686 _handle = ::FindFirstChangeNotificationW(superPath, BoolToBOOL(watchSubtree), notifyFilter); in FindFirst()
690 return _handle; in FindFirst()