Home | History | Annotate | Download | only in base

Lines Matching refs:s_temp

107   std::string s_temp;
114 if (t.response.hasHeader(HH_CACHE_CONTROL, &s_temp)) {
115 HttpParseAttributes(s_temp.data(), s_temp.size(), cache_control);
120 if (!t.response.hasHeader(HH_DATE, &s_temp)
121 || !HttpDateToSeconds(s_temp, &date))
134 if (t.response.hasHeader(HH_AGE, &s_temp)
135 && HttpStringToInt(s_temp, &i_temp)) {
146 if (HttpHasAttribute(cache_control, "max-age", &s_temp)) {
147 lifetime = atoi(s_temp.c_str());
148 } else if (t.response.hasHeader(HH_EXPIRES, &s_temp)
149 && HttpDateToSeconds(s_temp, &i_temp)) {
151 } else if (t.response.hasHeader(HH_LAST_MODIFIED, &s_temp)
152 && HttpDateToSeconds(s_temp, &i_temp)) {