|
template<typename SyncRandomAccessWriteDevice , typename ConstBufferSequence > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, const ConstBufferSequence &buffers) |
| Write all of the supplied data at the specified offset before returning. More...
|
|
template<typename SyncRandomAccessWriteDevice , typename ConstBufferSequence > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, const ConstBufferSequence &buffers, boost::system::error_code &ec) |
| Write all of the supplied data at the specified offset before returning. More...
|
|
template<typename SyncRandomAccessWriteDevice , typename ConstBufferSequence , typename CompletionCondition > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, const ConstBufferSequence &buffers, CompletionCondition completion_condition) |
| Write a certain amount of data at a specified offset before returning. More...
|
|
template<typename SyncRandomAccessWriteDevice , typename ConstBufferSequence , typename CompletionCondition > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, const ConstBufferSequence &buffers, CompletionCondition completion_condition, boost::system::error_code &ec) |
| Write a certain amount of data at a specified offset before returning. More...
|
|
template<typename SyncRandomAccessWriteDevice , typename Allocator > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, basic_streambuf< Allocator > &b) |
| Write all of the supplied data at the specified offset before returning. More...
|
|
template<typename SyncRandomAccessWriteDevice , typename Allocator > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, basic_streambuf< Allocator > &b, boost::system::error_code &ec) |
| Write all of the supplied data at the specified offset before returning. More...
|
|
template<typename SyncRandomAccessWriteDevice , typename Allocator , typename CompletionCondition > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, basic_streambuf< Allocator > &b, CompletionCondition completion_condition) |
| Write a certain amount of data at a specified offset before returning. More...
|
|
template<typename SyncRandomAccessWriteDevice , typename Allocator , typename CompletionCondition > |
std::size_t | boost::asio::write_at (SyncRandomAccessWriteDevice &d, uint64_t offset, basic_streambuf< Allocator > &b, CompletionCondition completion_condition, boost::system::error_code &ec) |
| Write a certain amount of data at a specified offset 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...
|
|