Lines Matching refs:hSearch
757 HINTERNET hSearch; in test_find_first_file() local
765 hSearch = FtpFindFirstFileA(hFtp, NULL, &findData, 0, 0); in test_find_first_file()
766 ok ( hSearch != NULL, "Expected FtpFindFirstFileA to pass\n" ); in test_find_first_file()
776 InternetCloseHandle(hSearch); in test_find_first_file()
780 hSearch = FtpFindFirstFileA(hFtp, "pub/wine", &findData, 0, 0); in test_find_first_file()
781 ok( hSearch != NULL, "Expected FtpFindFirstFileA to pass\n" ); in test_find_first_file()
782 InternetCloseHandle(hSearch); in test_find_first_file()
786 hSearch = FtpFindFirstFileA(hFtp, "pub/w*", &findData, 0, 0); in test_find_first_file()
787 ok( hSearch != NULL, "Expected FtpFindFirstFileA to pass\n" ); in test_find_first_file()
788 InternetCloseHandle(hSearch); in test_find_first_file()
792 hSearch = FtpFindFirstFileA(hFtp, "*/w*", &findData, 0, 0); in test_find_first_file()
793 ok ( hSearch == NULL, "Expected FtpFindFirstFileA to fail\n" ); in test_find_first_file()
794 InternetCloseHandle(hSearch); /* Just in case */ in test_find_first_file()
802 hSearch = FtpFindFirstFileA(hFtp, "wine", &findData, 0, 0); in test_find_first_file()
803 ok( hSearch != NULL, "Expected FtpFindFirstFileA to pass\n" ); in test_find_first_file()
804 InternetCloseHandle(hSearch); in test_find_first_file()
807 hSearch = FtpFindFirstFileA(hFtp, "w*", &findData, 0, 0); in test_find_first_file()
808 ok( hSearch != NULL, "Expected FtpFindFirstFileA to pass\n" ); in test_find_first_file()
809 InternetCloseHandle(hSearch); in test_find_first_file()
824 hSearch = FtpFindFirstFileA(hFtp, "welcome.msg", &findData, 0, 0); in test_find_first_file()
826 ok ( hSearch == NULL || broken(hSearch != NULL), /* win2k */ in test_find_first_file()
828 if (!hSearch) in test_find_first_file()
834 InternetCloseHandle(hSearch); in test_find_first_file()
841 hSearch = FtpFindFirstFileA(hFtp, "this_file_should_not_exist", &findData, 0, 0); in test_find_first_file()
842 ok ( hSearch == NULL, "Expected FtpFindFirstFileA to fail\n" ); in test_find_first_file()
845 InternetCloseHandle(hSearch); /* Just in case */ in test_find_first_file()
849 hSearch = FtpFindFirstFileA(hFtp, "this_file_should_not_exist*", &findData, 0, 0); in test_find_first_file()
850 ok ( hSearch == NULL, "Expected FtpFindFirstFileA to fail\n" ); in test_find_first_file()
853 InternetCloseHandle(hSearch); /* Just in case */ in test_find_first_file()
857 hSearch = FtpFindFirstFileA(hConnect, "welcome.msg", &findData, 0, 0); in test_find_first_file()
858 ok ( hSearch == NULL, "Expected FtpFindFirstFileA to fail\n" ); in test_find_first_file()
861 InternetCloseHandle(hSearch); /* Just in case */ in test_find_first_file()