Lines Matching defs:lval
264 const struct NameValue *nvlist, long lval)
269 ret = curl_easy_setopt(curl, tag, lval);
270 if(!lval)
277 if(nv->value == lval)
284 CODE2("curl_easy_setopt(hnd, %s, %ldL);", name, lval);
303 long lval)
308 ret = curl_easy_setopt(curl, tag, lval);
309 if(!lval)
315 unsigned long rest = (unsigned long)lval;
571 long lval = va_arg(arg, long);
581 msnprintf(buf, sizeof(buf), "%ldL", lval);
583 ret = curl_easy_setopt(curl, tag, lval);
584 if(lval == defval)