Boost  v1.57.0
doxygen for www.boost.org
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
write.hpp File Reference
#include <boost/asio/detail/config.hpp>
#include <cstddef>
#include <boost/asio/async_result.hpp>
#include <boost/asio/basic_streambuf_fwd.hpp>
#include <boost/asio/error.hpp>
#include <boost/asio/detail/push_options.hpp>
#include <boost/asio/detail/pop_options.hpp>
#include <boost/asio/impl/write.hpp>
Include dependency graph for write.hpp:
This graph shows which files directly or indirectly include this file:

Namespaces

 boost
 Duration formatting facet for input.
 
 boost::asio
 

Functions

template<typename SyncWriteStream , typename ConstBufferSequence >
std::size_t boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers)
 Write all of the supplied data to a stream before returning. More...
 
template<typename SyncWriteStream , typename ConstBufferSequence >
std::size_t boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, boost::system::error_code &ec)
 Write all of the supplied data to a stream before returning. More...
 
template<typename SyncWriteStream , typename ConstBufferSequence , typename CompletionCondition >
std::size_t boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, CompletionCondition completion_condition)
 Write a certain amount of data to a stream before returning. More...
 
template<typename SyncWriteStream , typename ConstBufferSequence , typename CompletionCondition >
std::size_t boost::asio::write (SyncWriteStream &s, const ConstBufferSequence &buffers, CompletionCondition completion_condition, boost::system::error_code &ec)
 Write a certain amount of data to a stream before returning. More...
 
template<typename SyncWriteStream , typename Allocator >
std::size_t boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b)
 Write all of the supplied data to a stream before returning. More...
 
template<typename SyncWriteStream , typename Allocator >
std::size_t boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, boost::system::error_code &ec)
 Write all of the supplied data to a stream before returning. More...
 
template<typename SyncWriteStream , typename Allocator , typename CompletionCondition >
std::size_t boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition)
 Write a certain amount of data to a stream before returning. More...
 
template<typename SyncWriteStream , typename Allocator , typename CompletionCondition >
std::size_t boost::asio::write (SyncWriteStream &s, basic_streambuf< Allocator > &b, CompletionCondition completion_condition, boost::system::error_code &ec)
 Write a certain amount of data to a stream before returning. More...
 
template<typename AsyncWriteStream , typename ConstBufferSequence , typename WriteHandler >
 boost::asio::BOOST_ASIO_INITFN_RESULT_TYPE (WriteHandler, void(boost::system::error_code, std::size_t)) async_write(AsyncWriteStream &s
 Start an asynchronous operation to write all of the supplied data to a stream. More...
 
const ConstBufferSequence boost::asio::BOOST_ASIO_MOVE_ARG (WriteHandler) handler)
 
template<typename AsyncWriteStream , typename ConstBufferSequence , typename CompletionCondition , typename WriteHandler >
 boost::asio::BOOST_ASIO_INITFN_RESULT_TYPE (WriteHandler, void(boost::system::error_code, std::size_t)) async_write(AsyncWriteStream &s
 Start an asynchronous operation to write a certain amount of data to a stream. More...