Lines Matching full:multi
299 CURLM *multi; in testExternalPut() local
312 multi = NULL; in testExternalPut()
342 multi = curl_multi_init (); in testExternalPut()
343 if (multi == NULL) in testExternalPut()
349 mret = curl_multi_add_handle (multi, c); in testExternalPut()
352 curl_multi_cleanup (multi); in testExternalPut()
358 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalPut()
364 curl_multi_perform (multi, &running); in testExternalPut()
365 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); in testExternalPut()
368 curl_multi_remove_handle (multi, c); in testExternalPut()
369 curl_multi_cleanup (multi); in testExternalPut()
376 curl_multi_remove_handle (multi, c); in testExternalPut()
377 curl_multi_cleanup (multi); in testExternalPut()
385 curl_multi_perform (multi, &running); in testExternalPut()
388 msg = curl_multi_info_read (multi, &running); in testExternalPut()
398 curl_multi_remove_handle (multi, c); in testExternalPut()
399 curl_multi_cleanup (multi); in testExternalPut()
402 multi = NULL; in testExternalPut()
407 if (multi != NULL) in testExternalPut()
409 curl_multi_remove_handle (multi, c); in testExternalPut()
411 curl_multi_cleanup (multi); in testExternalPut()