Lines Matching refs:type
59 int type; in curl_share_setopt() local
79 type = va_arg(param, int); in curl_share_setopt()
81 switch(type) { in curl_share_setopt()
143 share->specifier |= (unsigned int)(1 << type); in curl_share_setopt()
148 type = va_arg(param, int); in curl_share_setopt()
149 share->specifier &= ~(unsigned int)(1 << type); in curl_share_setopt()
150 switch(type) { in curl_share_setopt()
268 Curl_share_lock(struct Curl_easy *data, curl_lock_data type, in Curl_share_lock() argument
276 if(share->specifier & (unsigned int)(1 << type)) { in Curl_share_lock()
278 share->lockfunc(data, type, accesstype, share->clientdata); in Curl_share_lock()
286 Curl_share_unlock(struct Curl_easy *data, curl_lock_data type) in Curl_share_unlock() argument
293 if(share->specifier & (unsigned int)(1 << type)) { in Curl_share_unlock()
295 share->unlockfunc (data, type, share->clientdata); in Curl_share_unlock()