Searched refs:firstSendTime (Results 1 – 6 of 6) sorted by relevance
/ohos5.0/foundation/communication/netstack/utils/profiler_utils/src/ |
H A D | http_client_network_message.cpp | 49 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 D | http_network_message.cpp | 49 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 D | i_network_message.cpp | 86 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 D | http_client_task.cpp | 595 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 D | i_network_message.h | 48 double firstSendTime = 0; member
|
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/http/http_exec/src/ |
H A D | http_exec.cpp | 364 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()
|