Lines Matching full:multi
309 CURLM *multi; in testExternalPut() local
322 multi = NULL; in testExternalPut()
352 multi = curl_multi_init (); in testExternalPut()
353 if (multi == NULL) in testExternalPut()
359 mret = curl_multi_add_handle (multi, c); in testExternalPut()
362 curl_multi_cleanup (multi); in testExternalPut()
368 while ((time (NULL) - start < 5) && (multi != NULL)) in testExternalPut()
374 curl_multi_perform (multi, &running); in testExternalPut()
375 mret = curl_multi_fdset (multi, &rs, &ws, &es, &max); in testExternalPut()
378 curl_multi_remove_handle (multi, c); in testExternalPut()
379 curl_multi_cleanup (multi); in testExternalPut()
386 curl_multi_remove_handle (multi, c); in testExternalPut()
387 curl_multi_cleanup (multi); in testExternalPut()
395 curl_multi_perform (multi, &running); in testExternalPut()
398 msg = curl_multi_info_read (multi, &running); in testExternalPut()
408 curl_multi_remove_handle (multi, c); in testExternalPut()
409 curl_multi_cleanup (multi); in testExternalPut()
412 multi = NULL; in testExternalPut()
417 if (multi != NULL) in testExternalPut()
419 curl_multi_remove_handle (multi, c); in testExternalPut()
421 curl_multi_cleanup (multi); in testExternalPut()