Lines Matching defs:name
32 static struct curl_easyoption *lookup(const char *name, CURLoption id)
34 DEBUGASSERT(name || id);
36 if(name || id) {
39 if(name) {
40 if(strcasecompare(o->name, name))
49 } while(o->name);
54 const struct curl_easyoption *curl_easy_option_by_name(const char *name)
56 /* when name is used, the id argument is ignored */
57 return lookup(name, CURLOPT_LASTENTRY);
69 if(prev && prev->name) {
71 if(prev->name)
80 const struct curl_easyoption *curl_easy_option_by_name(const char *name)
82 (void)name;