Home
last modified time | relevance | path

Searched refs:all_headers (Results 1 – 5 of 5) sorted by relevance

/external/libmicrohttpd/src/microspdy/
Dapplicationlayer.c399 struct SPDY_NameValue ** all_headers = NULL; //TODO maybe array in stack is enough in SPDY_build_response() local
417 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 …]
/external/llvm/cmake/modules/
DLLVMProcessSources.cmake38 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 )
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
Dhttpclient.py248 all_headers = []
251 if not all_headers:
255 name, value = all_headers.pop()
264 all_headers.append((name, value))
265 return all_headers
/external/chromium-trace/catapult/third_party/Paste/docs/
Dtesting-applications.txt73 ``all_headers(header_name):``
/external/chromium-trace/catapult/third_party/Paste/paste/
Dfixture.py429 for header in res.all_headers('set-cookie'):
604 def all_headers(self, name): member in TestResponse