Lines Matching refs:share
33 CURLSH *share; member
149 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in test_fire()
183 CURLSH *share; in test() local
201 share = curl_share_init(); in test()
202 if(!share) { in test()
210 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, test_lock); in test()
214 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, test_unlock); in test()
218 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
222 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test()
226 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); in test()
231 curl_share_cleanup(share); in test()
240 curl_share_cleanup(share); in test()
245 test_setopt(curl, CURLOPT_SHARE, share); in test()
271 tdata.share = share; in test()
286 curl_share_cleanup(share); in test()
296 test_setopt(curl, CURLOPT_SHARE, share); in test()
314 curl_share_cleanup(share); in test()
323 test_setopt(curl, CURLOPT_SHARE, share); in test()
354 scode = curl_share_cleanup(share); in test()
357 share = NULL; in test()
373 scode = curl_share_cleanup(share); in test()