Lines Matching defs:item
678 nghttp2_outbound_item *item;
777 item = nghttp2_session_get_next_ob_item(session);
778 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
779 CU_ASSERT(NGHTTP2_FRAME_SIZE_ERROR == item->frame.goaway.error_code);
907 nghttp2_outbound_item *item;
937 item = nghttp2_session_get_next_ob_item(session);
938 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
958 item = nghttp2_session_get_next_ob_item(session);
959 CU_ASSERT(NULL == item);
983 item = nghttp2_session_get_next_ob_item(session);
984 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
985 CU_ASSERT(1 == item->frame.window_update.hd.stream_id);
999 item = nghttp2_session_get_next_ob_item(session);
1000 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
1001 CU_ASSERT(0 == item->frame.window_update.hd.stream_id);
1018 item = nghttp2_session_get_next_ob_item(session);
1019 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
1020 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
1440 nghttp2_outbound_item *item;
1525 item = nghttp2_session_get_next_ob_item(session);
1526 CU_ASSERT(NULL != item);
1527 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
1528 CU_ASSERT(NGHTTP2_FRAME_SIZE_ERROR == item->frame.goaway.error_code);
1570 item = nghttp2_session_get_next_ob_item(session);
1571 CU_ASSERT(NULL != item);
1572 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
1573 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
1588 nghttp2_outbound_item *item;
1626 item = nghttp2_session_get_next_ob_item(session);
1628 CU_ASSERT(NULL != item);
1629 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
1661 item = nghttp2_session_get_next_ob_item(session);
1663 CU_ASSERT(NULL != item);
1664 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
1995 nghttp2_outbound_item *item;
2020 item = nghttp2_session_get_next_ob_item(session);
2022 CU_ASSERT(NULL != item);
2023 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
2024 CU_ASSERT(NGHTTP2_COMPRESSION_ERROR == item->frame.rst_stream.error_code);
2025 CU_ASSERT(1 == item->frame.hd.stream_id);
2052 item = nghttp2_session_get_next_ob_item(session);
2054 CU_ASSERT(NULL != item);
2055 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
2056 CU_ASSERT(NGHTTP2_COMPRESSION_ERROR == item->frame.rst_stream.error_code);
2057 CU_ASSERT(2 == item->frame.hd.stream_id);
2104 nghttp2_outbound_item *item;
2127 item = nghttp2_session_get_next_ob_item(session);
2129 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
2315 nghttp2_outbound_item *item;
2330 item = nghttp2_session_get_next_ob_item(session);
2332 CU_ASSERT(item != NULL);
2333 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
2789 nghttp2_outbound_item *item;
2935 item = nghttp2_session_get_next_ob_item(session);
2936 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
2937 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
2970 item = nghttp2_session_get_next_ob_item(session);
2971 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
2972 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
3172 nghttp2_outbound_item *item;
3187 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
3189 nghttp2_outbound_item_init(item);
3191 frame = &item->frame;
3202 CU_ASSERT(0 == nghttp2_session_add_item(session, item));
3511 nghttp2_outbound_item *item;
3548 item = nghttp2_session_get_next_ob_item(session);
3549 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
3550 CU_ASSERT(NGHTTP2_REFUSED_STREAM == item->frame.rst_stream.error_code);
3567 item = nghttp2_session_get_next_ob_item(session);
3568 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3569 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
3584 nghttp2_outbound_item *item;
3637 item = nghttp2_session_get_next_ob_item(session);
3639 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3653 item = nghttp2_session_get_next_ob_item(session);
3655 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3687 nghttp2_outbound_item *item;
3761 item = nghttp2_session_get_next_ob_item(session);
3762 CU_ASSERT(item != NULL);
3763 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3773 item = nghttp2_session_get_next_ob_item(session);
3774 CU_ASSERT(item != NULL);
3775 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3836 item = nghttp2_session_get_next_ob_item(session);
3838 CU_ASSERT(item != NULL);
3839 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3869 item = nghttp2_session_get_next_ob_item(session);
3871 CU_ASSERT(NULL != item);
3872 CU_ASSERT(NGHTTP2_SETTINGS == item->frame.hd.type);
3874 item = nghttp2_outbound_queue_top(&session->ob_reg);
3876 CU_ASSERT(NULL != item);
3877 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
3898 item = nghttp2_session_get_next_ob_item(session);
3900 CU_ASSERT(NULL != item);
3901 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3953 item = nghttp2_session_get_next_ob_item(session);
3955 CU_ASSERT(NULL != item);
3956 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
3958 item->frame.window_update.window_size_increment);
3979 item = nghttp2_session_get_next_ob_item(session);
3981 CU_ASSERT(NULL != item);
3982 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
3993 nghttp2_outbound_item *item;
4037 item = nghttp2_session_get_next_ob_item(session);
4038 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
4039 CU_ASSERT(NGHTTP2_STREAM_CLOSED == item->frame.goaway.error_code);
4061 item = nghttp2_session_get_next_ob_item(session);
4062 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
4063 CU_ASSERT(6 == item->frame.hd.stream_id);
4064 CU_ASSERT(NGHTTP2_CANCEL == item->frame.rst_stream.error_code);
4079 item = nghttp2_session_get_next_ob_item(session);
4080 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
4081 CU_ASSERT(0 == item->frame.hd.stream_id);
4082 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
4111 item = nghttp2_session_get_next_ob_item(session);
4112 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
4113 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
4230 item = nghttp2_session_get_next_ob_item(session);
4232 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
4233 CU_ASSERT(NGHTTP2_CANCEL == item->frame.rst_stream.error_code);
4498 nghttp2_outbound_item *item;
4514 item = nghttp2_session_get_next_ob_item(session);
4516 CU_ASSERT(NULL != item);
4517 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
4531 item = nghttp2_session_get_next_ob_item(session);
4533 CU_ASSERT(NULL != item);
4534 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
4646 nghttp2_outbound_item *item;
4658 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4660 nghttp2_outbound_item_init(item);
4662 frame = &item->frame;
4669 nghttp2_session_add_item(session, item);
4680 nghttp2_outbound_item *item;
4693 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4695 nghttp2_outbound_item_init(item);
4697 frame = &item->frame;
4701 nghttp2_session_add_item(session, item);
4712 nghttp2_outbound_item *item;
4743 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4745 nghttp2_outbound_item_init(item);
4747 frame = &item->frame;
4755 nghttp2_session_add_item(session, item);
4774 nghttp2_outbound_item *item;
4787 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4789 nghttp2_outbound_item_init(item);
4791 frame = &item->frame;
4795 nghttp2_session_add_item(session, item);
4809 nghttp2_outbound_item *item;
4820 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4822 nghttp2_outbound_item_init(item);
4824 frame = &item->frame;
4827 nghttp2_session_add_item(session, item);
4838 nghttp2_outbound_item *item;
4853 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4855 nghttp2_outbound_item_init(item);
4857 frame = &item->frame;
4865 nghttp2_session_add_item(session, item);
4881 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4883 nghttp2_outbound_item_init(item);
4885 frame = &item->frame;
4889 nghttp2_session_add_item(session, item);
4903 item = mem->malloc(sizeof(nghttp2_outbound_item), NULL);
4905 nghttp2_outbound_item_init(item);
4907 frame = &item->frame;
4911 nghttp2_session_add_item(session, item);
4947 nghttp2_outbound_item *item;
4975 item = nghttp2_session_get_next_ob_item(session);
4976 CU_ASSERT(NGHTTP2_SETTINGS == item->frame.hd.type);
4977 CU_ASSERT(2 == item->frame.settings.niv);
4979 item->frame.settings.iv[0].settings_id);
4980 CU_ASSERT(1 == item->frame.settings.iv[0].value);
4982 item->frame.settings.iv[1].settings_id);
4983 CU_ASSERT(4095 == item->frame.settings.iv[1].value);
5252 frame = &aob->item->frame;
5260 CU_ASSERT(NGHTTP2_FLAG_END_STREAM == aob->item->aux_data.data.flags);
5294 frame = &aob->item->frame;
5303 CU_ASSERT(NGHTTP2_FLAG_END_STREAM == aob->item->aux_data.data.flags);
5324 frame = &aob->item->frame;
5340 CU_ASSERT(NGHTTP2_FLAG_END_STREAM == aob->item->aux_data.data.flags);
5373 frame = &aob->item->frame;
5382 CU_ASSERT(NGHTTP2_FLAG_END_STREAM == aob->item->aux_data.data.flags);
5455 nghttp2_outbound_item *item;
5468 item = nghttp2_session_get_next_ob_item(session);
5469 CU_ASSERT(ARRLEN(reqnv) == item->frame.headers.nvlen);
5470 assert_nv_equal(reqnv, item->frame.headers.nva, item->frame.headers.nvlen,
5492 nghttp2_outbound_item *item;
5514 item = nghttp2_session_get_next_ob_item(session);
5515 CU_ASSERT(ARRLEN(reqnv) == item->frame.headers.nvlen);
5516 assert_nv_equal(reqnv, item->frame.headers.nva, item->frame.headers.nvlen,
5518 CU_ASSERT(item->frame.hd.flags & NGHTTP2_FLAG_END_STREAM);
5550 nghttp2_outbound_item *item;
5564 item = nghttp2_session_get_next_ob_item(session);
5565 CU_ASSERT(ARRLEN(resnv) == item->frame.headers.nvlen);
5566 assert_nv_equal(resnv, item->frame.headers.nva, item->frame.headers.nvlen,
5592 nghttp2_outbound_item *item;
5614 item = nghttp2_session_get_next_ob_item(session);
5615 CU_ASSERT(ARRLEN(resnv) == item->frame.headers.nvlen);
5616 assert_nv_equal(resnv, item->frame.headers.nva, item->frame.headers.nvlen,
5618 CU_ASSERT(item->frame.hd.flags & NGHTTP2_FLAG_END_STREAM);
5667 nghttp2_outbound_item *item;
5697 item = nghttp2_session_get_next_ob_item(session);
5698 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
5699 CU_ASSERT(NGHTTP2_HCAT_HEADERS == item->frame.headers.cat);
5700 CU_ASSERT(item->frame.hd.flags & NGHTTP2_FLAG_END_STREAM);
5733 nghttp2_outbound_item *item;
5742 item = nghttp2_session_get_next_ob_item(session);
5743 CU_ASSERT(ARRLEN(reqnv) == item->frame.headers.nvlen);
5744 assert_nv_equal(reqnv, item->frame.headers.nva, item->frame.headers.nvlen,
5747 item->frame.hd.flags);
5748 CU_ASSERT(0 == (item->frame.hd.flags & NGHTTP2_FLAG_PRIORITY));
5757 nghttp2_outbound_item *item;
5770 item = nghttp2_session_get_next_ob_item(session);
5771 CU_ASSERT(ARRLEN(resnv) == item->frame.headers.nvlen);
5772 assert_nv_equal(resnv, item->frame.headers.nva, item->frame.headers.nvlen,
5775 item->frame.hd.flags);
5841 nghttp2_outbound_item *item;
5866 item = nghttp2_session_get_next_ob_item(session);
5867 CU_ASSERT(ARRLEN(reqnv) == item->frame.headers.nvlen);
5868 assert_nv_equal(reqnv, item->frame.headers.nva, item->frame.headers.nvlen,
5871 item->frame.hd.flags);
5944 nghttp2_outbound_item *item;
5962 item = nghttp2_session_get_next_ob_item(session);
5963 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
5965 item->frame.hd.flags);
5966 CU_ASSERT(0 == (item->frame.hd.flags & NGHTTP2_FLAG_PRIORITY));
5982 nghttp2_outbound_item *item;
6006 item = nghttp2_session_get_next_ob_item(session);
6007 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
6009 item->frame.hd.flags);
6010 CU_ASSERT(0 == (item->frame.hd.flags & NGHTTP2_FLAG_PRIORITY));
6057 nghttp2_outbound_item *item;
6104 item = nghttp2_session_get_next_ob_item(session);
6106 CU_ASSERT(NGHTTP2_SETTINGS == item->frame.hd.type);
6108 frame = &item->frame;
6190 nghttp2_outbound_item *item;
6225 item = nghttp2_session_get_next_ob_item(session);
6226 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
6227 CU_ASSERT(32768 == item->frame.window_update.window_size_increment);
6267 item = nghttp2_session_get_next_ob_item(session);
6268 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
6269 CU_ASSERT(NGHTTP2_FLOW_CONTROL_ERROR == item->frame.rst_stream.error_code);
6403 nghttp2_outbound_item *item;
6415 item = nghttp2_session_get_next_ob_item(session);
6416 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
6417 CU_ASSERT(1024 == item->frame.window_update.window_size_increment);
6423 item = nghttp2_session_get_next_ob_item(session);
6424 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
6425 CU_ASSERT(4096 == item->frame.window_update.window_size_increment);
6431 item = nghttp2_session_get_next_ob_item(session);
6432 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
6433 CU_ASSERT(4096 == item->frame.window_update.window_size_increment);
6450 nghttp2_outbound_item *item;
6464 item = nghttp2_session_get_next_ob_item(session);
6465 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
6466 CU_ASSERT(4097 == item->frame.window_update.window_size_increment);
6478 item = nghttp2_session_get_next_ob_item(session);
6479 CU_ASSERT(item == NULL);
6502 item = nghttp2_session_get_next_ob_item(session);
6503 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
6504 CU_ASSERT(4097 == item->frame.window_update.window_size_increment);
6515 item = nghttp2_session_get_next_ob_item(session);
6516 CU_ASSERT(item == NULL);
6957 nghttp2_outbound_item *item;
6971 item = nghttp2_outbound_queue_top(&session->ob_reg);
6973 CU_ASSERT(NULL == item);
6985 item = nghttp2_outbound_queue_top(&session->ob_reg);
6987 CU_ASSERT(NULL == item);
7001 item = nghttp2_outbound_queue_top(&session->ob_reg);
7003 CU_ASSERT(NULL != item);
7004 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
7005 CU_ASSERT(1 == item->frame.hd.stream_id);
7019 item = nghttp2_outbound_queue_top(&session->ob_reg);
7021 CU_ASSERT(NULL != item);
7022 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
7023 CU_ASSERT(2 == item->frame.hd.stream_id);
7035 item = nghttp2_outbound_queue_top(&session->ob_syn);
7037 CU_ASSERT(NULL != item);
7038 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
7039 CU_ASSERT(0 == item->aux_data.headers.canceled);
7046 item = nghttp2_outbound_queue_top(&session->ob_syn);
7048 CU_ASSERT(NULL != item);
7049 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
7050 CU_ASSERT(1 == item->aux_data.headers.canceled);
7239 nghttp2_outbound_item *item;
7258 item = nghttp2_session_pop_next_ob_item(session);
7259 CU_ASSERT(NGHTTP2_PING == item->frame.hd.type);
7260 nghttp2_outbound_item_free(item, mem);
7261 mem->free(item, NULL);
7263 item = nghttp2_session_pop_next_ob_item(session);
7264 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
7265 nghttp2_outbound_item_free(item, mem);
7266 mem->free(item, NULL);
7284 item = nghttp2_session_pop_next_ob_item(session);
7285 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
7286 nghttp2_outbound_item_free(item, mem);
7287 mem->free(item, NULL);
7324 nghttp2_outbound_item *item;
7342 item = nghttp2_outbound_queue_top(&session->ob_reg);
7343 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
7344 CU_ASSERT(NGHTTP2_REFUSED_STREAM == item->frame.rst_stream.error_code);
7355 item = nghttp2_outbound_queue_top(&session->ob_reg);
7356 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
7357 CU_ASSERT(NGHTTP2_PROTOCOL_ERROR == item->frame.goaway.error_code);
7411 nghttp2_outbound_item *item;
7445 item = stream->item;
7446 item->aux_data.data.data_prd.read_callback =
7454 item->aux_data.data.data_prd.read_callback = defer_data_source_read_callback;
7463 item->aux_data.data.data_prd.read_callback =
7594 nghttp2_outbound_item *item;
7620 item = nghttp2_session_get_next_ob_item(session);
7623 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
7624 CU_ASSERT(0 == item->frame.hd.stream_id);
7626 item->frame.window_update.window_size_increment);
7639 item = nghttp2_session_get_next_ob_item(session);
7640 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
7641 CU_ASSERT(0 == item->frame.hd.stream_id);
7643 item->frame.window_update.window_size_increment);
7769 CU_ASSERT(NGHTTP2_DATA == stream->item->frame.hd.type);
7771 stream->item->aux_data.data.data_prd.read_callback =
8181 frame = &session->aob.item->frame;
8996 /* Attach item to c */
9008 /* Attach item to a */
9020 /* Detach item from a */
9030 /* Attach item to d */
9043 /* Detach item from c */
9054 /* Detach item from b */
9155 /* Detach item from a */
9420 /* Remove subtree c, and detach item from b, and then re-add
10101 nghttp2_outbound_item *item;
10142 item = nghttp2_session_get_next_ob_item(session);
10144 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
10145 CU_ASSERT(1 == item->frame.hd.stream_id);
10171 item = nghttp2_session_get_next_ob_item(session);
10172 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
10173 CU_ASSERT(2 == item->frame.hd.stream_id);
10174 CU_ASSERT(NGHTTP2_INTERNAL_ERROR == item->frame.rst_stream.error_code);
10484 nghttp2_outbound_item *item;
10510 item = nghttp2_session_get_next_ob_item(session);
10511 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
10512 CU_ASSERT(1 == item->frame.hd.stream_id);
10513 CU_ASSERT(NGHTTP2_INTERNAL_ERROR == item->frame.rst_stream.error_code);
10537 item = nghttp2_session_get_next_ob_item(session);
10538 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
10539 CU_ASSERT(2 == item->frame.hd.stream_id);
10540 CU_ASSERT(NGHTTP2_INTERNAL_ERROR == item->frame.rst_stream.error_code);
10571 /* This makes DATA item deferred */
11084 nghttp2_outbound_item *item;
11102 item = nghttp2_session_get_next_ob_item(session);
11104 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
11105 CU_ASSERT(1 == item->frame.window_update.hd.stream_id);
11106 CU_ASSERT(1 == item->frame.window_update.window_size_increment);
11119 item = nghttp2_session_get_next_ob_item(session);
11121 CU_ASSERT(item == NULL);
11142 item = nghttp2_session_get_next_ob_item(session);
11144 CU_ASSERT(1 == item->frame.window_update.window_size_increment);
11157 item = nghttp2_session_get_next_ob_item(session);
11159 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
11160 CU_ASSERT(0 == item->frame.window_update.hd.stream_id);
11161 CU_ASSERT(1 == item->frame.window_update.window_size_increment);
11173 item = nghttp2_session_get_next_ob_item(session);
11175 CU_ASSERT(item == NULL);
11194 item = nghttp2_session_get_next_ob_item(session);
11196 CU_ASSERT(1 == item->frame.window_update.window_size_increment);
11221 item = nghttp2_session_get_next_ob_item(session);
11223 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
11224 CU_ASSERT(1 == item->frame.hd.stream_id);
11226 item->frame.window_update.window_size_increment);
11249 item = nghttp2_session_get_next_ob_item(session);
11251 CU_ASSERT(NGHTTP2_WINDOW_UPDATE == item->frame.hd.type);
11252 CU_ASSERT(0 == item->frame.hd.stream_id);
11254 item->frame.window_update.window_size_increment);
11358 nghttp2_outbound_item *item;
11400 item = nghttp2_session_get_next_ob_item(session);
11401 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
11518 nghttp2_outbound_item *item;
11552 item = nghttp2_session_get_next_ob_item(session);
11554 CU_ASSERT(NULL == item);
11575 item = nghttp2_session_get_next_ob_item(session);
11577 CU_ASSERT(NULL == item);
11623 CU_ASSERT(NULL == session->aob.item);
11692 nghttp2_outbound_item *item;
11718 item = nghttp2_session_get_next_ob_item(session);
11719 CU_ASSERT(ARRLEN(resnv) == item->frame.headers.nvlen);
11720 assert_nv_equal(resnv, item->frame.headers.nva, item->frame.headers.nvlen,
11746 item = nghttp2_outbound_queue_top(&session->ob_syn);
11748 CU_ASSERT(NULL != item);
11749 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
11750 CU_ASSERT(pri_spec.stream_id == item->frame.headers.pri_spec.stream_id);
11751 CU_ASSERT(pri_spec.weight == item->frame.headers.pri_spec.weight);
11752 CU_ASSERT(pri_spec.exclusive == item->frame.headers.pri_spec.exclusive);
11774 item = nghttp2_outbound_queue_top(&session->ob_syn);
11776 CU_ASSERT(NULL != item);
11777 CU_ASSERT(NGHTTP2_HEADERS == item->frame.hd.type);
11778 CU_ASSERT(nghttp2_priority_spec_check_default(&item->frame.headers.pri_spec));
11984 nghttp2_outbound_item *item;
12061 item = nghttp2_session_get_next_ob_item(session);
12063 CU_ASSERT(NGHTTP2_GOAWAY == item->frame.hd.type);
12065 item->frame.goaway.last_stream_id);
12079 nghttp2_outbound_item *item;
12107 item = nghttp2_session_get_next_ob_item(session);
12109 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12535 nghttp2_outbound_item *item;
12559 item = nghttp2_session_get_next_ob_item(session);
12560 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12580 item = nghttp2_session_get_next_ob_item(session);
12581 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12601 item = nghttp2_session_get_next_ob_item(session);
12602 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12632 item = nghttp2_session_get_next_ob_item(session);
12633 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12660 item = nghttp2_session_get_next_ob_item(session);
12661 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12688 item = nghttp2_session_get_next_ob_item(session);
12689 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12715 nghttp2_outbound_item *item;
12741 item = nghttp2_session_get_next_ob_item(session);
12742 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12764 item = nghttp2_session_get_next_ob_item(session);
12765 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12809 item = nghttp2_session_get_next_ob_item(session);
12811 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12861 nghttp2_outbound_item *item;
12920 item = nghttp2_session_get_next_ob_item(session);
12922 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12949 item = nghttp2_session_get_next_ob_item(session);
12951 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
12985 nghttp2_outbound_item *item;
13020 item = nghttp2_session_get_next_ob_item(session);
13022 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
13078 item = nghttp2_session_get_next_ob_item(session);
13080 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
13081 CU_ASSERT(1 == item->frame.hd.stream_id);
13190 nghttp2_outbound_item *item;
13224 item = nghttp2_session_get_next_ob_item(session);
13226 CU_ASSERT(NULL == item);
13242 nghttp2_outbound_item *item;
13300 item = nghttp2_session_get_next_ob_item(session);
13302 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
13303 CU_ASSERT(4 == item->frame.hd.stream_id);
13368 nghttp2_outbound_item *item;
13394 item = nghttp2_session_get_next_ob_item(session);
13396 CU_ASSERT(NGHTTP2_RST_STREAM == item->frame.hd.type);
13422 item = nghttp2_session_get_next_ob_item(session);
13424 CU_ASSERT(NULL == item);