Searched refs:body_ (Results 1 – 4 of 4) sorted by relevance
45 HttpMessage::HttpMessage() : body_(nullptr), bodySize_(0), headers_() {} in HttpMessage()49 setBody(other.body_, other.bodySize_); in HttpMessage()56 body_ = nullptr; in operator =()59 setBody(other.body_, other.bodySize_); in operator =()109 const char *HttpMessage::body() const { return body_; } in body()120 if (body_) in setBody()121 delete[] body_; in setBody()122 body_ = nullptr; in setBody()126 body_ = new char[size + 1]; in setBody()127 std::copy(data, data + size, body_); in setBody()[all …]
23 body_() in HttpMessage()29 body_(other.body_) in HttpMessage()41 body_ = other.body_; in operator =()50 body_ = std::move(other.body_); in operator =()
46 void addBody(const std::shared_ptr<std::iostream>& body) { body_ = body;} in addBody()47 std::shared_ptr<std::iostream>& Body() { return body_;} in Body()52 std::shared_ptr<std::iostream> body_; variable
77 char *body_;
Completed in 4 milliseconds