|
template<typename Handler , class T , class U > |
bool | operator== (const hook_allocator< T, Handler > &a, const hook_allocator< U, Handler > &b) noexcept |
|
template<typename Handler , class T , class U > |
bool | operator!= (const hook_allocator< T, Handler > &a, const hook_allocator< U, Handler > &b) noexcept |
|
template<typename Handler > |
associated_allocator< Handler >::type | get_associated_allocator (Handler &handler) noexcept |
| Get the handler's associated allocator. More...
|
|
template<typename Handler , typename... Args> |
implementation_defined | bind_handler (Handler &&handler, Args &&... args) |
| Bind values to a Handler's arguments to create a CompletionHandler. More...
|
|
void | connect (asio::ip::tcp::socket::lowest_layer_type &socket, asio::ip::tcp::resolver &resolver, const asio::ip::tcp::resolver::query &q) |
| Establishes a socket connection by trying each endpoint of a resolved name. More...
|
|
void | connect (asio::ip::tcp::socket::lowest_layer_type &socket, asio::ip::tcp::resolver &resolver, const asio::ip::tcp::resolver::query &q, error_code &ec) |
| Establishes a socket connection by trying each endpoint of a name. More...
|
|
template<typename ComposedConnectHandler > |
void_or_deduced | async_connect (asio::ip::tcp::socket::lowest_layer_type &socket, asio::ip::tcp::resolver &resolver, const asio::ip::tcp::resolver::query &q, ComposedConnectHandler &&handler) |
| Asynchronously establishe a socket connection by trying each endpoint of a resolved name. More...
|
|
unique_file_handle | duplicate (file_handle handle) |
| Duplicate the given file_handle's native handle. More...
|
|
unique_file_handle | duplicate (file_handle handle, error_code &ec) noexcept |
| Duplicate the given file_handle's native handle. More...
|
|
bool | operator== (const file_times &a, const file_times &b) |
|
bool | operator!= (const file_times &a, const file_times &b) |
|
template<typename Allocator > |
asio::const_buffers_1 | buffer (const basic_linear_buffer< Allocator > &b) noexcept |
|
template<typename Allocator > |
asio::mutable_buffers_1 | buffer (basic_linear_buffer< Allocator > &b) noexcept |
|
template<typename Allocator > |
dynamic_linear_buffer< Allocator > | dynamic_buffer (basic_linear_buffer< Allocator > &data) noexcept |
| Create a new dynamic buffer that represents the given basic_linear_buffer . More...
|
|
unique_file_handle | open (const char *filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none) |
| Open a file and return its handle. More...
|
|
unique_file_handle | open (const char *filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept |
| Open a file and return its handle. More...
|
|
unique_file_handle | open (const wchar_t *filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none) |
| Open a file and return its handle. More...
|
|
unique_file_handle | open (const wchar_t *filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept |
| Open a file and return its handle. More...
|
|
unique_file_handle | open (const boost::filesystem::path &filename, open_flags flags, file_perms perms=file_perms::create_default, file_attrs attrs=file_attrs::none) |
| Open a file and return its handle. More...
|
|
unique_file_handle | open (const boost::filesystem::path &filename, open_flags flags, file_perms perms, file_attrs attrs, error_code &ec) noexcept |
| Open a file and return its handle. More...
|
|
bool | is_valid (open_flags flags) noexcept |
| Check whether a set of open flags is valid. More...
|
|
file_handle | get_stdin () |
| Get a handle to the standard input. More...
|
|
file_handle | get_stdin (error_code &ec) noexcept |
| Get a handle to the standard input. More...
|
|
file_handle | get_stdout () |
| Get a handle to the standard output. More...
|
|
file_handle | get_stdout (error_code &ec) noexcept |
| Get a handle to the standard output. More...
|
|
file_handle | get_stderr () |
| Get a handle to the standard error. More...
|
|
file_handle | get_stderr (error_code &ec) noexcept |
| Get a handle to the standard error. More...
|
|
template<class ConstBufferSequence > |
void | write_file (const char *filename, const ConstBufferSequence &buffers) |
|
template<class ConstBufferSequence > |
void | write_file (const char *filename, const ConstBufferSequence &buffers, error_code &ec) noexcept |
|
template<class ConstBufferSequence > |
void | write_file (const wchar_t *filename, const ConstBufferSequence &buffers) |
|
template<class ConstBufferSequence > |
void | write_file (const wchar_t *filename, const ConstBufferSequence &buffers, error_code &ec) noexcept |
|
template<class ConstBufferSequence > |
void | write_file (const boost::filesystem::path &filename, const ConstBufferSequence &buffers) |
|
template<class ConstBufferSequence > |
void | write_file (const boost::filesystem::path &filename, const ConstBufferSequence &buffers, error_code &ec) noexcept |
|
|
See RawByteContainer for RawByteContainer requirements.
|
template<class RawByteContainer > |
void | read_file (const char *filename, RawByteContainer &c) |
|
template<class RawByteContainer > |
void | read_file (const char *filename, RawByteContainer &c, error_code &ec) |
|
template<class RawByteContainer > |
void | read_file (const wchar_t *filename, RawByteContainer &c) |
|
template<class RawByteContainer > |
void | read_file (const wchar_t *filename, RawByteContainer &c, error_code &ec) |
|
template<class RawByteContainer > |
void | read_file (const boost::filesystem::path &filename, RawByteContainer &c) |
|
template<class RawByteContainer > |
void | read_file (const boost::filesystem::path &filename, RawByteContainer &c, error_code &ec) |
|
template<class RawByteContainer > |
void | read_file (file_handle file, RawByteContainer &c) |
|
template<class RawByteContainer > |
void | read_file (file_handle file, RawByteContainer &c, error_code &ec) noexcept |
|
|
template<class MutableBufferSequence > |
void | read_file (const char *filename, const MutableBufferSequence &buffers) |
|
template<class MutableBufferSequence > |
void | read_file (const char *filename, const MutableBufferSequence &buffers, error_code &ec) noexcept |
|
template<class MutableBufferSequence > |
void | read_file (const wchar_t *filename, const MutableBufferSequence &buffers) |
|
template<class MutableBufferSequence > |
void | read_file (const wchar_t *filename, const MutableBufferSequence &buffers, error_code &ec) noexcept |
|
template<class MutableBufferSequence > |
void | read_file (const boost::filesystem::path &filename, const MutableBufferSequence &buffers) |
|
template<class MutableBufferSequence > |
void | read_file (const boost::filesystem::path &filename, const MutableBufferSequence &buffers, error_code &ec) noexcept |
|
template<class MutableBufferSequence > |
void | read_file (file_handle file, const MutableBufferSequence &buffers) |
|
template<class MutableBufferSequence > |
void | read_file (file_handle file, const MutableBufferSequence &buffers, error_code &ec) noexcept |
|