Lines Matching refs:other
104 read_op(const read_op& other)
105 : detail::base_from_completion_cond<CompletionCondition>(other),
106 stream_(other.stream_),
107 buffers_(other.buffers_),
108 start_(other.start_),
109 total_transferred_(other.total_transferred_),
110 handler_(other.handler_)
114 read_op(read_op&& other)
115 : detail::base_from_completion_cond<CompletionCondition>(other),
116 stream_(other.stream_),
117 buffers_(other.buffers_),
118 start_(other.start_),
119 total_transferred_(other.total_transferred_),
120 handler_(ASIO_MOVE_CAST(ReadHandler)(other.handler_))
177 read_op(const read_op& other)
178 : detail::base_from_completion_cond<CompletionCondition>(other),
179 stream_(other.stream_),
180 buffer_(other.buffer_),
181 start_(other.start_),
182 total_transferred_(other.total_transferred_),
183 handler_(other.handler_)
187 read_op(read_op&& other)
188 : detail::base_from_completion_cond<CompletionCondition>(other),
189 stream_(other.stream_),
190 buffer_(other.buffer_),
191 start_(other.start_),
192 total_transferred_(other.total_transferred_),
193 handler_(ASIO_MOVE_CAST(ReadHandler)(other.handler_))
249 read_op(const read_op& other)
250 : detail::base_from_completion_cond<CompletionCondition>(other),
251 stream_(other.stream_),
252 buffers_(other.buffers_),
253 start_(other.start_),
254 total_transferred_(other.total_transferred_),
255 handler_(other.handler_)
259 read_op(read_op&& other)
260 : detail::base_from_completion_cond<CompletionCondition>(other),
261 stream_(other.stream_),
262 buffers_(other.buffers_),
263 start_(other.start_),
264 total_transferred_(other.total_transferred_),
265 handler_(ASIO_MOVE_CAST(ReadHandler)(other.handler_))
331 read_op(const read_op& other)
332 : detail::base_from_completion_cond<CompletionCondition>(other),
333 stream_(other.stream_),
334 buffers_(other.buffers_),
335 start_(other.start_),
336 total_transferred_(other.total_transferred_),
337 handler_(other.handler_)
341 read_op(read_op&& other)
342 : detail::base_from_completion_cond<CompletionCondition>(other),
343 stream_(other.stream_),
344 buffers_(other.buffers_),
345 start_(other.start_),
346 total_transferred_(other.total_transferred_),
347 handler_(ASIO_MOVE_CAST(ReadHandler)(other.handler_))