Home
last modified time | relevance | path

Searched refs:date_value (Results 1 – 3 of 3) sorted by relevance

/external/chromium/net/http/
Dhttp_response_headers.cc892 Time date_value; in GetFreshnessLifetime() local
893 if (!GetDateValue(&date_value)) in GetFreshnessLifetime()
894 date_value = response_time; in GetFreshnessLifetime()
899 if (expires_value > date_value) in GetFreshnessLifetime()
900 return expires_value - date_value; in GetFreshnessLifetime()
933 if (last_modified_value <= date_value) in GetFreshnessLifetime()
934 return (date_value - last_modified_value) / 10; in GetFreshnessLifetime()
976 Time date_value; in GetCurrentAge() local
977 if (!GetDateValue(&date_value)) in GetCurrentAge()
978 date_value = response_time; in GetCurrentAge()
[all …]
/external/chromium_org/net/http/
Dhttp_response_headers.cc962 Time date_value; in GetFreshnessLifetime() local
963 if (!GetDateValue(&date_value)) in GetFreshnessLifetime()
964 date_value = response_time; in GetFreshnessLifetime()
969 if (expires_value > date_value) in GetFreshnessLifetime()
970 return expires_value - date_value; in GetFreshnessLifetime()
1003 if (last_modified_value <= date_value) in GetFreshnessLifetime()
1004 return (date_value - last_modified_value) / 10; in GetFreshnessLifetime()
1046 Time date_value; in GetCurrentAge() local
1047 if (!GetDateValue(&date_value)) in GetCurrentAge()
1048 date_value = response_time; in GetCurrentAge()
[all …]
/external/chromium_org/chrome/browser/metrics/variations/
Dvariations_service.cc225 const int64 date_value = local_state_->GetInt64(prefs::kVariationsSeedDate); in CreateTrialsFromSeed() local
226 const base::Time seed_date = base::Time::FromInternalValue(date_value); in CreateTrialsFromSeed()