Lines Matching refs:name
85 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
415 /* Skip over NUL-terminated file name */
876 if(!strcasecompare(ce->name, CONTENT_ENCODING_DEFAULT))
877 len += strlen(ce->name) + 2;
888 if(!strcasecompare(ce->name, CONTENT_ENCODING_DEFAULT)) {
889 strcpy(p, ce->name);
943 /* Find the content encoding by name. */
944 static const struct Curl_cwtype *find_unencode_writer(const char *name,
953 if((strncasecompare(name, ce->name, len) && !ce->name[len]) ||
954 (ce->alias && strncasecompare(name, ce->alias, len)
962 if((strncasecompare(name, ce->name, len) && !ce->name[len]) ||
963 (ce->alias && strncasecompare(name, ce->alias, len) && !ce->alias[len]))
979 const char *name;
982 /* Parse a single encoding name. */
986 name = enclist;
990 namelen = enclist - name + 1;
999 (namelen != 7 || !strncasecompare(name, "chunked", 7))) ||
1011 cwt = find_unencode_writer(name, namelen, phase);