Lines Matching refs:share
31 CURLSH *share; member
146 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
179 CURLSH *share; in test() local
197 if ((share = curl_share_init()) == NULL) { in test()
205 scode = curl_share_setopt( share, CURLSHOPT_LOCKFUNC, my_lock); in test()
209 scode = curl_share_setopt( share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
213 scode = curl_share_setopt( share, CURLSHOPT_USERDATA, &user); in test()
217 scode = curl_share_setopt( share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test()
221 scode = curl_share_setopt( share, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); in test()
226 curl_share_cleanup(share); in test()
234 curl_share_cleanup(share); in test()
239 test_setopt( curl, CURLOPT_SHARE, share ); in test()
265 tdata.share = share; in test()
280 curl_share_cleanup(share); in test()
290 test_setopt( curl, CURLOPT_SHARE, share ); in test()
307 curl_share_cleanup(share); in test()
316 test_setopt( curl, CURLOPT_SHARE, share ); in test()
350 scode = curl_share_cleanup( share ); in test()
354 share = NULL; in test()
369 scode = curl_share_cleanup( share ); in test()