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, CURL_LOCK_DATA_SSL_SESSION); in test()
176 curl_share_cleanup(share); in test()
189 tdata.share = share; in test()
201 curl_share_cleanup(share); in test()
209 test_setopt( curl, CURLOPT_SHARE, share ); in test()
216 scode = curl_share_cleanup( share ); in test()
220 share = NULL; in test()
233 scode = curl_share_cleanup( share ); in test()