Lines Matching refs:value
284 if(nv->value == lval) in tool_setopt_enum()
323 if(nv->value == (lval & 0xffff)) in tool_setopt_SSLVERSION()
327 if(nv2->value == (lval & ~0xffff)) in tool_setopt_SSLVERSION()
371 if((nv->value & ~ rest) == 0) { in tool_setopt_bitmask()
373 rest &= ~ nv->value; /* remove bits handled here */ in tool_setopt_bitmask()
611 const char *value = NULL; in tool_setopt() local
627 defval = nv->value; in tool_setopt()
633 value = buf; in tool_setopt()
645 value = "function pointer"; in tool_setopt()
653 value = (char *)pval; in tool_setopt()
657 value = "object pointer"; in tool_setopt()
671 value = buf; in tool_setopt()
683 value = "blob pointer"; in tool_setopt()
698 REM3("%s was set to a%s %s", name, (*value == 'o' ? "n" : ""), value); in tool_setopt()
704 escaped = c_escape(value, len); in tool_setopt()
709 CODE2("curl_easy_setopt(hnd, %s, %s);", name, value); in tool_setopt()