Lines Matching refs:combined_headers_ptr
231 static void concat_header(sapi_header_struct *sapi_header, char **combined_headers_ptr TSRMLS_DC) in concat_header()
233 memcpy(*combined_headers_ptr, sapi_header->header, sapi_header->header_len); in concat_header()
234 *combined_headers_ptr += sapi_header->header_len; in concat_header()
235 **combined_headers_ptr = '\r'; in concat_header()
236 (*combined_headers_ptr)++; in concat_header()
237 **combined_headers_ptr = '\n'; in concat_header()
238 (*combined_headers_ptr)++; in concat_header()
245 char *combined_headers, *combined_headers_ptr; in sapi_isapi_send_headers() local
260 combined_headers_ptr = combined_headers; in sapi_isapi_send_headers()
262 concat_header(&default_content_type, (void *) &combined_headers_ptr TSRMLS_CC); in sapi_isapi_send_headers()
265 …s).headers, (llist_apply_with_arg_func_t) concat_header, (void *) &combined_headers_ptr TSRMLS_CC); in sapi_isapi_send_headers()
266 *combined_headers_ptr++ = '\r'; in sapi_isapi_send_headers()
267 *combined_headers_ptr++ = '\n'; in sapi_isapi_send_headers()
268 *combined_headers_ptr = 0; in sapi_isapi_send_headers()