post_entry        184 main/SAPI.c    	if (SG(request_info).post_entry && SG(request_info).content_type_dup) {
post_entry        185 main/SAPI.c    		SG(request_info).post_entry->post_handler(SG(request_info).content_type_dup, arg TSRMLS_CC);
post_entry        193 main/SAPI.c    	sapi_post_entry *post_entry;
post_entry        222 main/SAPI.c    			content_type_length+1, (void **) &post_entry) == SUCCESS) {
post_entry        224 main/SAPI.c    		SG(request_info).post_entry = post_entry;
post_entry        225 main/SAPI.c    		post_reader_func = post_entry->post_reader;
post_entry        228 main/SAPI.c    		SG(request_info).post_entry = NULL;
post_entry        422 main/SAPI.c    	SG(request_info).post_entry = NULL;
post_entry        467 main/SAPI.c    	SG(request_info).post_entry = NULL;
post_entry        950 main/SAPI.c    SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry TSRMLS_DC)
post_entry        956 main/SAPI.c    			post_entry->content_type, post_entry->content_type_len+1,
post_entry        957 main/SAPI.c    			(void *) post_entry, sizeof(sapi_post_entry), NULL);
post_entry        960 main/SAPI.c    SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry TSRMLS_DC)
post_entry        965 main/SAPI.c    	zend_hash_del(&SG(known_post_content_types), post_entry->content_type,
post_entry        966 main/SAPI.c    			post_entry->content_type_len+1);
post_entry         98 main/SAPI.h    	sapi_post_entry *post_entry;
post_entry        195 main/SAPI.h    SAPI_API int sapi_register_post_entries(sapi_post_entry *post_entry TSRMLS_DC);
post_entry        196 main/SAPI.h    SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry TSRMLS_DC);
post_entry        197 main/SAPI.h    SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry TSRMLS_DC);
post_entry         43 main/php_content_types.c 		return (zend_bool) !SG(request_info).post_entry;
post_entry         54 main/php_content_types.c 		if (NULL == SG(request_info).post_entry) {