Lines Matching refs:BHttpTimeFormat
36 static const std::list<std::pair<BHttpTimeFormat, const char*>> kDateFormats = {
38 {BHttpTimeFormat::RFC1123, "%a, %d %b %Y %H:%M:%S GMT"}, // canonical
39 {BHttpTimeFormat::RFC1123, "%a, %d %b %Y %H:%M:%S"}, // without timezone
41 {BHttpTimeFormat::RFC850, "%A, %d-%b-%y %H:%M:%S GMT"}, // canonical
42 {BHttpTimeFormat::RFC850, "%A, %d-%b-%y %H:%M:%S"}, // without timezone
44 {BHttpTimeFormat::RFC850, "%a, %d-%b-%Y %H:%M:%S"}, // without timezone
45 {BHttpTimeFormat::RFC850, "%a, %d-%b-%Y %H:%M:%S GMT"}, // with 4-digit year
46 {BHttpTimeFormat::RFC850, "%a, %d-%b-%Y %H:%M:%S UTC"}, // "UTC" timezone
48 {BHttpTimeFormat::AscTime, "%a %b %e %H:%M:%S %Y"},
89 fDateFormat(BHttpTimeFormat::RFC1123) in BHttpTime()
97 fDateFormat(BHttpTimeFormat::RFC1123) in BHttpTime()
107 fDateFormat(BHttpTimeFormat::RFC1123) in BHttpTime()
130 fDateFormat = BHttpTimeFormat::RFC1123; in SetTo()
144 BHttpTimeFormat
152 BHttpTime::ToString(BHttpTimeFormat outputFormat) const in ToString()
229 BPrivate::Network::format_http_time(BDateTime timestamp, BHttpTimeFormat outputFormat) in format_http_time()