• Home
  • Raw
  • Download

Lines Matching refs:asio

46   typedef boost::asio::io_context::executor_type executor_type;
48 test_stream(boost::asio::io_context& io_context) in test_stream()
86 size_t buffer_length = boost::asio::buffer_size(*iter); in check_buffers()
100 return check_buffers(boost::asio::buffer_sequence_begin(buffers), in check_buffers()
101 boost::asio::buffer_sequence_end(buffers), length); in check_buffers()
107 size_t n = boost::asio::buffer_copy(buffers, in read_some()
108 boost::asio::buffer(data_, length_) + position_, in read_some()
127 boost::asio::post(get_executor(), in async_read_some()
128 boost::asio::detail::bind_handler( in async_read_some()
134 boost::asio::io_context& io_context_;
147 boost::asio::io_context ioc; in test_2_arg_zero_buffers_read()
149 std::vector<boost::asio::mutable_buffer> buffers; in test_2_arg_zero_buffers_read()
151 size_t bytes_transferred = boost::asio::read(s, buffers); in test_2_arg_zero_buffers_read()
157 boost::asio::io_context ioc; in test_2_arg_mutable_buffer_read()
160 boost::asio::mutable_buffer buffers in test_2_arg_mutable_buffer_read()
161 = boost::asio::buffer(read_buf, sizeof(read_buf)); in test_2_arg_mutable_buffer_read()
165 size_t bytes_transferred = boost::asio::read(s, buffers); in test_2_arg_mutable_buffer_read()
172 bytes_transferred = boost::asio::read(s, buffers); in test_2_arg_mutable_buffer_read()
179 bytes_transferred = boost::asio::read(s, buffers); in test_2_arg_mutable_buffer_read()
186 boost::asio::io_context ioc; in test_2_arg_vector_buffers_read()
189 std::vector<boost::asio::mutable_buffer> buffers; in test_2_arg_vector_buffers_read()
190 buffers.push_back(boost::asio::buffer(read_buf, 32)); in test_2_arg_vector_buffers_read()
191 buffers.push_back(boost::asio::buffer(read_buf, 39) + 32); in test_2_arg_vector_buffers_read()
192 buffers.push_back(boost::asio::buffer(read_buf) + 39); in test_2_arg_vector_buffers_read()
196 size_t bytes_transferred = boost::asio::read(s, buffers); in test_2_arg_vector_buffers_read()
203 bytes_transferred = boost::asio::read(s, buffers); in test_2_arg_vector_buffers_read()
210 bytes_transferred = boost::asio::read(s, buffers); in test_2_arg_vector_buffers_read()
217 boost::asio::io_context ioc; in test_2_arg_dynamic_string_read()
220 boost::asio::dynamic_string_buffer<char, std::string::traits_type, in test_2_arg_dynamic_string_read()
222 = boost::asio::dynamic_buffer(data, sizeof(read_data)); in test_2_arg_dynamic_string_read()
226 size_t bytes_transferred = boost::asio::read(s, sb); in test_2_arg_dynamic_string_read()
234 bytes_transferred = boost::asio::read(s, sb); in test_2_arg_dynamic_string_read()
242 bytes_transferred = boost::asio::read(s, sb); in test_2_arg_dynamic_string_read()
251 boost::asio::io_context ioc; in test_2_arg_streambuf_read()
253 boost::asio::streambuf sb(sizeof(read_data)); in test_2_arg_streambuf_read()
257 size_t bytes_transferred = boost::asio::read(s, sb); in test_2_arg_streambuf_read()
265 bytes_transferred = boost::asio::read(s, sb); in test_2_arg_streambuf_read()
273 bytes_transferred = boost::asio::read(s, sb); in test_2_arg_streambuf_read()
282 boost::asio::io_context ioc; in test_3_arg_nothrow_zero_buffers_read()
284 std::vector<boost::asio::mutable_buffer> buffers; in test_3_arg_nothrow_zero_buffers_read()
287 size_t bytes_transferred = boost::asio::read(s, buffers, error); in test_3_arg_nothrow_zero_buffers_read()
294 boost::asio::io_context ioc; in test_3_arg_nothrow_mutable_buffer_read()
297 boost::asio::mutable_buffer buffers in test_3_arg_nothrow_mutable_buffer_read()
298 = boost::asio::buffer(read_buf, sizeof(read_buf)); in test_3_arg_nothrow_mutable_buffer_read()
303 size_t bytes_transferred = boost::asio::read(s, buffers, error); in test_3_arg_nothrow_mutable_buffer_read()
311 bytes_transferred = boost::asio::read(s, buffers, error); in test_3_arg_nothrow_mutable_buffer_read()
319 bytes_transferred = boost::asio::read(s, buffers, error); in test_3_arg_nothrow_mutable_buffer_read()
327 boost::asio::io_context ioc; in test_3_arg_nothrow_vector_buffers_read()
330 std::vector<boost::asio::mutable_buffer> buffers; in test_3_arg_nothrow_vector_buffers_read()
331 buffers.push_back(boost::asio::buffer(read_buf, 32)); in test_3_arg_nothrow_vector_buffers_read()
332 buffers.push_back(boost::asio::buffer(read_buf, 39) + 32); in test_3_arg_nothrow_vector_buffers_read()
333 buffers.push_back(boost::asio::buffer(read_buf) + 39); in test_3_arg_nothrow_vector_buffers_read()
338 size_t bytes_transferred = boost::asio::read(s, buffers, error); in test_3_arg_nothrow_vector_buffers_read()
346 bytes_transferred = boost::asio::read(s, buffers, error); in test_3_arg_nothrow_vector_buffers_read()
354 bytes_transferred = boost::asio::read(s, buffers, error); in test_3_arg_nothrow_vector_buffers_read()
362 boost::asio::io_context ioc; in test_3_arg_nothrow_dynamic_string_read()
365 boost::asio::dynamic_string_buffer<char, std::string::traits_type, in test_3_arg_nothrow_dynamic_string_read()
367 = boost::asio::dynamic_buffer(data, sizeof(read_data)); in test_3_arg_nothrow_dynamic_string_read()
372 size_t bytes_transferred = boost::asio::read(s, sb, error); in test_3_arg_nothrow_dynamic_string_read()
381 bytes_transferred = boost::asio::read(s, sb, error); in test_3_arg_nothrow_dynamic_string_read()
390 bytes_transferred = boost::asio::read(s, sb, error); in test_3_arg_nothrow_dynamic_string_read()
400 boost::asio::io_context ioc; in test_3_arg_nothrow_streambuf_read()
402 boost::asio::streambuf sb(sizeof(read_data)); in test_3_arg_nothrow_streambuf_read()
407 size_t bytes_transferred = boost::asio::read(s, sb, error); in test_3_arg_nothrow_streambuf_read()
416 bytes_transferred = boost::asio::read(s, sb, error); in test_3_arg_nothrow_streambuf_read()
425 bytes_transferred = boost::asio::read(s, sb, error); in test_3_arg_nothrow_streambuf_read()
456 boost::asio::io_context ioc; in test_3_arg_mutable_buffer_read()
459 boost::asio::mutable_buffer buffers in test_3_arg_mutable_buffer_read()
460 = boost::asio::buffer(read_buf, sizeof(read_buf)); in test_3_arg_mutable_buffer_read()
464 size_t bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
465 boost::asio::transfer_all()); in test_3_arg_mutable_buffer_read()
472 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
473 boost::asio::transfer_all()); in test_3_arg_mutable_buffer_read()
480 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
481 boost::asio::transfer_all()); in test_3_arg_mutable_buffer_read()
487 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
488 boost::asio::transfer_at_least(1)); in test_3_arg_mutable_buffer_read()
495 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
496 boost::asio::transfer_at_least(1)); in test_3_arg_mutable_buffer_read()
503 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
504 boost::asio::transfer_at_least(1)); in test_3_arg_mutable_buffer_read()
510 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
511 boost::asio::transfer_at_least(10)); in test_3_arg_mutable_buffer_read()
518 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
519 boost::asio::transfer_at_least(10)); in test_3_arg_mutable_buffer_read()
526 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
527 boost::asio::transfer_at_least(10)); in test_3_arg_mutable_buffer_read()
533 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
534 boost::asio::transfer_at_least(42)); in test_3_arg_mutable_buffer_read()
541 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
542 boost::asio::transfer_at_least(42)); in test_3_arg_mutable_buffer_read()
549 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
550 boost::asio::transfer_at_least(42)); in test_3_arg_mutable_buffer_read()
556 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
557 boost::asio::transfer_exactly(1)); in test_3_arg_mutable_buffer_read()
564 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
565 boost::asio::transfer_exactly(1)); in test_3_arg_mutable_buffer_read()
572 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
573 boost::asio::transfer_exactly(1)); in test_3_arg_mutable_buffer_read()
579 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
580 boost::asio::transfer_exactly(10)); in test_3_arg_mutable_buffer_read()
587 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
588 boost::asio::transfer_exactly(10)); in test_3_arg_mutable_buffer_read()
595 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
596 boost::asio::transfer_exactly(10)); in test_3_arg_mutable_buffer_read()
602 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
603 boost::asio::transfer_exactly(42)); in test_3_arg_mutable_buffer_read()
610 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
611 boost::asio::transfer_exactly(42)); in test_3_arg_mutable_buffer_read()
618 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_mutable_buffer_read()
619 boost::asio::transfer_exactly(42)); in test_3_arg_mutable_buffer_read()
625 bytes_transferred = boost::asio::read(s, buffers, old_style_transfer_all); in test_3_arg_mutable_buffer_read()
632 bytes_transferred = boost::asio::read(s, buffers, old_style_transfer_all); in test_3_arg_mutable_buffer_read()
639 bytes_transferred = boost::asio::read(s, buffers, old_style_transfer_all); in test_3_arg_mutable_buffer_read()
645 bytes_transferred = boost::asio::read(s, buffers, short_transfer()); in test_3_arg_mutable_buffer_read()
652 bytes_transferred = boost::asio::read(s, buffers, short_transfer()); in test_3_arg_mutable_buffer_read()
659 bytes_transferred = boost::asio::read(s, buffers, short_transfer()); in test_3_arg_mutable_buffer_read()
666 boost::asio::io_context ioc; in test_3_arg_vector_buffers_read()
669 std::vector<boost::asio::mutable_buffer> buffers; in test_3_arg_vector_buffers_read()
670 buffers.push_back(boost::asio::buffer(read_buf, 32)); in test_3_arg_vector_buffers_read()
671 buffers.push_back(boost::asio::buffer(read_buf, 39) + 32); in test_3_arg_vector_buffers_read()
672 buffers.push_back(boost::asio::buffer(read_buf) + 39); in test_3_arg_vector_buffers_read()
676 size_t bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
677 boost::asio::transfer_all()); in test_3_arg_vector_buffers_read()
684 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
685 boost::asio::transfer_all()); in test_3_arg_vector_buffers_read()
692 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
693 boost::asio::transfer_all()); in test_3_arg_vector_buffers_read()
699 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
700 boost::asio::transfer_at_least(1)); in test_3_arg_vector_buffers_read()
707 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
708 boost::asio::transfer_at_least(1)); in test_3_arg_vector_buffers_read()
715 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
716 boost::asio::transfer_at_least(1)); in test_3_arg_vector_buffers_read()
722 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
723 boost::asio::transfer_at_least(10)); in test_3_arg_vector_buffers_read()
730 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
731 boost::asio::transfer_at_least(10)); in test_3_arg_vector_buffers_read()
738 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
739 boost::asio::transfer_at_least(10)); in test_3_arg_vector_buffers_read()
745 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
746 boost::asio::transfer_at_least(42)); in test_3_arg_vector_buffers_read()
753 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
754 boost::asio::transfer_at_least(42)); in test_3_arg_vector_buffers_read()
761 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
762 boost::asio::transfer_at_least(42)); in test_3_arg_vector_buffers_read()
768 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
769 boost::asio::transfer_exactly(1)); in test_3_arg_vector_buffers_read()
776 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
777 boost::asio::transfer_exactly(1)); in test_3_arg_vector_buffers_read()
784 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
785 boost::asio::transfer_exactly(1)); in test_3_arg_vector_buffers_read()
791 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
792 boost::asio::transfer_exactly(10)); in test_3_arg_vector_buffers_read()
799 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
800 boost::asio::transfer_exactly(10)); in test_3_arg_vector_buffers_read()
807 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
808 boost::asio::transfer_exactly(10)); in test_3_arg_vector_buffers_read()
814 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
815 boost::asio::transfer_exactly(42)); in test_3_arg_vector_buffers_read()
822 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
823 boost::asio::transfer_exactly(42)); in test_3_arg_vector_buffers_read()
830 bytes_transferred = boost::asio::read(s, buffers, in test_3_arg_vector_buffers_read()
831 boost::asio::transfer_exactly(42)); in test_3_arg_vector_buffers_read()
837 bytes_transferred = boost::asio::read(s, buffers, old_style_transfer_all); in test_3_arg_vector_buffers_read()
844 bytes_transferred = boost::asio::read(s, buffers, old_style_transfer_all); in test_3_arg_vector_buffers_read()
851 bytes_transferred = boost::asio::read(s, buffers, old_style_transfer_all); in test_3_arg_vector_buffers_read()
857 bytes_transferred = boost::asio::read(s, buffers, short_transfer()); in test_3_arg_vector_buffers_read()
864 bytes_transferred = boost::asio::read(s, buffers, short_transfer()); in test_3_arg_vector_buffers_read()
871 bytes_transferred = boost::asio::read(s, buffers, short_transfer()); in test_3_arg_vector_buffers_read()
878 boost::asio::io_context ioc; in test_3_arg_dynamic_string_read()
881 boost::asio::dynamic_string_buffer<char, std::string::traits_type, in test_3_arg_dynamic_string_read()
883 = boost::asio::dynamic_buffer(data, sizeof(read_data)); in test_3_arg_dynamic_string_read()
887 size_t bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
888 boost::asio::transfer_all()); in test_3_arg_dynamic_string_read()
896 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
897 boost::asio::transfer_all()); in test_3_arg_dynamic_string_read()
905 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
906 boost::asio::transfer_all()); in test_3_arg_dynamic_string_read()
913 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
914 boost::asio::transfer_at_least(1)); in test_3_arg_dynamic_string_read()
922 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
923 boost::asio::transfer_at_least(1)); in test_3_arg_dynamic_string_read()
931 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
932 boost::asio::transfer_at_least(1)); in test_3_arg_dynamic_string_read()
939 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
940 boost::asio::transfer_at_least(10)); in test_3_arg_dynamic_string_read()
948 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
949 boost::asio::transfer_at_least(10)); in test_3_arg_dynamic_string_read()
957 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
958 boost::asio::transfer_at_least(10)); in test_3_arg_dynamic_string_read()
965 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
966 boost::asio::transfer_at_least(42)); in test_3_arg_dynamic_string_read()
974 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
975 boost::asio::transfer_at_least(42)); in test_3_arg_dynamic_string_read()
983 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
984 boost::asio::transfer_at_least(42)); in test_3_arg_dynamic_string_read()
991 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
992 boost::asio::transfer_exactly(1)); in test_3_arg_dynamic_string_read()
1000 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1001 boost::asio::transfer_exactly(1)); in test_3_arg_dynamic_string_read()
1009 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1010 boost::asio::transfer_exactly(1)); in test_3_arg_dynamic_string_read()
1017 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1018 boost::asio::transfer_exactly(10)); in test_3_arg_dynamic_string_read()
1026 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1027 boost::asio::transfer_exactly(10)); in test_3_arg_dynamic_string_read()
1035 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1036 boost::asio::transfer_exactly(10)); in test_3_arg_dynamic_string_read()
1043 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1044 boost::asio::transfer_exactly(42)); in test_3_arg_dynamic_string_read()
1052 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1053 boost::asio::transfer_exactly(42)); in test_3_arg_dynamic_string_read()
1061 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_dynamic_string_read()
1062 boost::asio::transfer_exactly(42)); in test_3_arg_dynamic_string_read()
1069 bytes_transferred = boost::asio::read(s, sb, old_style_transfer_all); in test_3_arg_dynamic_string_read()
1077 bytes_transferred = boost::asio::read(s, sb, old_style_transfer_all); in test_3_arg_dynamic_string_read()
1085 bytes_transferred = boost::asio::read(s, sb, old_style_transfer_all); in test_3_arg_dynamic_string_read()
1092 bytes_transferred = boost::asio::read(s, sb, short_transfer()); in test_3_arg_dynamic_string_read()
1100 bytes_transferred = boost::asio::read(s, sb, short_transfer()); in test_3_arg_dynamic_string_read()
1108 bytes_transferred = boost::asio::read(s, sb, short_transfer()); in test_3_arg_dynamic_string_read()
1117 boost::asio::io_context ioc; in test_3_arg_streambuf_read()
1119 boost::asio::streambuf sb(sizeof(read_data)); in test_3_arg_streambuf_read()
1123 size_t bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1124 boost::asio::transfer_all()); in test_3_arg_streambuf_read()
1132 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1133 boost::asio::transfer_all()); in test_3_arg_streambuf_read()
1141 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1142 boost::asio::transfer_all()); in test_3_arg_streambuf_read()
1149 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1150 boost::asio::transfer_at_least(1)); in test_3_arg_streambuf_read()
1158 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1159 boost::asio::transfer_at_least(1)); in test_3_arg_streambuf_read()
1167 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1168 boost::asio::transfer_at_least(1)); in test_3_arg_streambuf_read()
1175 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1176 boost::asio::transfer_at_least(10)); in test_3_arg_streambuf_read()
1184 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1185 boost::asio::transfer_at_least(10)); in test_3_arg_streambuf_read()
1193 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1194 boost::asio::transfer_at_least(10)); in test_3_arg_streambuf_read()
1201 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1202 boost::asio::transfer_at_least(42)); in test_3_arg_streambuf_read()
1210 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1211 boost::asio::transfer_at_least(42)); in test_3_arg_streambuf_read()
1219 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1220 boost::asio::transfer_at_least(42)); in test_3_arg_streambuf_read()
1227 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1228 boost::asio::transfer_exactly(1)); in test_3_arg_streambuf_read()
1236 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1237 boost::asio::transfer_exactly(1)); in test_3_arg_streambuf_read()
1245 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1246 boost::asio::transfer_exactly(1)); in test_3_arg_streambuf_read()
1253 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1254 boost::asio::transfer_exactly(10)); in test_3_arg_streambuf_read()
1262 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1263 boost::asio::transfer_exactly(10)); in test_3_arg_streambuf_read()
1271 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1272 boost::asio::transfer_exactly(10)); in test_3_arg_streambuf_read()
1279 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1280 boost::asio::transfer_exactly(42)); in test_3_arg_streambuf_read()
1288 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1289 boost::asio::transfer_exactly(42)); in test_3_arg_streambuf_read()
1297 bytes_transferred = boost::asio::read(s, sb, in test_3_arg_streambuf_read()
1298 boost::asio::transfer_exactly(42)); in test_3_arg_streambuf_read()
1305 bytes_transferred = boost::asio::read(s, sb, old_style_transfer_all); in test_3_arg_streambuf_read()
1313 bytes_transferred = boost::asio::read(s, sb, old_style_transfer_all); in test_3_arg_streambuf_read()
1321 bytes_transferred = boost::asio::read(s, sb, old_style_transfer_all); in test_3_arg_streambuf_read()
1328 bytes_transferred = boost::asio::read(s, sb, short_transfer()); in test_3_arg_streambuf_read()
1336 bytes_transferred = boost::asio::read(s, sb, short_transfer()); in test_3_arg_streambuf_read()
1344 bytes_transferred = boost::asio::read(s, sb, short_transfer()); in test_3_arg_streambuf_read()
1353 boost::asio::io_context ioc; in test_4_arg_mutable_buffer_read()
1356 boost::asio::mutable_buffer buffers in test_4_arg_mutable_buffer_read()
1357 = boost::asio::buffer(read_buf, sizeof(read_buf)); in test_4_arg_mutable_buffer_read()
1362 size_t bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1363 boost::asio::transfer_all(), error); in test_4_arg_mutable_buffer_read()
1372 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1373 boost::asio::transfer_all(), error); in test_4_arg_mutable_buffer_read()
1382 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1383 boost::asio::transfer_all(), error); in test_4_arg_mutable_buffer_read()
1391 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1392 boost::asio::transfer_at_least(1), error); in test_4_arg_mutable_buffer_read()
1401 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1402 boost::asio::transfer_at_least(1), error); in test_4_arg_mutable_buffer_read()
1411 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1412 boost::asio::transfer_at_least(1), error); in test_4_arg_mutable_buffer_read()
1420 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1421 boost::asio::transfer_at_least(10), error); in test_4_arg_mutable_buffer_read()
1430 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1431 boost::asio::transfer_at_least(10), error); in test_4_arg_mutable_buffer_read()
1440 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1441 boost::asio::transfer_at_least(10), error); in test_4_arg_mutable_buffer_read()
1449 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1450 boost::asio::transfer_at_least(42), error); in test_4_arg_mutable_buffer_read()
1459 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1460 boost::asio::transfer_at_least(42), error); in test_4_arg_mutable_buffer_read()
1469 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1470 boost::asio::transfer_at_least(42), error); in test_4_arg_mutable_buffer_read()
1478 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1479 boost::asio::transfer_exactly(1), error); in test_4_arg_mutable_buffer_read()
1488 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1489 boost::asio::transfer_exactly(1), error); in test_4_arg_mutable_buffer_read()
1498 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1499 boost::asio::transfer_exactly(1), error); in test_4_arg_mutable_buffer_read()
1507 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1508 boost::asio::transfer_exactly(10), error); in test_4_arg_mutable_buffer_read()
1517 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1518 boost::asio::transfer_exactly(10), error); in test_4_arg_mutable_buffer_read()
1527 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1528 boost::asio::transfer_exactly(10), error); in test_4_arg_mutable_buffer_read()
1536 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1537 boost::asio::transfer_exactly(42), error); in test_4_arg_mutable_buffer_read()
1546 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1547 boost::asio::transfer_exactly(42), error); in test_4_arg_mutable_buffer_read()
1556 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1557 boost::asio::transfer_exactly(42), error); in test_4_arg_mutable_buffer_read()
1564 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1574 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1584 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_mutable_buffer_read()
1592 bytes_transferred = boost::asio::read(s, buffers, short_transfer(), error); in test_4_arg_mutable_buffer_read()
1601 bytes_transferred = boost::asio::read(s, buffers, short_transfer(), error); in test_4_arg_mutable_buffer_read()
1610 bytes_transferred = boost::asio::read(s, buffers, short_transfer(), error); in test_4_arg_mutable_buffer_read()
1618 boost::asio::io_context ioc; in test_4_arg_vector_buffers_read()
1621 std::vector<boost::asio::mutable_buffer> buffers; in test_4_arg_vector_buffers_read()
1622 buffers.push_back(boost::asio::buffer(read_buf, 32)); in test_4_arg_vector_buffers_read()
1623 buffers.push_back(boost::asio::buffer(read_buf, 39) + 32); in test_4_arg_vector_buffers_read()
1624 buffers.push_back(boost::asio::buffer(read_buf) + 39); in test_4_arg_vector_buffers_read()
1629 size_t bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1630 boost::asio::transfer_all(), error); in test_4_arg_vector_buffers_read()
1639 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1640 boost::asio::transfer_all(), error); in test_4_arg_vector_buffers_read()
1649 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1650 boost::asio::transfer_all(), error); in test_4_arg_vector_buffers_read()
1658 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1659 boost::asio::transfer_at_least(1), error); in test_4_arg_vector_buffers_read()
1668 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1669 boost::asio::transfer_at_least(1), error); in test_4_arg_vector_buffers_read()
1678 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1679 boost::asio::transfer_at_least(1), error); in test_4_arg_vector_buffers_read()
1687 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1688 boost::asio::transfer_at_least(10), error); in test_4_arg_vector_buffers_read()
1697 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1698 boost::asio::transfer_at_least(10), error); in test_4_arg_vector_buffers_read()
1707 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1708 boost::asio::transfer_at_least(10), error); in test_4_arg_vector_buffers_read()
1716 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1717 boost::asio::transfer_at_least(42), error); in test_4_arg_vector_buffers_read()
1726 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1727 boost::asio::transfer_at_least(42), error); in test_4_arg_vector_buffers_read()
1736 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1737 boost::asio::transfer_at_least(42), error); in test_4_arg_vector_buffers_read()
1745 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1746 boost::asio::transfer_exactly(1), error); in test_4_arg_vector_buffers_read()
1755 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1756 boost::asio::transfer_exactly(1), error); in test_4_arg_vector_buffers_read()
1765 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1766 boost::asio::transfer_exactly(1), error); in test_4_arg_vector_buffers_read()
1774 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1775 boost::asio::transfer_exactly(10), error); in test_4_arg_vector_buffers_read()
1784 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1785 boost::asio::transfer_exactly(10), error); in test_4_arg_vector_buffers_read()
1794 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1795 boost::asio::transfer_exactly(10), error); in test_4_arg_vector_buffers_read()
1803 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1804 boost::asio::transfer_exactly(42), error); in test_4_arg_vector_buffers_read()
1813 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1814 boost::asio::transfer_exactly(42), error); in test_4_arg_vector_buffers_read()
1823 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1824 boost::asio::transfer_exactly(42), error); in test_4_arg_vector_buffers_read()
1831 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1841 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1851 bytes_transferred = boost::asio::read(s, buffers, in test_4_arg_vector_buffers_read()
1859 bytes_transferred = boost::asio::read(s, buffers, short_transfer(), error); in test_4_arg_vector_buffers_read()
1868 bytes_transferred = boost::asio::read(s, buffers, short_transfer(), error); in test_4_arg_vector_buffers_read()
1877 bytes_transferred = boost::asio::read(s, buffers, short_transfer(), error); in test_4_arg_vector_buffers_read()
1885 boost::asio::io_context ioc; in test_4_arg_dynamic_string_read()
1888 boost::asio::dynamic_string_buffer<char, std::string::traits_type, in test_4_arg_dynamic_string_read()
1890 = boost::asio::dynamic_buffer(data, sizeof(read_data)); in test_4_arg_dynamic_string_read()
1895 size_t bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1896 boost::asio::transfer_all(), error); in test_4_arg_dynamic_string_read()
1906 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1907 boost::asio::transfer_all(), error); in test_4_arg_dynamic_string_read()
1917 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1918 boost::asio::transfer_all(), error); in test_4_arg_dynamic_string_read()
1927 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1928 boost::asio::transfer_at_least(1), error); in test_4_arg_dynamic_string_read()
1938 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1939 boost::asio::transfer_at_least(1), error); in test_4_arg_dynamic_string_read()
1949 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1950 boost::asio::transfer_at_least(1), error); in test_4_arg_dynamic_string_read()
1959 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1960 boost::asio::transfer_at_least(10), error); in test_4_arg_dynamic_string_read()
1970 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1971 boost::asio::transfer_at_least(10), error); in test_4_arg_dynamic_string_read()
1981 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1982 boost::asio::transfer_at_least(10), error); in test_4_arg_dynamic_string_read()
1991 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
1992 boost::asio::transfer_at_least(42), error); in test_4_arg_dynamic_string_read()
2002 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2003 boost::asio::transfer_at_least(42), error); in test_4_arg_dynamic_string_read()
2013 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2014 boost::asio::transfer_at_least(42), error); in test_4_arg_dynamic_string_read()
2023 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2024 boost::asio::transfer_exactly(1), error); in test_4_arg_dynamic_string_read()
2034 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2035 boost::asio::transfer_exactly(1), error); in test_4_arg_dynamic_string_read()
2045 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2046 boost::asio::transfer_exactly(1), error); in test_4_arg_dynamic_string_read()
2055 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2056 boost::asio::transfer_exactly(10), error); in test_4_arg_dynamic_string_read()
2066 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2067 boost::asio::transfer_exactly(10), error); in test_4_arg_dynamic_string_read()
2077 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2078 boost::asio::transfer_exactly(10), error); in test_4_arg_dynamic_string_read()
2087 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2088 boost::asio::transfer_exactly(42), error); in test_4_arg_dynamic_string_read()
2098 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2099 boost::asio::transfer_exactly(42), error); in test_4_arg_dynamic_string_read()
2109 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2110 boost::asio::transfer_exactly(42), error); in test_4_arg_dynamic_string_read()
2118 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2129 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2140 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_dynamic_string_read()
2149 bytes_transferred = boost::asio::read(s, sb, short_transfer(), error); in test_4_arg_dynamic_string_read()
2159 bytes_transferred = boost::asio::read(s, sb, short_transfer(), error); in test_4_arg_dynamic_string_read()
2169 bytes_transferred = boost::asio::read(s, sb, short_transfer(), error); in test_4_arg_dynamic_string_read()
2179 boost::asio::io_context ioc; in test_4_arg_streambuf_read()
2181 boost::asio::streambuf sb(sizeof(read_data)); in test_4_arg_streambuf_read()
2186 size_t bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2187 boost::asio::transfer_all(), error); in test_4_arg_streambuf_read()
2197 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2198 boost::asio::transfer_all(), error); in test_4_arg_streambuf_read()
2208 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2209 boost::asio::transfer_all(), error); in test_4_arg_streambuf_read()
2218 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2219 boost::asio::transfer_at_least(1), error); in test_4_arg_streambuf_read()
2229 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2230 boost::asio::transfer_at_least(1), error); in test_4_arg_streambuf_read()
2240 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2241 boost::asio::transfer_at_least(1), error); in test_4_arg_streambuf_read()
2250 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2251 boost::asio::transfer_at_least(10), error); in test_4_arg_streambuf_read()
2261 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2262 boost::asio::transfer_at_least(10), error); in test_4_arg_streambuf_read()
2272 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2273 boost::asio::transfer_at_least(10), error); in test_4_arg_streambuf_read()
2282 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2283 boost::asio::transfer_at_least(42), error); in test_4_arg_streambuf_read()
2293 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2294 boost::asio::transfer_at_least(42), error); in test_4_arg_streambuf_read()
2304 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2305 boost::asio::transfer_at_least(42), error); in test_4_arg_streambuf_read()
2314 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2315 boost::asio::transfer_exactly(1), error); in test_4_arg_streambuf_read()
2325 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2326 boost::asio::transfer_exactly(1), error); in test_4_arg_streambuf_read()
2336 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2337 boost::asio::transfer_exactly(1), error); in test_4_arg_streambuf_read()
2346 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2347 boost::asio::transfer_exactly(10), error); in test_4_arg_streambuf_read()
2357 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2358 boost::asio::transfer_exactly(10), error); in test_4_arg_streambuf_read()
2368 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2369 boost::asio::transfer_exactly(10), error); in test_4_arg_streambuf_read()
2378 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2379 boost::asio::transfer_exactly(42), error); in test_4_arg_streambuf_read()
2389 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2390 boost::asio::transfer_exactly(42), error); in test_4_arg_streambuf_read()
2400 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2401 boost::asio::transfer_exactly(42), error); in test_4_arg_streambuf_read()
2409 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2420 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2431 bytes_transferred = boost::asio::read(s, sb, in test_4_arg_streambuf_read()
2440 bytes_transferred = boost::asio::read(s, sb, short_transfer(), error); in test_4_arg_streambuf_read()
2450 bytes_transferred = boost::asio::read(s, sb, short_transfer(), error); in test_4_arg_streambuf_read()
2460 bytes_transferred = boost::asio::read(s, sb, short_transfer(), error); in test_4_arg_streambuf_read()
2486 boost::asio::io_context ioc; in test_3_arg_mutable_buffer_async_read()
2489 boost::asio::mutable_buffer buffers in test_3_arg_mutable_buffer_async_read()
2490 = boost::asio::buffer(read_buf, sizeof(read_buf)); in test_3_arg_mutable_buffer_async_read()
2495 boost::asio::async_read(s, buffers, in test_3_arg_mutable_buffer_async_read()
2507 boost::asio::async_read(s, buffers, in test_3_arg_mutable_buffer_async_read()
2519 boost::asio::async_read(s, buffers, in test_3_arg_mutable_buffer_async_read()
2529 int i = boost::asio::async_read(s, buffers, archetypes::lazy_handler()); in test_3_arg_mutable_buffer_async_read()
2547 boost::asio::io_context ioc; in test_3_arg_boost_array_buffers_async_read()
2550 boost::array<boost::asio::mutable_buffer, 2> buffers = { { in test_3_arg_boost_array_buffers_async_read()
2551 boost::asio::buffer(read_buf, 32), in test_3_arg_boost_array_buffers_async_read()
2552 boost::asio::buffer(read_buf) + 32 } }; in test_3_arg_boost_array_buffers_async_read()
2557 boost::asio::async_read(s, buffers, in test_3_arg_boost_array_buffers_async_read()
2569 boost::asio::async_read(s, buffers, in test_3_arg_boost_array_buffers_async_read()
2581 boost::asio::async_read(s, buffers, in test_3_arg_boost_array_buffers_async_read()
2591 int i = boost::asio::async_read(s, buffers, archetypes::lazy_handler()); in test_3_arg_boost_array_buffers_async_read()
2610 boost::asio::io_context ioc; in test_3_arg_std_array_buffers_async_read()
2613 std::array<boost::asio::mutable_buffer, 2> buffers = { { in test_3_arg_std_array_buffers_async_read()
2614 boost::asio::buffer(read_buf, 32), in test_3_arg_std_array_buffers_async_read()
2615 boost::asio::buffer(read_buf) + 32 } }; in test_3_arg_std_array_buffers_async_read()
2620 boost::asio::async_read(s, buffers, in test_3_arg_std_array_buffers_async_read()
2632 boost::asio::async_read(s, buffers, in test_3_arg_std_array_buffers_async_read()
2644 boost::asio::async_read(s, buffers, in test_3_arg_std_array_buffers_async_read()
2654 int i = boost::asio::async_read(s, buffers, archetypes::lazy_handler()); in test_3_arg_std_array_buffers_async_read()
2672 boost::asio::io_context ioc; in test_3_arg_vector_buffers_async_read()
2675 std::vector<boost::asio::mutable_buffer> buffers; in test_3_arg_vector_buffers_async_read()
2676 buffers.push_back(boost::asio::buffer(read_buf, 32)); in test_3_arg_vector_buffers_async_read()
2677 buffers.push_back(boost::asio::buffer(read_buf, 39) + 32); in test_3_arg_vector_buffers_async_read()
2678 buffers.push_back(boost::asio::buffer(read_buf) + 39); in test_3_arg_vector_buffers_async_read()
2683 boost::asio::async_read(s, buffers, in test_3_arg_vector_buffers_async_read()
2695 boost::asio::async_read(s, buffers, in test_3_arg_vector_buffers_async_read()
2707 boost::asio::async_read(s, buffers, in test_3_arg_vector_buffers_async_read()
2717 int i = boost::asio::async_read(s, buffers, archetypes::lazy_handler()); in test_3_arg_vector_buffers_async_read()
2734 boost::asio::io_context ioc; in test_3_arg_dynamic_string_async_read()
2737 boost::asio::dynamic_string_buffer<char, std::string::traits_type, in test_3_arg_dynamic_string_async_read()
2739 = boost::asio::dynamic_buffer(data, sizeof(read_data)); in test_3_arg_dynamic_string_async_read()
2744 boost::asio::async_read(s, sb, in test_3_arg_dynamic_string_async_read()
2757 boost::asio::async_read(s, sb, in test_3_arg_dynamic_string_async_read()
2770 boost::asio::async_read(s, sb, in test_3_arg_dynamic_string_async_read()
2781 int i = boost::asio::async_read(s, sb, archetypes::lazy_handler()); in test_3_arg_dynamic_string_async_read()
2800 boost::asio::io_context ioc; in test_3_arg_streambuf_async_read()
2802 boost::asio::streambuf sb(sizeof(read_data)); in test_3_arg_streambuf_async_read()
2807 boost::asio::async_read(s, sb, in test_3_arg_streambuf_async_read()
2820 boost::asio::async_read(s, sb, in test_3_arg_streambuf_async_read()
2833 boost::asio::async_read(s, sb, in test_3_arg_streambuf_async_read()
2844 int i = boost::asio::async_read(s, sb, archetypes::lazy_handler()); in test_3_arg_streambuf_async_read()
2863 boost::asio::io_context ioc; in test_4_arg_mutable_buffer_async_read()
2866 boost::asio::mutable_buffer buffers in test_4_arg_mutable_buffer_async_read()
2867 = boost::asio::buffer(read_buf, sizeof(read_buf)); in test_4_arg_mutable_buffer_async_read()
2872 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_mutable_buffer_async_read()
2884 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_mutable_buffer_async_read()
2896 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_mutable_buffer_async_read()
2907 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_mutable_buffer_async_read()
2919 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_mutable_buffer_async_read()
2931 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_mutable_buffer_async_read()
2942 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_mutable_buffer_async_read()
2954 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_mutable_buffer_async_read()
2966 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_mutable_buffer_async_read()
2977 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_mutable_buffer_async_read()
2989 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_mutable_buffer_async_read()
3001 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_mutable_buffer_async_read()
3012 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_mutable_buffer_async_read()
3024 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_mutable_buffer_async_read()
3036 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_mutable_buffer_async_read()
3047 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_mutable_buffer_async_read()
3059 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_mutable_buffer_async_read()
3071 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_mutable_buffer_async_read()
3082 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_mutable_buffer_async_read()
3094 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_mutable_buffer_async_read()
3106 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_mutable_buffer_async_read()
3117 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_mutable_buffer_async_read()
3129 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_mutable_buffer_async_read()
3141 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_mutable_buffer_async_read()
3152 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_mutable_buffer_async_read()
3164 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_mutable_buffer_async_read()
3176 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_mutable_buffer_async_read()
3186 int i = boost::asio::async_read(s, buffers, in test_4_arg_mutable_buffer_async_read()
3205 boost::asio::io_context ioc; in test_4_arg_boost_array_buffers_async_read()
3208 boost::array<boost::asio::mutable_buffer, 2> buffers = { { in test_4_arg_boost_array_buffers_async_read()
3209 boost::asio::buffer(read_buf, 32), in test_4_arg_boost_array_buffers_async_read()
3210 boost::asio::buffer(read_buf) + 32 } }; in test_4_arg_boost_array_buffers_async_read()
3215 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_boost_array_buffers_async_read()
3227 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_boost_array_buffers_async_read()
3239 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_boost_array_buffers_async_read()
3250 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_boost_array_buffers_async_read()
3262 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_boost_array_buffers_async_read()
3274 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_boost_array_buffers_async_read()
3285 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_boost_array_buffers_async_read()
3297 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_boost_array_buffers_async_read()
3309 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_boost_array_buffers_async_read()
3320 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_boost_array_buffers_async_read()
3332 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_boost_array_buffers_async_read()
3344 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_boost_array_buffers_async_read()
3355 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_boost_array_buffers_async_read()
3367 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_boost_array_buffers_async_read()
3379 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_boost_array_buffers_async_read()
3390 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_boost_array_buffers_async_read()
3402 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_boost_array_buffers_async_read()
3414 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_boost_array_buffers_async_read()
3425 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_boost_array_buffers_async_read()
3437 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_boost_array_buffers_async_read()
3449 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_boost_array_buffers_async_read()
3460 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_boost_array_buffers_async_read()
3472 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_boost_array_buffers_async_read()
3484 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_boost_array_buffers_async_read()
3495 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_boost_array_buffers_async_read()
3507 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_boost_array_buffers_async_read()
3519 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_boost_array_buffers_async_read()
3529 int i = boost::asio::async_read(s, buffers, in test_4_arg_boost_array_buffers_async_read()
3549 boost::asio::io_context ioc; in test_4_arg_std_array_buffers_async_read()
3552 std::array<boost::asio::mutable_buffer, 2> buffers = { { in test_4_arg_std_array_buffers_async_read()
3553 boost::asio::buffer(read_buf, 32), in test_4_arg_std_array_buffers_async_read()
3554 boost::asio::buffer(read_buf) + 32 } }; in test_4_arg_std_array_buffers_async_read()
3559 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_std_array_buffers_async_read()
3571 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_std_array_buffers_async_read()
3583 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_std_array_buffers_async_read()
3594 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_std_array_buffers_async_read()
3606 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_std_array_buffers_async_read()
3618 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_std_array_buffers_async_read()
3629 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_std_array_buffers_async_read()
3641 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_std_array_buffers_async_read()
3653 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_std_array_buffers_async_read()
3664 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_std_array_buffers_async_read()
3676 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_std_array_buffers_async_read()
3688 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_std_array_buffers_async_read()
3699 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_std_array_buffers_async_read()
3711 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_std_array_buffers_async_read()
3723 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_std_array_buffers_async_read()
3734 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_std_array_buffers_async_read()
3746 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_std_array_buffers_async_read()
3758 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_std_array_buffers_async_read()
3769 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_std_array_buffers_async_read()
3781 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_std_array_buffers_async_read()
3793 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_std_array_buffers_async_read()
3804 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_std_array_buffers_async_read()
3816 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_std_array_buffers_async_read()
3828 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_std_array_buffers_async_read()
3839 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_std_array_buffers_async_read()
3851 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_std_array_buffers_async_read()
3863 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_std_array_buffers_async_read()
3873 int i = boost::asio::async_read(s, buffers, in test_4_arg_std_array_buffers_async_read()
3892 boost::asio::io_context ioc; in test_4_arg_vector_buffers_async_read()
3895 std::vector<boost::asio::mutable_buffer> buffers; in test_4_arg_vector_buffers_async_read()
3896 buffers.push_back(boost::asio::buffer(read_buf, 32)); in test_4_arg_vector_buffers_async_read()
3897 buffers.push_back(boost::asio::buffer(read_buf, 39) + 32); in test_4_arg_vector_buffers_async_read()
3898 buffers.push_back(boost::asio::buffer(read_buf) + 39); in test_4_arg_vector_buffers_async_read()
3903 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_vector_buffers_async_read()
3915 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_vector_buffers_async_read()
3927 boost::asio::async_read(s, buffers, boost::asio::transfer_all(), in test_4_arg_vector_buffers_async_read()
3938 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_vector_buffers_async_read()
3950 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_vector_buffers_async_read()
3962 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(1), in test_4_arg_vector_buffers_async_read()
3973 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_vector_buffers_async_read()
3985 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_vector_buffers_async_read()
3997 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(10), in test_4_arg_vector_buffers_async_read()
4008 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_vector_buffers_async_read()
4020 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_vector_buffers_async_read()
4032 boost::asio::async_read(s, buffers, boost::asio::transfer_at_least(42), in test_4_arg_vector_buffers_async_read()
4043 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_vector_buffers_async_read()
4055 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_vector_buffers_async_read()
4067 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(1), in test_4_arg_vector_buffers_async_read()
4078 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_vector_buffers_async_read()
4090 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_vector_buffers_async_read()
4102 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(10), in test_4_arg_vector_buffers_async_read()
4113 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_vector_buffers_async_read()
4125 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_vector_buffers_async_read()
4137 boost::asio::async_read(s, buffers, boost::asio::transfer_exactly(42), in test_4_arg_vector_buffers_async_read()
4148 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_vector_buffers_async_read()
4160 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_vector_buffers_async_read()
4172 boost::asio::async_read(s, buffers, old_style_transfer_all, in test_4_arg_vector_buffers_async_read()
4183 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_vector_buffers_async_read()
4195 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_vector_buffers_async_read()
4207 boost::asio::async_read(s, buffers, short_transfer(), in test_4_arg_vector_buffers_async_read()
4217 int i = boost::asio::async_read(s, buffers, in test_4_arg_vector_buffers_async_read()
4235 boost::asio::io_context ioc; in test_4_arg_dynamic_string_async_read()
4238 boost::asio::dynamic_string_buffer<char, std::string::traits_type, in test_4_arg_dynamic_string_async_read()
4240 = boost::asio::dynamic_buffer(data, sizeof(read_data)); in test_4_arg_dynamic_string_async_read()
4245 boost::asio::async_read(s, sb, boost::asio::transfer_all(), in test_4_arg_dynamic_string_async_read()
4258 boost::asio::async_read(s, sb, boost::asio::transfer_all(), in test_4_arg_dynamic_string_async_read()
4271 boost::asio::async_read(s, sb, boost::asio::transfer_all(), in test_4_arg_dynamic_string_async_read()
4283 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(1), in test_4_arg_dynamic_string_async_read()
4296 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(1), in test_4_arg_dynamic_string_async_read()
4309 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(1), in test_4_arg_dynamic_string_async_read()
4321 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(10), in test_4_arg_dynamic_string_async_read()
4334 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(10), in test_4_arg_dynamic_string_async_read()
4347 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(10), in test_4_arg_dynamic_string_async_read()
4359 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(42), in test_4_arg_dynamic_string_async_read()
4372 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(42), in test_4_arg_dynamic_string_async_read()
4385 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(42), in test_4_arg_dynamic_string_async_read()
4397 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(1), in test_4_arg_dynamic_string_async_read()
4410 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(1), in test_4_arg_dynamic_string_async_read()
4423 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(1), in test_4_arg_dynamic_string_async_read()
4435 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(10), in test_4_arg_dynamic_string_async_read()
4448 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(10), in test_4_arg_dynamic_string_async_read()
4461 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(10), in test_4_arg_dynamic_string_async_read()
4473 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(42), in test_4_arg_dynamic_string_async_read()
4486 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(42), in test_4_arg_dynamic_string_async_read()
4499 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(42), in test_4_arg_dynamic_string_async_read()
4511 boost::asio::async_read(s, sb, old_style_transfer_all, in test_4_arg_dynamic_string_async_read()
4524 boost::asio::async_read(s, sb, old_style_transfer_all, in test_4_arg_dynamic_string_async_read()
4537 boost::asio::async_read(s, sb, old_style_transfer_all, in test_4_arg_dynamic_string_async_read()
4549 boost::asio::async_read(s, sb, short_transfer(), in test_4_arg_dynamic_string_async_read()
4562 boost::asio::async_read(s, sb, short_transfer(), in test_4_arg_dynamic_string_async_read()
4575 boost::asio::async_read(s, sb, short_transfer(), in test_4_arg_dynamic_string_async_read()
4586 int i = boost::asio::async_read(s, sb, in test_4_arg_dynamic_string_async_read()
4606 boost::asio::io_context ioc; in test_4_arg_streambuf_async_read()
4608 boost::asio::streambuf sb(sizeof(read_data)); in test_4_arg_streambuf_async_read()
4613 boost::asio::async_read(s, sb, boost::asio::transfer_all(), in test_4_arg_streambuf_async_read()
4626 boost::asio::async_read(s, sb, boost::asio::transfer_all(), in test_4_arg_streambuf_async_read()
4639 boost::asio::async_read(s, sb, boost::asio::transfer_all(), in test_4_arg_streambuf_async_read()
4651 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(1), in test_4_arg_streambuf_async_read()
4664 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(1), in test_4_arg_streambuf_async_read()
4677 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(1), in test_4_arg_streambuf_async_read()
4689 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(10), in test_4_arg_streambuf_async_read()
4702 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(10), in test_4_arg_streambuf_async_read()
4715 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(10), in test_4_arg_streambuf_async_read()
4727 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(42), in test_4_arg_streambuf_async_read()
4740 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(42), in test_4_arg_streambuf_async_read()
4753 boost::asio::async_read(s, sb, boost::asio::transfer_at_least(42), in test_4_arg_streambuf_async_read()
4765 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(1), in test_4_arg_streambuf_async_read()
4778 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(1), in test_4_arg_streambuf_async_read()
4791 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(1), in test_4_arg_streambuf_async_read()
4803 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(10), in test_4_arg_streambuf_async_read()
4816 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(10), in test_4_arg_streambuf_async_read()
4829 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(10), in test_4_arg_streambuf_async_read()
4841 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(42), in test_4_arg_streambuf_async_read()
4854 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(42), in test_4_arg_streambuf_async_read()
4867 boost::asio::async_read(s, sb, boost::asio::transfer_exactly(42), in test_4_arg_streambuf_async_read()
4879 boost::asio::async_read(s, sb, old_style_transfer_all, in test_4_arg_streambuf_async_read()
4892 boost::asio::async_read(s, sb, old_style_transfer_all, in test_4_arg_streambuf_async_read()
4905 boost::asio::async_read(s, sb, old_style_transfer_all, in test_4_arg_streambuf_async_read()
4917 boost::asio::async_read(s, sb, short_transfer(), in test_4_arg_streambuf_async_read()
4930 boost::asio::async_read(s, sb, short_transfer(), in test_4_arg_streambuf_async_read()
4943 boost::asio::async_read(s, sb, short_transfer(), in test_4_arg_streambuf_async_read()
4954 int i = boost::asio::async_read(s, sb, in test_4_arg_streambuf_async_read()