Lines Matching refs:share
31 CURLSH *share; member
147 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
181 CURLSH *share; in test() local
199 share = curl_share_init(); in test()
200 if(!share) { in test()
208 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
212 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
216 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
220 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test()
224 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); in test()
229 curl_share_cleanup(share); in test()
238 curl_share_cleanup(share); in test()
243 test_setopt(curl, CURLOPT_SHARE, share); in test()
269 tdata.share = share; in test()
284 curl_share_cleanup(share); in test()
294 test_setopt(curl, CURLOPT_SHARE, share); in test()
312 curl_share_cleanup(share); in test()
321 test_setopt(curl, CURLOPT_SHARE, share); in test()
352 scode = curl_share_cleanup(share); in test()
355 share = NULL; in test()
371 scode = curl_share_cleanup(share); in test()