Lines Matching refs:share
29 CURLSH *share; member
113 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
136 CURLSH *share; in test() local
151 if((share = curl_share_init()) == NULL) { in test()
159 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
163 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
167 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
171 scode = curl_share_setopt(share, CURLSHOPT_SHARE, in test()
177 curl_share_cleanup(share); in test()
190 tdata.share = share; in test()
202 curl_share_cleanup(share); in test()
210 test_setopt(curl, CURLOPT_SHARE, share); in test()
217 scode = curl_share_cleanup(share); in test()
220 share = NULL; in test()
234 scode = curl_share_cleanup(share); in test()