Lines Matching defs:name
102 char *cookies; ///< holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
103 /* A dictionary containing cookies keyed by cookie name */
465 !(!strcmp(h->prot->name, "http") ||
466 !strcmp(h->prot->name, "https")))
945 char *name, *value;
948 if ((name = av_strtok(param, "=", &value))) {
949 if (av_dict_set(dict, name, value, 0) < 0) {
964 char *eql, *name;
989 // only replace an older cookie with the same name
1012 // duplicate the cookie name (dict will dupe the value)
1014 if (!(name = av_strndup(p, eql - p))) return AVERROR(ENOMEM);
1017 av_dict_set(cookies, name, eql, AV_DICT_DONT_STRDUP_KEY);
1997 .name = "http",
2019 .name = "https",
2134 .name = "httpproxy",