Home
last modified time | relevance | path

Searched refs:bodyBytesTotal (Results 1 – 2 of 2) sorted by relevance

/haiku/src/kits/network/libnetservices2/
H A DHttpParser.cpp119 std::optional<off_t> bodyBytesTotal = std::nullopt; in ParseFields() local
150 bodyBytesTotal = std::stol(contentLength); in ParseFields()
151 if (*bodyBytesTotal == 0) { in ParseFields()
175 fBodyParser = std::make_unique<HttpRawBodyParser>(*bodyBytesTotal); in ParseFields()
300 HttpRawBodyParser::HttpRawBodyParser(off_t bodyBytesTotal) in HttpRawBodyParser() argument
302 fBodyBytesTotal(bodyBytesTotal) in HttpRawBodyParser()
H A DHttpParser.h93 HttpRawBodyParser(off_t bodyBytesTotal);