Lines Matching full:lval
237 const NameValue *nvlist, long lval)
242 ret = curl_easy_setopt(curl, tag, lval);
243 if(!lval)
250 if(nv->value == lval) break; /* found it */
256 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval);
270 const NameValue *nvlist, long lval)
275 ret = curl_easy_setopt(curl, tag, lval);
276 if(!lval)
282 long rest = lval; /* bits not handled yet */
313 long lval)
318 ret = curl_easy_setopt(curl, tag, lval);
319 if(!lval)
325 unsigned long rest = (unsigned long)lval;
485 long lval = va_arg(arg, long);
495 snprintf(buf, sizeof(buf), "%ldL", lval);
497 ret = curl_easy_setopt(curl, tag, lval);
498 if(lval == defval)