#include "asio/detail/push_options.hpp"#include <cstddef>#include <boost/config.hpp>#include "asio/detail/pop_options.hpp"#include "asio/basic_streambuf.hpp"#include "asio/error.hpp"#include "asio/impl/write.ipp"Go to the source code of this file.
Namespaces | |
| namespace | asio |
Functions | |
| 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 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 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 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 AsyncWriteStream, typename ConstBufferSequence, typename WriteHandler> | |
| void | asio::async_write (AsyncWriteStream &s, const ConstBufferSequence &buffers, WriteHandler 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 Allocator, typename WriteHandler> | |
| void | asio::async_write (AsyncWriteStream &s, asio::basic_streambuf< Allocator > &b, WriteHandler 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) |
1.5.6