Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/netstack/frameworks/cj/http/include/
H A Dnet_http_request_context.h41 LoadBytes(curl_off_t nowLen, curl_off_t totalLen): nLen(nowLen), tLen(totalLen) {}; in LoadBytes()
91 void SetDlLen(curl_off_t nowLen, curl_off_t totalLen);
95 void SetUlLen(curl_off_t nowLen, curl_off_t totalLen);
99 bool CompareWithLastElement(curl_off_t nowLen, curl_off_t totalLen);
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/http/async_context/include/
H A Drequest_context.h34 LoadBytes(curl_off_t nowLen, curl_off_t totalLen) in LoadBytes()
36 nLen = nowLen; in LoadBytes()
87 void SetDlLen(curl_off_t nowLen, curl_off_t totalLen);
91 void SetUlLen(curl_off_t nowLen, curl_off_t totalLen);
95 bool CompareWithLastElement(curl_off_t nowLen, curl_off_t totalLen);
/ohos5.0/foundation/communication/netstack/frameworks/cj/http/src/
H A Dnet_http_request_context.cpp184 void RequestContext::SetDlLen(curl_off_t nowLen, curl_off_t totalLen) in SetDlLen() argument
187 LoadBytes dlBytes{nowLen, totalLen}; in SetDlLen()
191 void RequestContext::SetUlLen(curl_off_t nowLen, curl_off_t totalLen) in SetUlLen() argument
197 LoadBytes ulBytes{nowLen, totalLen}; in SetUlLen()
224 bool RequestContext::CompareWithLastElement(curl_off_t nowLen, curl_off_t totalLen) in CompareWithLastElement() argument
231 return nowLen == lastElement.nLen && totalLen == lastElement.tLen; in CompareWithLastElement()
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/http/async_context/src/
H A Drequest_context.cpp550 void RequestContext::SetDlLen(curl_off_t nowLen, curl_off_t totalLen) in SetDlLen() argument
553 LoadBytes dlBytes{nowLen, totalLen}; in SetDlLen()
580 void RequestContext::SetUlLen(curl_off_t nowLen, curl_off_t totalLen) in SetUlLen() argument
586 LoadBytes ulBytes{nowLen, totalLen}; in SetUlLen()
601 bool RequestContext::CompareWithLastElement(curl_off_t nowLen, curl_off_t totalLen) in CompareWithLastElement() argument
608 return nowLen == lastElement.nLen && totalLen == lastElement.tLen; in CompareWithLastElement()