content_type      402 ext/iconv/iconv.c 	char *s, *content_type, *mimetype = NULL;
content_type      427 ext/iconv/iconv.c 				len = spprintf(&content_type, 0, "Content-Type:%.*s; charset=%.*s", mimetype_len ? mimetype_len : (int) strlen(mimetype), mimetype, (int) (p - get_output_encoding()), get_output_encoding());
content_type      429 ext/iconv/iconv.c 				len = spprintf(&content_type, 0, "Content-Type:%.*s; charset=%s", mimetype_len ? mimetype_len : (int) strlen(mimetype), mimetype, get_output_encoding());
content_type      431 ext/iconv/iconv.c 			if (content_type && SUCCESS == sapi_add_header(content_type, (uint)len, 0)) {
content_type      346 ext/soap/php_http.c 	char *content_type, *http_version, *cookie_itt;
content_type     1215 ext/soap/php_http.c 	content_type = get_http_header_value(ZSTR_VAL(http_headers), "Content-Type: ");
content_type     1216 ext/soap/php_http.c 	if (content_type) {
content_type     1219 ext/soap/php_http.c 		pos = strstr(content_type,";");
content_type     1221 ext/soap/php_http.c 			cmplen = pos - content_type;
content_type     1223 ext/soap/php_http.c 			cmplen = strlen(content_type);
content_type     1225 ext/soap/php_http.c 		if (strncmp(content_type, "text/xml", cmplen) == 0 ||
content_type     1226 ext/soap/php_http.c 		    strncmp(content_type, "application/soap+xml", cmplen) == 0) {
content_type     1241 ext/soap/php_http.c 		efree(content_type);
content_type      183 main/SAPI.c    	uint content_type_length = (uint)strlen(SG(request_info).content_type);
content_type      184 main/SAPI.c    	char *content_type = estrndup(SG(request_info).content_type, content_type_length);
content_type      194 main/SAPI.c    	for (p=content_type; p<content_type+content_type_length; p++) {
content_type      199 main/SAPI.c    				content_type_length = p-content_type;
content_type      210 main/SAPI.c    	if ((post_entry = zend_hash_str_find_ptr(&SG(known_post_content_types), content_type,
content_type      221 main/SAPI.c    			sapi_module.sapi_error(E_WARNING, "Unsupported content type:  '%s'", content_type);
content_type      229 main/SAPI.c    	SG(request_info).content_type_dup = content_type;
content_type      307 main/SAPI.c    	char *mimetype, *charset, *content_type;
content_type      329 main/SAPI.c    		content_type = (char*)emalloc(*len + 1);
content_type      330 main/SAPI.c    		p = content_type + prefix_len;
content_type      338 main/SAPI.c    		content_type = (char*)emalloc(*len + 1);
content_type      339 main/SAPI.c    		memcpy(content_type + prefix_len, mimetype, mimetype_len + 1);
content_type      341 main/SAPI.c    	return content_type;
content_type      470 main/SAPI.c    		&& 	SG(request_info).content_type
content_type      931 main/SAPI.c    	while (p->content_type) {
content_type      947 main/SAPI.c    			post_entry->content_type, post_entry->content_type_len,
content_type      956 main/SAPI.c    	zend_hash_str_del(&SG(known_post_content_types), post_entry->content_type,
content_type       93 main/SAPI.h    	const char *content_type;
content_type      280 main/SAPI.h    	char *content_type;
content_type       51 sapi/apache2handler/php_apache.h 	char *content_type;
content_type      147 sapi/apache2handler/php_functions.c 		ADD_STRING(content_type);
content_type      121 sapi/apache2handler/sapi_apache2.c 				if (ctx->content_type) {
content_type      122 sapi/apache2handler/sapi_apache2.c 					efree(ctx->content_type);
content_type      124 sapi/apache2handler/sapi_apache2.c 				ctx->content_type = estrdup(val);
content_type      170 sapi/apache2handler/sapi_apache2.c 	if (!ctx->content_type) {
content_type      171 sapi/apache2handler/sapi_apache2.c 		ctx->content_type = sapi_get_default_content_type();
content_type      173 sapi/apache2handler/sapi_apache2.c 	ap_set_content_type(ctx->r, apr_pstrdup(ctx->r->pool, ctx->content_type));
content_type      174 sapi/apache2handler/sapi_apache2.c 	efree(ctx->content_type);
content_type      175 sapi/apache2handler/sapi_apache2.c 	ctx->content_type = NULL;
content_type      484 sapi/apache2handler/sapi_apache2.c 	SG(request_info).content_type = apr_table_get(r->headers_in, "Content-Type");
content_type     1137 sapi/cgi/cgi_main.c 	SG(request_info).content_type = NULL;
content_type     1148 sapi/cgi/cgi_main.c 		char *content_type = CGI_GETENV("CONTENT_TYPE");
content_type     1403 sapi/cgi/cgi_main.c 		SG(request_info).content_type = (content_type ? content_type : "" );
content_type     1773 sapi/cli/php_cli_server.c 		request_info->content_type = val;
content_type     1042 sapi/fpm/fpm/fpm_main.c 	SG(request_info).content_type = NULL;
content_type     1053 sapi/fpm/fpm/fpm_main.c 		char *content_type = FCGI_GETENV(request, "CONTENT_TYPE");
content_type     1388 sapi/fpm/fpm/fpm_main.c 		SG(request_info).content_type = (content_type ? content_type : "" );
content_type      465 sapi/litespeed/lsapi_main.c     SG(request_info).content_type = pContentType ? pContentType : "";