Lines Matching refs:post_entry
171 if (SG(request_info).post_entry && SG(request_info).content_type_dup) { in sapi_handle_post()
172 SG(request_info).post_entry->post_handler(SG(request_info).content_type_dup, arg); in sapi_handle_post()
180 sapi_post_entry *post_entry; in sapi_read_post_data() local
208 if ((post_entry = zend_hash_str_find_ptr(&SG(known_post_content_types), content_type, in sapi_read_post_data()
211 SG(request_info).post_entry = post_entry; in sapi_read_post_data()
212 post_reader_func = post_entry->post_reader; in sapi_read_post_data()
215 SG(request_info).post_entry = NULL; in sapi_read_post_data()
409 SG(request_info).post_entry = NULL; in sapi_activate_headers_only()
453 SG(request_info).post_entry = NULL; in sapi_activate()
947 SAPI_API int sapi_register_post_entry(const sapi_post_entry *post_entry) in sapi_register_post_entry() argument
954 key = zend_string_init(post_entry->content_type, post_entry->content_type_len, 1); in sapi_register_post_entry()
957 (void *) post_entry, sizeof(sapi_post_entry)) ? SUCCESS : FAILURE; in sapi_register_post_entry()
962 SAPI_API void sapi_unregister_post_entry(const sapi_post_entry *post_entry) in sapi_unregister_post_entry() argument
967 zend_hash_str_del(&SG(known_post_content_types), post_entry->content_type, in sapi_unregister_post_entry()
968 post_entry->content_type_len); in sapi_unregister_post_entry()