OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:control_frame
(Results
1 - 5
of
5
) sorted by null
/external/libmicrohttpd/src/microspdy/
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
...]
stream.c
134
else if(NULL != response_queue->
control_frame
)
136
switch(response_queue->
control_frame
->type)
139
stream->is_out_closed = (bool)(response_queue->
control_frame
->flags & SPDY_SYN_REPLY_FLAG_FIN);
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
...]
applicationlayer.c
220
(NULL != response_queue->
control_frame
) ) ||
222
(NULL == response_queue->
control_frame
) ),
structures.h
430
struct SPDYF_Control_Frame *
control_frame
;
member in struct:SPDYF_Response_Queue
Completed in 443 milliseconds