#include "asio/detail/push_options.hpp"
#include <cstddef>
#include <boost/config.hpp>
#include <boost/cstdint.hpp>
#include "asio/detail/pop_options.hpp"
#include "asio/basic_streambuf.hpp"
#include "asio/error.hpp"
#include "asio/impl/write_at.ipp"
Go to the source code of this file.
Namespaces | |
namespace | asio |
Functions | |
template<typename AsyncRandomAccessWriteDevice , typename ConstBufferSequence , typename WriteHandler > | |
void | asio::async_write_at (AsyncRandomAccessWriteDevice &d, boost::uint64_t offset, const ConstBufferSequence &buffers, WriteHandler handler) |
template<typename AsyncRandomAccessWriteDevice , typename ConstBufferSequence , typename CompletionCondition , typename WriteHandler > | |
void | asio::async_write_at (AsyncRandomAccessWriteDevice &d, boost::uint64_t offset, const ConstBufferSequence &buffers, CompletionCondition completion_condition, WriteHandler handler) |
template<typename AsyncRandomAccessWriteDevice , typename Allocator , typename WriteHandler > | |
void | asio::async_write_at (AsyncRandomAccessWriteDevice &d, boost::uint64_t offset, basic_streambuf< Allocator > &b, WriteHandler handler) |
template<typename AsyncRandomAccessWriteDevice , typename Allocator , typename CompletionCondition , typename WriteHandler > | |
void | asio::async_write_at (AsyncRandomAccessWriteDevice &d, boost::uint64_t offset, basic_streambuf< Allocator > &b, CompletionCondition completion_condition, WriteHandler handler) |
template<typename SyncRandomAccessWriteDevice , typename ConstBufferSequence > | |
std::size_t | asio::write_at (SyncRandomAccessWriteDevice &d, boost::uint64_t offset, const ConstBufferSequence &buffers) |
Write all of the supplied data at the specified offset before returning. | |
template<typename SyncRandomAccessWriteDevice , typename ConstBufferSequence , typename CompletionCondition > | |
std::size_t | asio::write_at (SyncRandomAccessWriteDevice &d, boost::uint64_t offset, const ConstBufferSequence &buffers, CompletionCondition completion_condition) |
Write a certain amount of data at a specified offset before returning. | |
template<typename SyncRandomAccessWriteDevice , typename ConstBufferSequence , typename CompletionCondition > | |
std::size_t | asio::write_at (SyncRandomAccessWriteDevice &d, boost::uint64_t offset, const ConstBufferSequence &buffers, CompletionCondition completion_condition, asio::error_code &ec) |
Write a certain amount of data at a specified offset before returning. | |
template<typename SyncRandomAccessWriteDevice , typename Allocator > | |
std::size_t | asio::write_at (SyncRandomAccessWriteDevice &d, boost::uint64_t offset, basic_streambuf< Allocator > &b) |
Write all of the supplied data at the specified offset before returning. | |
template<typename SyncRandomAccessWriteDevice , typename Allocator , typename CompletionCondition > | |
std::size_t | asio::write_at (SyncRandomAccessWriteDevice &d, boost::uint64_t offset, basic_streambuf< Allocator > &b, CompletionCondition completion_condition) |
Write a certain amount of data at a specified offset before returning. | |
template<typename SyncRandomAccessWriteDevice , typename Allocator , typename CompletionCondition > | |
std::size_t | asio::write_at (SyncRandomAccessWriteDevice &d, boost::uint64_t offset, basic_streambuf< Allocator > &b, CompletionCondition completion_condition, asio::error_code &ec) |
Write a certain amount of data at a specified offset before returning. |