Lines Matching refs:dcls
2355 data_string *dcls; in fcgi_response_parse() local
2361 …if (NULL == (dcls = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) { in fcgi_response_parse()
2362 dcls = data_response_init(); in fcgi_response_parse()
2365 buffer_copy_string_len(dcls->key, "Content-Length", sizeof("Content-Length")-1); in fcgi_response_parse()
2366 buffer_copy_off_t(dcls->value, sendfile2_content_length); in fcgi_response_parse()
2367 dcls = (data_string*) array_replace(con->response.headers, (data_unset *)dcls); in fcgi_response_parse()
2368 if (dcls) dcls->free((data_unset*)dcls); in fcgi_response_parse()
2624 data_string *dcls; in fcgi_demux_response() local
2625 …if (NULL == (dcls = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) { in fcgi_demux_response()
2626 dcls = data_response_init(); in fcgi_demux_response()
2633 buffer_copy_string_len(dcls->key, "Content-Length", sizeof("Content-Length")-1); in fcgi_demux_response()
2634 buffer_copy_off_t(dcls->value, sce->st.st_size); in fcgi_demux_response()
2635 dcls = (data_string*) array_replace(con->response.headers, (data_unset *)dcls); in fcgi_demux_response()
2636 if (dcls) dcls->free((data_unset*)dcls); in fcgi_demux_response()