Lines Matching refs:temp

17 	char *temp = data;  in find_http_header()  local
23 while (!hdr_len && (temp = strchr(temp, '\n')) != NULL) { in find_http_header()
24 temp++; in find_http_header()
25 if (*temp == '\n') in find_http_header()
26 hdr_len = temp - data + 1; in find_http_header()
27 else if (len > 0 && *temp == '\r' && *(temp + 1) == '\n') in find_http_header()
28 hdr_len = temp - data + 2; in find_http_header()
43 char *temp = (char *) buf; /* temporarily de-const buf */ in http_header_str_val() local
47 while (*temp && (temp = strchr(temp, '\n'))) { in http_header_str_val()
48 temp++; /* advance to the next line */ in http_header_str_val()
49 if (!strncasecmp(temp, key, keylen)) in http_header_str_val()
52 if (temp == NULL || *temp == '\0') { in http_header_str_val()
58 temp += keylen; in http_header_str_val()
59 while (*temp && SPACE_OR_TAB(*temp)) in http_header_str_val()
60 temp++; in http_header_str_val()
63 if (*temp == '\0' || CR_OR_NEWLINE(*temp)) { in http_header_str_val()
69 while (*temp && !CR_OR_NEWLINE(*temp) && i < value_len-1) in http_header_str_val()
70 value[i++] = *temp++; in http_header_str_val()
81 char *temp = http_header_str_val(response, key, key_len, value, C_TYPE_LEN); in http_header_long_val() local
83 if (temp == NULL) in http_header_long_val()
86 len = strtol(temp, NULL, 10); in http_header_long_val()
97 char *temp; in http_get_url() local
109 temp = ret; in http_get_url()
110 while (*temp && *temp != ' ' && i < value_len - 1) { in http_get_url()
111 value[i++] = *temp++; in http_get_url()