Lines Matching refs:to_free

1757 	ch->to_free = ecalloc(1, sizeof(struct _php_curl_free));  in init_curl_handle()
1768 …zend_llist_init(&ch->to_free->post, sizeof(struct HttpPost *), (llist_dtor_func_t)curl_free_post,… in init_curl_handle()
1769 …zend_llist_init(&ch->to_free->stream, sizeof(struct mime_data_cb_arg *), (llist_dtor_func_t)curl_f… in init_curl_handle()
1772 …zend_llist_init(&ch->to_free->buffers, sizeof(zend_string *), (llist_dtor_func_t)curl_free_buffers… in init_curl_handle()
1775 ch->to_free->slist = emalloc(sizeof(HashTable)); in init_curl_handle()
1776 zend_hash_init(ch->to_free->slist, 4, NULL, curl_free_slist, 0); in init_curl_handle()
1944 efree(ch->to_free->slist); in _php_setup_easy_copy_handlers()
1945 efree(ch->to_free); in _php_setup_easy_copy_handlers()
1946 ch->to_free = source->to_free; in _php_setup_easy_copy_handlers()
2098 zend_llist_add_element(&ch->to_free->stream, &cb_arg); in build_mime_structure_from_hash()
2170 zend_llist_add_element(&ch->to_free->buffers, &postval); in build_mime_structure_from_hash()
2229 zend_llist_clean(&ch->to_free->post); in build_mime_structure_from_hash()
2232 zend_llist_add_element(&ch->to_free->post, &mime); in build_mime_structure_from_hash()
2235 zend_llist_add_element(&ch->to_free->post, &first); in build_mime_structure_from_hash()
2775 zend_hash_index_update_ptr(ch->to_free->slist, option, slist); in _php_curl_setopt()
2777 zend_hash_next_index_insert_ptr(ch->to_free->slist, slist); in _php_curl_setopt()
3459 zend_llist_clean(&ch->to_free->post); in curl_free_obj()
3460 zend_llist_clean(&ch->to_free->stream); in curl_free_obj()
3463 zend_llist_clean(&ch->to_free->buffers); in curl_free_obj()
3466 zend_hash_destroy(ch->to_free->slist); in curl_free_obj()
3467 efree(ch->to_free->slist); in curl_free_obj()
3468 efree(ch->to_free); in curl_free_obj()