Lines Matching refs:to_free
185 zend_llist_add_element(&ch->to_free->str, ©str); in php_curl_option_str()
1808 (*ch)->to_free = ecalloc(1, sizeof(struct _php_curl_free)); in alloc_curl_handle()
1826 …zend_llist_init(&(*ch)->to_free->str, sizeof(char *), (llist_dtor_func_t) curl_free_s… in alloc_curl_handle()
1827 …zend_llist_init(&(*ch)->to_free->post, sizeof(struct HttpPost), (llist_dtor_func_t) curl_free_p… in alloc_curl_handle()
1830 (*ch)->to_free->slist = emalloc(sizeof(HashTable)); in alloc_curl_handle()
1831 zend_hash_init((*ch)->to_free->slist, 4, NULL, curl_free_slist, 0); in alloc_curl_handle()
2046 efree(dupch->to_free->slist); in PHP_FUNCTION()
2047 efree(dupch->to_free); in PHP_FUNCTION()
2048 dupch->to_free = ch->to_free; in PHP_FUNCTION()
2520 …zend_hash_index_update(ch->to_free->slist, (ulong) option, &slist, sizeof(struct curl_slist *), NU… in _php_curl_setopt()
2522 zend_hash_next_index_insert(ch->to_free->slist, &slist, sizeof(struct curl_slist *), NULL); in _php_curl_setopt()
2686 zend_llist_clean(&ch->to_free->post); in _php_curl_setopt()
2688 zend_llist_add_element(&ch->to_free->post, &first); in _php_curl_setopt()
2702 zend_llist_add_element(&ch->to_free->str, &post); in _php_curl_setopt()
3287 zend_llist_clean(&ch->to_free->str); in _php_curl_close_ex()
3288 zend_llist_clean(&ch->to_free->post); in _php_curl_close_ex()
3289 zend_hash_destroy(ch->to_free->slist); in _php_curl_close_ex()
3290 efree(ch->to_free->slist); in _php_curl_close_ex()
3291 efree(ch->to_free); in _php_curl_close_ex()