Lines Matching defs:nv
275 const struct NameValue *nv = NULL;
276 for(nv = nvlist; nv->name; nv++) {
277 if(nv->value == lval)
280 if(!nv->name) {
287 CODE2("curl_easy_setopt(hnd, %s, (long)%s);", name, nv->name);
316 const struct NameValueUnsigned *nv = NULL;
319 for(nv = nvlist; nv->name; nv++) {
320 if((nv->value & ~ rest) == 0) {
322 rest &= ~ nv->value; /* remove bits handled here */
324 preamble, nv->name, rest ? " |" : ");");
573 const struct NameValue *nv = NULL;
574 for(nv = setopt_nv_CURLNONZERODEFAULTS; nv->name; nv++) {
575 if(!strcmp(name, nv->name)) {
576 defval = nv->value;