Lines Matching refs:progress

1290 	if (curl->handlers.progress) {  in curl_get_gc()
1291 zend_get_gc_buffer_add_zval(gc_buffer, &curl->handlers.progress->func_name); in curl_get_gc()
1459 php_curl_callback *t = ch->handlers.progress; in curl_progress()
1761 ch->handlers.progress = NULL; in init_curl_handle()
1926 if (source->handlers.progress) { in _php_setup_easy_copy_handlers()
1927 ch->handlers.progress = ecalloc(1, sizeof(php_curl_callback)); in _php_setup_easy_copy_handlers()
1928 if (!Z_ISUNDEF(source->handlers.progress->func_name)) { in _php_setup_easy_copy_handlers()
1929 ZVAL_COPY(&ch->handlers.progress->func_name, &source->handlers.progress->func_name); in _php_setup_easy_copy_handlers()
2827 if (ch->handlers.progress == NULL) { in _php_curl_setopt()
2828 ch->handlers.progress = ecalloc(1, sizeof(php_curl_callback)); in _php_curl_setopt()
2829 } else if (!Z_ISUNDEF(ch->handlers.progress->func_name)) { in _php_curl_setopt()
2830 zval_ptr_dtor(&ch->handlers.progress->func_name); in _php_curl_setopt()
2831 ch->handlers.progress->fci_cache = empty_fcall_info_cache; in _php_curl_setopt()
2833 ZVAL_COPY(&ch->handlers.progress->func_name, zvalue); in _php_curl_setopt()
3489 if (ch->handlers.progress) { in curl_free_obj()
3490 zval_ptr_dtor(&ch->handlers.progress->func_name); in curl_free_obj()
3491 efree(ch->handlers.progress); in curl_free_obj()
3560 if (ch->handlers.progress) { in _php_curl_reset_handlers()
3561 zval_ptr_dtor(&ch->handlers.progress->func_name); in _php_curl_reset_handlers()
3562 efree(ch->handlers.progress); in _php_curl_reset_handlers()
3563 ch->handlers.progress = NULL; in _php_curl_reset_handlers()