Lines Matching full:boost

10 #include <boost/beast/core/buffers_range.hpp>
11 #include <boost/beast/core/file_posix.hpp>
12 #include <boost/beast/http/message.hpp>
13 #include <boost/system/error_code.hpp>
51 const boost::beast::file_posix& file() const in file()
86 fileHandle.fileHandle = boost::beast::file_posix(); in clear()
91 void open(const char* path, boost::beast::file_mode mode, in open()
92 boost::system::error_code& ec) in open()
99 boost::system::error_code ec2; in open()
120 void setFd(int fd, boost::system::error_code& ec) in setFd()
124 boost::system::error_code ec2; in setFd()
140 using const_buffers_type = boost::asio::const_buffer;
157 writer(boost::beast::http::header<IsRequest, Fields>& /*header*/, in writer()
161 static void init(boost::beast::error_code& ec) in init()
166 boost::optional<std::pair<const_buffers_type, bool>>
167 get(boost::beast::error_code& ec) in get()
172 boost::optional<std::pair<const_buffers_type, bool>>
173 getWithMaxSize(boost::beast::error_code& ec, size_t maxSize) in getWithMaxSize()
190 boost::system::error_code readEc; in getWithMaxSize()
194 if (readEc != boost::system::errc::operation_would_block && in getWithMaxSize()
195 readEc != boost::system::errc::resource_unavailable_try_again) in getWithMaxSize()
200 return boost::none; in getWithMaxSize()
235 reader(boost::beast::http::header<IsRequest, Fields>& /*headers*/, in reader()
239 void init(const boost::optional<std::uint64_t>& contentLength, in init()
240 boost::beast::error_code& ec) in init()
254 boost::system::error_code& ec) in put()
256 size_t extra = boost::beast::buffer_bytes(buffers); in put()
257 for (const auto b : boost::beast::buffers_range_ref(buffers)) in put()
266 static void finish(boost::system::error_code& ec) in finish()