• Home
  • Raw
  • Download

Lines Matching refs:SPDYF_Control_Frame

50   struct SPDYF_Control_Frame *frame;  in spdyf_handler_read_syn_stream()
57 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls; in spdyf_handler_read_syn_stream()
183 struct SPDYF_Control_Frame *frame; in spdyf_handler_read_goaway()
191 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls; in spdyf_handler_read_goaway()
262 struct SPDYF_Control_Frame *frame; in spdyf_handler_read_rst_stream()
271 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls; in spdyf_handler_read_rst_stream()
426 struct SPDYF_Control_Frame control_frame; in SPDYF_handler_write_syn_reply()
459 total_size = sizeof(struct SPDYF_Control_Frame) //SPDY header in SPDYF_handler_write_syn_reply()
483 …on->write_buffer + session->write_buffer_offset,&control_frame,sizeof(struct SPDYF_Control_Frame)); in SPDYF_handler_write_syn_reply()
484 session->write_buffer_offset += sizeof(struct SPDYF_Control_Frame); in SPDYF_handler_write_syn_reply()
520 struct SPDYF_Control_Frame control_frame; in SPDYF_handler_write_goaway()
530 total_size = sizeof(struct SPDYF_Control_Frame) //SPDY header in SPDYF_handler_write_goaway()
546 …on->write_buffer + session->write_buffer_offset,&control_frame,sizeof(struct SPDYF_Control_Frame)); in SPDYF_handler_write_goaway()
547 session->write_buffer_offset += sizeof(struct SPDYF_Control_Frame); in SPDYF_handler_write_goaway()
745 struct SPDYF_Control_Frame control_frame; in SPDYF_handler_write_rst_stream()
752 total_size = sizeof(struct SPDYF_Control_Frame) //SPDY header in SPDYF_handler_write_rst_stream()
768 …on->write_buffer + session->write_buffer_offset,&control_frame,sizeof(struct SPDYF_Control_Frame)); in SPDYF_handler_write_rst_stream()
769 session->write_buffer_offset += sizeof(struct SPDYF_Control_Frame); in SPDYF_handler_write_rst_stream()
790 struct SPDYF_Control_Frame control_frame; in SPDYF_handler_write_window_update()
797 total_size = sizeof(struct SPDYF_Control_Frame) //SPDY header in SPDYF_handler_write_window_update()
813 …on->write_buffer + session->write_buffer_offset,&control_frame,sizeof(struct SPDYF_Control_Frame)); in SPDYF_handler_write_window_update()
814 session->write_buffer_offset += sizeof(struct SPDYF_Control_Frame); in SPDYF_handler_write_window_update()
832 struct SPDYF_Control_Frame *frame; in SPDYF_handler_ignore_frame()
839 frame = (struct SPDYF_Control_Frame *)session->frame_handler_cls; in SPDYF_handler_ignore_frame()
890 if(actual_buf_size < sizeof(struct SPDYF_Control_Frame)) in SPDYF_session_read()
904 < ((struct SPDYF_Control_Frame *)session->frame_handler_cls)->length) in SPDYF_session_read()
1159 struct SPDYF_Control_Frame* control_frame; in SPDYF_session_idle()
1181 < sizeof(struct SPDYF_Control_Frame)) in SPDYF_session_idle()
1190 if(NULL == (control_frame = malloc(sizeof(struct SPDYF_Control_Frame)))) in SPDYF_session_idle()
1199 sizeof(struct SPDYF_Control_Frame)); in SPDYF_session_idle()
1200 session->read_buffer_beginning += sizeof(struct SPDYF_Control_Frame); in SPDYF_session_idle()
1279 frame_length = ((struct SPDYF_Control_Frame *)session->frame_handler_cls)->length; in SPDYF_session_idle()
1622 struct SPDYF_Control_Frame *control_frame; in SPDYF_prepare_goaway()
1631 if(NULL == (control_frame = malloc(sizeof(struct SPDYF_Control_Frame)))) in SPDYF_prepare_goaway()
1636 memset(control_frame, 0, sizeof(struct SPDYF_Control_Frame)); in SPDYF_prepare_goaway()
1670 struct SPDYF_Control_Frame *control_frame; in SPDYF_prepare_rst_stream()
1685 if(NULL == (control_frame = malloc(sizeof(struct SPDYF_Control_Frame)))) in SPDYF_prepare_rst_stream()
1690 memset(control_frame, 0, sizeof(struct SPDYF_Control_Frame)); in SPDYF_prepare_rst_stream()
1726 struct SPDYF_Control_Frame *control_frame; in SPDYF_prepare_window_update()
1737 if(NULL == (control_frame = malloc(sizeof(struct SPDYF_Control_Frame)))) in SPDYF_prepare_window_update()
1742 memset(control_frame, 0, sizeof(struct SPDYF_Control_Frame)); in SPDYF_prepare_window_update()