Home
last modified time | relevance | path

Searched refs:firstSendTime (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/communication/netstack/utils/profiler_utils/src/
H A Dhttp_client_network_message.cpp49 static_cast<uint64_t>(std::max(0.0, timeInfo_.firstSendTime - in Parse()
54 … static_cast<uint64_t>(std::max(0.0, timeInfo_.firstRecvTime - timeInfo_.firstSendTime)); in Parse()
H A Dhttp_network_message.cpp49 static_cast<uint64_t>(std::max(0.0, timeInfo_.firstSendTime - in Parse()
54 … static_cast<uint64_t>(std::max(0.0, timeInfo_.firstRecvTime - timeInfo_.firstSendTime)); in Parse()
H A Di_network_message.cpp86 curl_off_t firstSendTime = 0; in GetTimeInfoFromCurlHandle() local
87 CURL_GET_TIME_INFO(handle, CURLINFO_PRETRANSFER_TIME_T, firstSendTime, timeInfo); in GetTimeInfoFromCurlHandle()
/ohos5.0/foundation/communication/netstack/frameworks/native/http/http_client/
H A Dhttp_client_task.cpp595 auto firstSendTime = GetTimingFromCurl(curlHandle_, CURLINFO_PRETRANSFER_TIME_T); in DumpHttpPerformance() local
628 firstSendTime == 0 ? 0 : firstSendTime - std::max({dnsTime, connectTime, tlsTime}), in DumpHttpPerformance()
629 firstRecvTime == 0 ? 0 : firstRecvTime - firstSendTime, totalTime, redirectTime, in DumpHttpPerformance()
/ohos5.0/foundation/communication/netstack/utils/profiler_utils/include/
H A Di_network_message.h48 double firstSendTime = 0; member
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/http/http_exec/src/
H A Dhttp_exec.cpp364 auto firstSendTime = HttpExec::GetTimingFromCurl(handle, CURLINFO_PRETRANSFER_TIME_T); in AddCurlHandle() local
372 context->CachePerformanceTimingItem(HttpConstant::RESPONSE_FIRST_SEND_TIMING, firstSendTime); in AddCurlHandle()
405 firstSendTime == 0 ? 0 : firstSendTime - std::max({dnsTime, connectTime, tlsTime}), in AddCurlHandle()
406 firstRecvTime == 0 ? 0 : firstRecvTime - firstSendTime, totalTime, redirectTime, in AddCurlHandle()