Home
last modified time | relevance | path

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

/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()
/foundation/communication/netstack/frameworks/native/http/http_client/
H A Dhttp_client_task.cpp636 auto firstSendTime = GetTimingFromCurl(curlHandle_, CURLINFO_PRETRANSFER_TIME_T); in DumpHttpPerformance() local
670 firstSendTime == 0 ? 0 : firstSendTime - std::max({dnsTime, connectTime, tlsTime}), in DumpHttpPerformance()
671 firstRecvTime == 0 ? 0 : firstRecvTime - firstSendTime, totalTime, redirectTime, in DumpHttpPerformance()
682 httpPerfInfo.firstRecvTime = firstRecvTime == 0 ? 0 : firstRecvTime - firstSendTime; in DumpHttpPerformance()
/foundation/communication/netstack/utils/profiler_utils/include/
H A Di_network_message.h48 double firstSendTime = 0; member
/foundation/communication/netstack/frameworks/js/napi/http/http_exec/src/
H A Dhttp_exec.cpp433 auto firstSendTime = HttpExec::GetTimingFromCurl(handle, CURLINFO_PRETRANSFER_TIME_T); in AddCurlHandle() local
441 context->CachePerformanceTimingItem(HttpConstant::RESPONSE_FIRST_SEND_TIMING, firstSendTime); in AddCurlHandle()
466 firstSendTime == 0 ? 0 : firstSendTime - std::max({dnsTime, connectTime, tlsTime}), in AddCurlHandle()
467 firstRecvTime == 0 ? 0 : firstRecvTime - firstSendTime, totalTime, redirectTime, in AddCurlHandle()
478 httpPerfInfo.firstRecvTime = firstRecvTime == 0 ? 0 : firstRecvTime - firstSendTime; in AddCurlHandle()

Completed in 5 milliseconds