Lines Matching defs:value
85 char *value; /* to read from */
90 value = &l->data[colon];
91 if(!*value)
93 ++value;
94 store = value;
97 while(*value && ISBLANK(*value))
98 value++;
100 while(*value) {
102 while(*value && ISBLANK(*value)) {
103 value++;
109 if(*value)
113 *store++ = *value++;
203 user headers in format 'name:' with no value are used to signal that an
207 user headers in format 'name;' with no value are used to signal that a
208 header of that name with no value should be sent. those user headers are
212 user headers with a value of whitespace only, or without a colon or
224 if(!*ptr && ptr != sep + 1) /* a value of whitespace only */
249 char *value;
251 value = strchr(*date_header, ':');
252 if(!value) {
256 ++value;
257 while(ISBLANK(*value))
258 ++value;
259 endp = value;
263 if((endp - value) == TIMESTAMP_SIZE - 1) {
264 memcpy(timestamp, value, TIMESTAMP_SIZE - 1);
317 /* add 2 for ": " between header name and value */
328 char *value;
333 value = Curl_checkheaders(data, key, key_len);
334 if(!value)
337 value = strchr(value, ':');
338 if(!value)
340 ++value;
342 while(*value && ISBLANK(*value))
343 ++value;
345 len = strlen(value);
346 while(len > 0 && ISBLANK(value[len-1]))
350 return value;
441 /* sort the name=value pairs first */
515 /* queries without value still need an equals */