#include "asio/detail/push_options.hpp"#include "asio/buffer.hpp"#include "asio/completion_condition.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"#include "asio/detail/pop_options.hpp"Go to the source code of this file.
Namespaces | |
| namespace | asio |
| namespace | asio::detail |
Classes | |
| class | asio::detail::write_handler< AsyncWriteStream, ConstBufferSequence, CompletionCondition, WriteHandler > |
| class | asio::detail::write_streambuf_handler< AsyncWriteStream, Allocator, WriteHandler > |
Functions | |
| template<typename SyncWriteStream, typename ConstBufferSequence, typename CompletionCondition> | |
| std::size_t | asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, CompletionCondition completion_condition, asio::error_code &ec) |
| Write a certain amount of data to a stream before returning. | |
| template<typename SyncWriteStream, typename ConstBufferSequence> | |
| std::size_t | asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers) |
| Write all of the supplied data to a stream before returning. | |
| template<typename SyncWriteStream, typename ConstBufferSequence, typename CompletionCondition> | |
| std::size_t | asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, CompletionCondition completion_condition) |
| Write a certain amount of data to a stream before returning. | |
| template<typename SyncWriteStream, typename Allocator, typename CompletionCondition> | |
| std::size_t | asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition, asio::error_code &ec) |
| Write a certain amount of data to a stream before returning. | |
| template<typename SyncWriteStream, typename Allocator> | |
| std::size_t | asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b) |
| Write a certain amount of data to a stream before returning. | |
| template<typename SyncWriteStream, typename Allocator, typename CompletionCondition> | |
| std::size_t | asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition) |
| Write a certain amount of data to a stream before returning. | |
| template<typename AsyncWriteStream, typename ConstBufferSequence, typename CompletionCondition, typename WriteHandler> | |
| void * | asio::detail::asio_handler_allocate (std::size_t size, write_handler< AsyncWriteStream, ConstBufferSequence, CompletionCondition, WriteHandler > *this_handler) |
| template<typename AsyncWriteStream, typename ConstBufferSequence, typename CompletionCondition, typename WriteHandler> | |
| void | asio::detail::asio_handler_deallocate (void *pointer, std::size_t size, write_handler< AsyncWriteStream, ConstBufferSequence, CompletionCondition, WriteHandler > *this_handler) |
| template<typename Function, typename AsyncWriteStream, typename ConstBufferSequence, typename CompletionCondition, typename WriteHandler> | |
| void | asio::detail::asio_handler_invoke (const Function &function, write_handler< AsyncWriteStream, ConstBufferSequence, CompletionCondition, WriteHandler > *this_handler) |
| template<typename AsyncWriteStream, typename ConstBufferSequence, typename CompletionCondition, typename WriteHandler> | |
| void | asio::async_write (AsyncWriteStream &s, const ConstBufferSequence &buffers, CompletionCondition completion_condition, WriteHandler handler) |
| template<typename AsyncWriteStream, typename ConstBufferSequence, typename WriteHandler> | |
| void | asio::async_write (AsyncWriteStream &s, const ConstBufferSequence &buffers, WriteHandler handler) |
| template<typename AsyncWriteStream, typename Allocator, typename WriteHandler> | |
| void * | asio::detail::asio_handler_allocate (std::size_t size, write_streambuf_handler< AsyncWriteStream, Allocator, WriteHandler > *this_handler) |
| template<typename AsyncWriteStream, typename Allocator, typename WriteHandler> | |
| void | asio::detail::asio_handler_deallocate (void *pointer, std::size_t size, write_streambuf_handler< AsyncWriteStream, Allocator, WriteHandler > *this_handler) |
| template<typename Function, typename AsyncWriteStream, typename Allocator, typename WriteHandler> | |
| void | asio::detail::asio_handler_invoke (const Function &function, write_streambuf_handler< AsyncWriteStream, Allocator, WriteHandler > *this_handler) |
| template<typename AsyncWriteStream, typename Allocator, typename CompletionCondition, typename WriteHandler> | |
| void | asio::async_write (AsyncWriteStream &s, asio::basic_streambuf< Allocator > &b, CompletionCondition completion_condition, WriteHandler handler) |
| template<typename AsyncWriteStream, typename Allocator, typename WriteHandler> | |
| void | asio::async_write (AsyncWriteStream &s, asio::basic_streambuf< Allocator > &b, WriteHandler handler) |
1.5.6