Home
last modified time | relevance | path

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

/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);
/foundation/communication/netstack/frameworks/js/napi/http/async_context/include/
H A Drequest_context.h36 LoadBytes(curl_off_t nowLen, curl_off_t totalLen) in LoadBytes()
38 nLen = nowLen; in LoadBytes()
89 void SetDlLen(curl_off_t nowLen, curl_off_t totalLen);
93 void SetUlLen(curl_off_t nowLen, curl_off_t totalLen);
97 bool CompareWithLastElement(curl_off_t nowLen, curl_off_t totalLen);
/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()
/foundation/communication/netstack/frameworks/js/napi/http/async_context/src/
H A Drequest_context.cpp554 void RequestContext::SetDlLen(curl_off_t nowLen, curl_off_t totalLen) in SetDlLen() argument
557 LoadBytes dlBytes{nowLen, totalLen}; in SetDlLen()
584 void RequestContext::SetUlLen(curl_off_t nowLen, curl_off_t totalLen) in SetUlLen() argument
590 LoadBytes ulBytes{nowLen, totalLen}; in SetUlLen()
605 bool RequestContext::CompareWithLastElement(curl_off_t nowLen, curl_off_t totalLen) in CompareWithLastElement() argument
612 return nowLen == lastElement.nLen && totalLen == lastElement.tLen; in CompareWithLastElement()

Completed in 4 milliseconds