Home | History | Annotate | Download | only in src

Lines Matching refs:lval

267                           const NameValue *nvlist, long lval)
272 ret = curl_easy_setopt(curl, tag, lval);
273 if(!lval)
280 if(nv->value == lval) break; /* found it */
286 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval);
300 const NameValue *nvlist, long lval)
305 ret = curl_easy_setopt(curl, tag, lval);
306 if(!lval)
312 long rest = lval; /* bits not handled yet */
343 long lval)
348 ret = curl_easy_setopt(curl, tag, lval);
349 if(!lval)
355 unsigned long rest = (unsigned long)lval;
622 long lval = va_arg(arg, long);
632 snprintf(buf, sizeof(buf), "%ldL", lval);
634 ret = curl_easy_setopt(curl, tag, lval);
635 if(lval == defval)