Lines Matching refs:share
29 CURLSH *share; member
113 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
137 CURLSH *share; in test() local
152 share = curl_share_init(); in test()
153 if(!share) { in test()
161 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
165 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
169 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
173 scode = curl_share_setopt(share, CURLSHOPT_SHARE, in test()
179 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()