Lines Matching refs:z_ch
79 zval *z_ch; in PHP_FUNCTION() local
85 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rr", &z_mh, &z_ch) == FAILURE) { in PHP_FUNCTION()
93 if ((ch = (php_curl *)zend_fetch_resource(Z_RES_P(z_ch), le_curl_name, le_curl)) == NULL) { in PHP_FUNCTION()
100 ZVAL_DUP(&tmp_val, z_ch); in PHP_FUNCTION()
113 zval *z_ch = (zval *)data; in _php_curl_multi_cleanup_list() local
116 if (!z_ch) { in _php_curl_multi_cleanup_list()
119 if (!Z_RES_P(z_ch)->ptr) { in _php_curl_multi_cleanup_list()
122 if ((ch = (php_curl *)zend_fetch_resource(Z_RES_P(z_ch), le_curl_name, le_curl)) == NULL) { in _php_curl_multi_cleanup_list()
126 zend_list_delete(Z_RES_P(z_ch)); in _php_curl_multi_cleanup_list()
167 zval *z_ch; in PHP_FUNCTION() local
172 if (zend_parse_parameters(ZEND_NUM_ARGS(), "rr", &z_mh, &z_ch) == FAILURE) { in PHP_FUNCTION()
180 if ((ch = (php_curl *)zend_fetch_resource(Z_RES_P(z_ch), le_curl_name, le_curl)) == NULL) { in PHP_FUNCTION()
188 zend_llist_del_element(&mh->easyh, z_ch, (int (*)(void *, void *))curl_compare_resources); in PHP_FUNCTION()
305 zval *z_ch; in PHP_FUNCTION() local
308 if (zend_parse_parameters(ZEND_NUM_ARGS(), "r", &z_ch) == FAILURE) { in PHP_FUNCTION()
312 if ((ch = (php_curl *)zend_fetch_resource(Z_RES_P(z_ch), le_curl_name, le_curl)) == NULL) { in PHP_FUNCTION()