Home
last modified time | relevance | path

Searched refs:headers_received (Results 1 – 8 of 8) sorted by relevance

/external/libmicrohttpd/src/microhttpd/
Dtest_postprocessor.c134 connection.headers_received = &header; in test_urlencoding()
179 connection.headers_received = &header; in test_multipart_garbage()
212 connection.headers_received = &header; in test_multipart_splits()
242 connection.headers_received = &header; in test_multipart()
277 connection.headers_received = &header; in test_nested_multipart()
312 connection.headers_received = &header; in test_empty_value()
Dtest_postprocessor_amp.c32 connection.headers_received = &header; in main()
Dtest_postprocessor_large.c77 connection.headers_received = &header; in test_simple_large()
Ddigestauth.c449 for (pos = connection->headers_received; NULL != pos; pos = pos->next) in test_header()
536 for (pos = connection->headers_received; NULL != pos; pos = pos->next) in check_argument_match()
Dinternal.h557 struct MHD_HTTP_Header *headers_received; member
Dconnection.c138 for (pos = connection->headers_received; NULL != pos; pos = pos->next) in MHD_get_connection_values()
194 connection->headers_received = pos; in MHD_set_connection_value()
224 for (pos = connection->headers_received; NULL != pos; pos = pos->next) in MHD_lookup_connection_value()
2622 connection->headers_received = NULL;
/external/webrtc/webrtc/examples/peerconnection/server/
Ddata_socket.h74 bool headers_received() const { return method_ != INVALID; } in headers_received() function
88 return headers_received() && (method_ != POST || data_received()); in request_received()
Ddata_socket.cc98 if (headers_received()) { in OnDataAvailable()