Lines Matching refs:share
31 CURLSH *share; member
147 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
180 CURLSH *share; in test() local
198 if((share = curl_share_init()) == NULL) { in test()
206 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
210 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
214 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
218 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test()
222 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); in test()
227 curl_share_cleanup(share); in test()
235 curl_share_cleanup(share); in test()
240 test_setopt(curl, CURLOPT_SHARE, share); in test()
266 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()
347 scode = curl_share_cleanup(share); in test()
350 share = NULL; in test()
366 scode = curl_share_cleanup(share); in test()