Lines Matching refs:type
60 int type; in curl_share_setopt() local
80 type = va_arg(param, int); in curl_share_setopt()
82 switch(type) { in curl_share_setopt()
140 share->specifier |= (unsigned int)(1 << type); in curl_share_setopt()
145 type = va_arg(param, int); in curl_share_setopt()
146 share->specifier &= ~(unsigned int)(1 << type); in curl_share_setopt()
147 switch(type) { in curl_share_setopt()
266 Curl_share_lock(struct Curl_easy *data, curl_lock_data type, in Curl_share_lock() argument
274 if(share->specifier & (unsigned int)(1 << type)) { in Curl_share_lock()
276 share->lockfunc(data, type, accesstype, share->clientdata); in Curl_share_lock()
284 Curl_share_unlock(struct Curl_easy *data, curl_lock_data type) in Curl_share_unlock() argument
291 if(share->specifier & (unsigned int)(1 << type)) { in Curl_share_unlock()
293 share->unlockfunc (data, type, share->clientdata); in Curl_share_unlock()