post_entry        173 main/SAPI.c    	if (SG(request_info).post_entry && SG(request_info).content_type_dup) {
post_entry        174 main/SAPI.c    		SG(request_info).post_entry->post_handler(SG(request_info).content_type_dup, arg);
post_entry        182 main/SAPI.c    	sapi_post_entry *post_entry;
post_entry        210 main/SAPI.c    	if ((post_entry = zend_hash_str_find_ptr(&SG(known_post_content_types), content_type,
post_entry        213 main/SAPI.c    		SG(request_info).post_entry = post_entry;
post_entry        214 main/SAPI.c    		post_reader_func = post_entry->post_reader;
post_entry        217 main/SAPI.c    		SG(request_info).post_entry = NULL;
post_entry        411 main/SAPI.c    	SG(request_info).post_entry = NULL;
post_entry        455 main/SAPI.c    	SG(request_info).post_entry = NULL;
post_entry        941 main/SAPI.c    SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry)
post_entry        947 main/SAPI.c    			post_entry->content_type, post_entry->content_type_len,
post_entry        948 main/SAPI.c    			(void *) post_entry, sizeof(sapi_post_entry)) ? SUCCESS : FAILURE;
post_entry        951 main/SAPI.c    SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry)
post_entry        956 main/SAPI.c    	zend_hash_str_del(&SG(known_post_content_types), post_entry->content_type,
post_entry        957 main/SAPI.c    			post_entry->content_type_len);
post_entry         99 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);
post_entry        196 main/SAPI.h    SAPI_API int sapi_register_post_entry(sapi_post_entry *post_entry);
post_entry        197 main/SAPI.h    SAPI_API void sapi_unregister_post_entry(sapi_post_entry *post_entry);
post_entry         41 main/php_content_types.c 		if (NULL == SG(request_info).post_entry) {