| 265 | typename ConstBufferSequence, typename ConstBufferIterator, |
| 266 | typename CompletionCondition, typename WriteHandler> |
| 267 | inline bool asio_handler_is_continuation( |
| 268 | write_at_op<AsyncRandomAccessWriteDevice, ConstBufferSequence, |
| 269 | ConstBufferIterator, CompletionCondition, WriteHandler>* this_handler) |
| 270 | { |
| 271 | return this_handler->start_ == 0 ? true |
| 272 | : BOOST_ASIO_VERSIONED_NAME(handler_cont_helpers)::is_continuation( |
| 273 | this_handler->handler_); |
| 274 | } |
| 275 | |
| 276 | template <typename AsyncRandomAccessWriteDevice, |
| 277 | typename ConstBufferSequence, typename ConstBufferIterator, |
nothing calls this directly
no test coverage detected