Lines Matching refs:to_free

125 		zend_llist_add_element(&ch->to_free->str, &copystr);  in php_curl_option_str()
1894 ch->to_free = ecalloc(1, sizeof(struct _php_curl_free)); in alloc_curl_handle()
1908 …zend_llist_init(&ch->to_free->str, sizeof(char *), (llist_dtor_func_t)curl_free_string,… in alloc_curl_handle()
1909 …zend_llist_init(&ch->to_free->post, sizeof(struct HttpPost *), (llist_dtor_func_t)curl_free_post,… in alloc_curl_handle()
1910 …zend_llist_init(&ch->to_free->stream, sizeof(struct mime_data_cb_arg *), (llist_dtor_func_t)curl_f… in alloc_curl_handle()
1912 ch->to_free->slist = emalloc(sizeof(HashTable)); in alloc_curl_handle()
1913 zend_hash_init(ch->to_free->slist, 4, NULL, curl_free_slist, 0); in alloc_curl_handle()
2097 efree(ch->to_free->slist); in _php_setup_easy_copy_handlers()
2098 efree(ch->to_free); in _php_setup_easy_copy_handlers()
2099 ch->to_free = source->to_free; in _php_setup_easy_copy_handlers()
2257 zend_llist_add_element(&ch->to_free->stream, &cb_arg); in build_mime_structure_from_hash()
2316 zend_llist_clean(&ch->to_free->post); in build_mime_structure_from_hash()
2319 zend_llist_add_element(&ch->to_free->post, &mime); in build_mime_structure_from_hash()
2322 zend_llist_add_element(&ch->to_free->post, &first); in build_mime_structure_from_hash()
2937 zend_hash_index_update_ptr(ch->to_free->slist, option, slist); in _php_curl_setopt()
2939 zend_hash_next_index_insert_ptr(ch->to_free->slist, slist); in _php_curl_setopt()
2996 zend_llist_add_element(&ch->to_free->str, &post); in _php_curl_setopt()
3643 zend_llist_clean(&ch->to_free->str); in _php_curl_close_ex()
3644 zend_llist_clean(&ch->to_free->post); in _php_curl_close_ex()
3645 zend_llist_clean(&ch->to_free->stream); in _php_curl_close_ex()
3646 zend_hash_destroy(ch->to_free->slist); in _php_curl_close_ex()
3647 efree(ch->to_free->slist); in _php_curl_close_ex()
3648 efree(ch->to_free); in _php_curl_close_ex()