Home
last modified time | relevance | path

Searched refs:timeSeconds (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/netstack/frameworks/js/napi/http/cache/cache_strategy/src/
H A Dhttp_time.cpp50 …time_t timeSeconds = std::chrono::duration_cast<std::chrono::seconds>(now.time_since_epoch()).coun… in GetNowTimeGMT() local
53 if (gmtime_s(&timeInfo, &timeSeconds) == 0) { in GetNowTimeGMT()
55 if (gmtime_r(&timeSeconds, &timeInfo) == nullptr) { in GetNowTimeGMT()
/ohos5.0/foundation/communication/netstack/frameworks/native/http/http_client/
H A Dhttp_client_time.cpp32 …time_t timeSeconds = std::chrono::duration_cast<std::chrono::seconds>(now.time_since_epoch()).coun… in GetNowTimeGMT() local
35 if (gmtime_s(&timeInfo, &timeSeconds) == 0) { in GetNowTimeGMT()
37 if (gmtime_r(&timeSeconds, &timeInfo) == nullptr) { in GetNowTimeGMT()
/ohos5.0/foundation/communication/netstack/frameworks/cj/http/src/
H A Dnet_http_utils.cpp120 …time_t timeSeconds = std::chrono::duration_cast<std::chrono::seconds>(now.time_since_epoch()).coun… in GetNowTimeGMT() local
123 if (gmtime_s(&timeInfo, &timeSeconds) == 0) { in GetNowTimeGMT()
125 if (gmtime_r(&timeSeconds, &timeInfo) == nullptr) { in GetNowTimeGMT()
/ohos5.0/foundation/distributeddatamgr/pasteboard/services/core/src/
H A Dpasteboard_service.cpp1899 time_t timeSeconds = time(0); in GetTime() local
1900 if (timeSeconds == -1) { in GetTime()
1904 localtime_r(&timeSeconds, &nowTime); in GetTime()