#include "asio/detail/push_options.hpp"#include <algorithm>#include "asio/detail/pop_options.hpp"#include "asio/buffer.hpp"#include "asio/completion_condition.hpp"#include "asio/error.hpp"#include "asio/detail/bind_handler.hpp"#include "asio/detail/consuming_buffers.hpp"#include "asio/detail/handler_alloc_helpers.hpp"#include "asio/detail/handler_invoke_helpers.hpp"#include "asio/detail/throw_error.hpp"Go to the source code of this file.
Namespaces | |
| namespace | asio |
| namespace | asio::detail |
Classes | |
| class | asio::detail::read_handler< AsyncReadStream, MutableBufferSequence, CompletionCondition, ReadHandler > |
| class | asio::detail::read_streambuf_handler< AsyncReadStream, Allocator, CompletionCondition, ReadHandler > |
Functions | |
| template<typename SyncReadStream, typename MutableBufferSequence, typename CompletionCondition> | |
| std::size_t | asio::read (SyncReadStream &s, const MutableBufferSequence &buffers, CompletionCondition completion_condition, asio::error_code &ec) |
| Attempt to read a certain amount of data from a stream before returning. | |
| template<typename SyncReadStream, typename MutableBufferSequence> | |
| std::size_t | asio::read (SyncReadStream &s, const MutableBufferSequence &buffers) |
| Attempt to read a certain amount of data from a stream before returning. | |
| template<typename SyncReadStream, typename MutableBufferSequence, typename CompletionCondition> | |
| std::size_t | asio::read (SyncReadStream &s, const MutableBufferSequence &buffers, CompletionCondition completion_condition) |
| Attempt to read a certain amount of data from a stream before returning. | |
| template<typename SyncReadStream, typename Allocator, typename CompletionCondition> | |
| std::size_t | asio::read (SyncReadStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition, asio::error_code &ec) |
| Attempt to read a certain amount of data from a stream before returning. | |
| template<typename SyncReadStream, typename Allocator> | |
| std::size_t | asio::read (SyncReadStream &s, basic_streambuf< Allocator > &b) |
| Attempt to read a certain amount of data from a stream before returning. | |
| template<typename SyncReadStream, typename Allocator, typename CompletionCondition> | |
| std::size_t | asio::read (SyncReadStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition) |
| Attempt to read a certain amount of data from a stream before returning. | |
| template<typename AsyncReadStream, typename MutableBufferSequence, typename CompletionCondition, typename ReadHandler> | |
| void * | asio::detail::asio_handler_allocate (std::size_t size, read_handler< AsyncReadStream, MutableBufferSequence, CompletionCondition, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename MutableBufferSequence, typename CompletionCondition, typename ReadHandler> | |
| void | asio::detail::asio_handler_deallocate (void *pointer, std::size_t size, read_handler< AsyncReadStream, MutableBufferSequence, CompletionCondition, ReadHandler > *this_handler) |
| template<typename Function, typename AsyncReadStream, typename MutableBufferSequence, typename CompletionCondition, typename ReadHandler> | |
| void | asio::detail::asio_handler_invoke (const Function &function, read_handler< AsyncReadStream, MutableBufferSequence, CompletionCondition, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename MutableBufferSequence, typename CompletionCondition, typename ReadHandler> | |
| void | asio::async_read (AsyncReadStream &s, const MutableBufferSequence &buffers, CompletionCondition completion_condition, ReadHandler handler) |
| template<typename AsyncReadStream, typename MutableBufferSequence, typename ReadHandler> | |
| void | asio::async_read (AsyncReadStream &s, const MutableBufferSequence &buffers, ReadHandler handler) |
| template<typename AsyncReadStream, typename Allocator, typename CompletionCondition, typename ReadHandler> | |
| void * | asio::detail::asio_handler_allocate (std::size_t size, read_streambuf_handler< AsyncReadStream, Allocator, CompletionCondition, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename CompletionCondition, typename ReadHandler> | |
| void | asio::detail::asio_handler_deallocate (void *pointer, std::size_t size, read_streambuf_handler< AsyncReadStream, Allocator, CompletionCondition, ReadHandler > *this_handler) |
| template<typename Function, typename AsyncReadStream, typename Allocator, typename CompletionCondition, typename ReadHandler> | |
| void | asio::detail::asio_handler_invoke (const Function &function, read_streambuf_handler< AsyncReadStream, Allocator, CompletionCondition, ReadHandler > *this_handler) |
| template<typename AsyncReadStream, typename Allocator, typename CompletionCondition, typename ReadHandler> | |
| void | asio::async_read (AsyncReadStream &s, asio::basic_streambuf< Allocator > &b, CompletionCondition completion_condition, ReadHandler handler) |
| template<typename AsyncReadStream, typename Allocator, typename ReadHandler> | |
| void | asio::async_read (AsyncReadStream &s, asio::basic_streambuf< Allocator > &b, ReadHandler handler) |
1.5.6