Searched refs:all_headers (Results 1 – 3 of 3) sorted by relevance
399 struct SPDY_NameValue ** all_headers = NULL; //TODO maybe array in stack is enough in SPDY_build_response() local417 if(NULL == (all_headers = malloc(num_hdr_containers * sizeof(struct SPDY_NameValue *)))) in SPDY_build_response()419 memset(all_headers, 0, num_hdr_containers * sizeof(struct SPDY_NameValue *)); in SPDY_build_response()422 all_headers[1] = headers; in SPDY_build_response()424 if(NULL == (all_headers[0] = SPDY_name_value_create())) in SPDY_build_response()434 if(SPDY_YES != SPDY_name_value_add(all_headers[0], ":status", fullstatus)) in SPDY_build_response()440 if(SPDY_YES != SPDY_name_value_add(all_headers[0], ":version", version)) in SPDY_build_response()443 if(0 >= (response->headers_size = SPDYF_name_value_to_stream(all_headers, in SPDY_build_response()448 SPDY_name_value_destroy(all_headers[0]); in SPDY_build_response()449 free(all_headers); in SPDY_build_response()[all …]
38 list(APPEND all_headers ${hds})42 list(APPEND all_headers ${hds})44 list(APPEND all_headers ${hds})47 set( ${hdrs_out} ${all_headers} PARENT_SCOPE )
252 all_headers = []255 if not all_headers:259 name, value = all_headers.pop()268 all_headers.append((name, value))269 return all_headers