Searched refs:s_temp (Results 1 – 1 of 1) sorted by relevance
/external/chromium/third_party/libjingle/source/talk/base/ |
D | httpclient.cc | 107 std::string s_temp; in HttpGetCacheState() local 114 if (t.response.hasHeader(HH_CACHE_CONTROL, &s_temp)) { in HttpGetCacheState() 115 HttpParseAttributes(s_temp.data(), s_temp.size(), cache_control); in HttpGetCacheState() 120 if (!t.response.hasHeader(HH_DATE, &s_temp) in HttpGetCacheState() 121 || !HttpDateToSeconds(s_temp, &date)) in HttpGetCacheState() 134 if (t.response.hasHeader(HH_AGE, &s_temp) in HttpGetCacheState() 135 && HttpStringToInt(s_temp, &i_temp)) { in HttpGetCacheState() 146 if (HttpHasAttribute(cache_control, "max-age", &s_temp)) { in HttpGetCacheState() 147 lifetime = atoi(s_temp.c_str()); in HttpGetCacheState() 148 } else if (t.response.hasHeader(HH_EXPIRES, &s_temp) in HttpGetCacheState() [all …]
|