Lines Matching refs:share
31 CURLSH *share; member
115 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in test_fire()
139 CURLSH *share; in test() local
154 share = curl_share_init(); in test()
155 if(!share) { in test()
163 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, test_lock); in test()
167 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, test_unlock); in test()
171 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
175 scode = curl_share_setopt(share, CURLSHOPT_SHARE, in test()
181 curl_share_cleanup(share); in test()
192 tdata.share = share; in test()
205 curl_share_cleanup(share); in test()
213 test_setopt(curl, CURLOPT_SHARE, share); in test()
220 scode = curl_share_cleanup(share); in test()
223 share = NULL; in test()
237 scode = curl_share_cleanup(share); in test()