Lines Matching defs:handle
253 /* Win32 search handle */
254 HANDLE handle;
373 dirp->handle = INVALID_HANDLE_VALUE;
544 /* Release search handle */
545 if (dirp->handle != INVALID_HANDLE_VALUE) {
546 FindClose (dirp->handle);
575 /* Release existing search handle */
576 if (dirp->handle != INVALID_HANDLE_VALUE) {
577 FindClose (dirp->handle);
580 /* Open new search handle */
594 dirp->handle = FindFirstFileExW(
597 if (dirp->handle != INVALID_HANDLE_VALUE) {
650 } else if (dirp->handle != INVALID_HANDLE_VALUE) {
653 if (FindNextFileW (dirp->handle, &dirp->data) != FALSE) {
658 FindClose (dirp->handle);
659 dirp->handle = INVALID_HANDLE_VALUE;