Lines Matching refs:scode
175 CURLSHcode scode = CURLSHE_OK; in test() local
204 if(CURLSHE_OK == scode) { in test()
206 scode = curl_share_setopt(share, CURLSHOPT_LOCKFUNC, my_lock); in test()
208 if(CURLSHE_OK == scode) { in test()
210 scode = curl_share_setopt(share, CURLSHOPT_UNLOCKFUNC, my_unlock); in test()
212 if(CURLSHE_OK == scode) { in test()
214 scode = curl_share_setopt(share, CURLSHOPT_USERDATA, &user); in test()
216 if(CURLSHE_OK == scode) { in test()
218 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE); in test()
220 if(CURLSHE_OK == scode) { in test()
222 scode = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS); in test()
225 if(CURLSHE_OK != scode) { in test()
347 scode = curl_share_cleanup(share); in test()
348 if(scode==CURLSHE_OK) { in test()
366 scode = curl_share_cleanup(share); in test()
367 if(scode!=CURLSHE_OK) in test()
369 (int)scode); in test()