Lines Matching refs:th
118 HANDLE th; in _zip_source_win32_handle_or_name() local
120 th = ops->op_open(ctx); in _zip_source_win32_handle_or_name()
121 if (th == INVALID_HANDLE_VALUE || GetFileType(th) == FILE_TYPE_DISK) { in _zip_source_win32_handle_or_name()
124 if (th != INVALID_HANDLE_VALUE) { in _zip_source_win32_handle_or_name()
125 CloseHandle(th); in _zip_source_win32_handle_or_name()
418 HANDLE th = INVALID_HANDLE_VALUE; in _win32_create_temp_file() local
452 for (i = 0; i < 1024 && th == INVALID_HANDLE_VALUE; i++) { in _win32_create_temp_file()
453 th = ctx->ops->op_create_temp(ctx, &temp, value + i, psa); in _win32_create_temp_file()
454 if (th == INVALID_HANDLE_VALUE && GetLastError() != ERROR_FILE_EXISTS) in _win32_create_temp_file()
458 if (th == INVALID_HANDLE_VALUE) { in _win32_create_temp_file()
466 ctx->hout = th; in _win32_create_temp_file()