HomeSort by relevance Sort by last modified time
    Searched defs:control_frame (Results 1 - 3 of 3) sorted by null

  /external/libmicrohttpd/src/microspdy/
structures.c 304 struct SPDYF_Control_Frame *control_frame; local
404 if(NULL == (control_frame = malloc(sizeof(struct SPDYF_Control_Frame))))
409 memset(control_frame, 0, sizeof(struct SPDYF_Control_Frame));
410 control_frame->control_bit = 1;
411 control_frame->version = SPDY_VERSION;
412 control_frame->type = SPDY_CONTROL_FRAME_TYPES_SYN_REPLY;
414 control_frame->flags |= SPDY_SYN_REPLY_FLAG_FIN;
416 response_to_queue->control_frame = control_frame;
440 && (SPDY_CONTROL_FRAME_TYPES_RST_STREAM == response_queue->control_frame->typ
    [all...]
session.c 426 struct SPDYF_Control_Frame control_frame; local
435 memcpy(&control_frame, response_queue->control_frame, sizeof(control_frame));
479 control_frame.length = compressed_headers_size + 4; // compressed data + stream_id
480 SPDYF_CONTROL_FRAME_HTON(&control_frame);
483 memcpy(session->write_buffer + session->write_buffer_offset,&control_frame,sizeof(struct SPDYF_Control_Frame));
520 struct SPDYF_Control_Frame control_frame; local
526 memcpy(&control_frame, response_queue->control_frame, sizeof(control_frame))
745 struct SPDYF_Control_Frame control_frame; local
790 struct SPDYF_Control_Frame control_frame; local
1159 struct SPDYF_Control_Frame* control_frame; local
1622 struct SPDYF_Control_Frame *control_frame; local
1670 struct SPDYF_Control_Frame *control_frame; local
1726 struct SPDYF_Control_Frame *control_frame; local
    [all...]
structures.h 430 struct SPDYF_Control_Frame *control_frame; member in struct:SPDYF_Response_Queue

Completed in 714 milliseconds