Lines Matching full:multi
32 static int perform(CURLM *multi) in perform() argument
45 res_multi_perform(multi, &handles); in perform()
60 res_multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd); in perform()
80 CURLM *multi = NULL; in test() local
88 multi_init(multi); in test()
92 multi_setopt(multi, CURLMOPT_PIPELINING, 1L); in test()
98 res_multi_add_handle(multi, easy); in test()
104 res = perform(multi); in test()
110 curl_multi_remove_handle(multi, easy); in test()
117 res_multi_add_handle(multi, easy); in test()
123 res = perform(multi); in test()
129 curl_multi_remove_handle(multi, easy); in test()
136 curl_multi_cleanup(multi); in test()