Lines Matching refs:zvalue

1639 …bool result = php_curl_set_callable_handler(&curl_ptr->handlers.handler_type->fcc, zvalue, is_arra…
1654 …bool result = php_curl_set_callable_handler(&curl_ptr->handler_fcc, zvalue, is_array_config, #cons…
1663 static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue, bool is_array_con… in _php_curl_setopt() argument
1688 lval = zval_get_long(zvalue); in _php_curl_setopt()
1843 lval = zval_get_long(zvalue); in _php_curl_setopt()
1852 if (!zend_is_true(zvalue)) { in _php_curl_setopt()
1941 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
1977 if (Z_ISNULL_P(zvalue)) { in _php_curl_setopt()
1981 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
1993 ZVAL_COPY(&ch->private_data, zvalue); in _php_curl_setopt()
2001 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2015 if (Z_TYPE_P(zvalue) != IS_NULL) { in _php_curl_setopt()
2016 …what = (php_stream *)zend_fetch_resource2_ex(zvalue, "File-Handle", php_file_le_stream(), php_file… in _php_curl_setopt()
2044 ZVAL_COPY(&ch->handlers.write->stream, zvalue); in _php_curl_setopt()
2062 ZVAL_COPY(&ch->handlers.write_header->stream, zvalue); in _php_curl_setopt()
2079 ch->handlers.read->res = Z_RES_P(zvalue); in _php_curl_setopt()
2080 ZVAL_COPY(&ch->handlers.read->stream, zvalue); in _php_curl_setopt()
2091 ZVAL_COPY(&ch->handlers.std_err, zvalue); in _php_curl_setopt()
2121 if (Z_TYPE_P(zvalue) != IS_ARRAY) { in _php_curl_setopt()
2160 ph = Z_ARRVAL_P(zvalue); in _php_curl_setopt()
2191 lval = zend_is_true(zvalue); in _php_curl_setopt()
2196 if (Z_TYPE_P(zvalue) == IS_ARRAY) { in _php_curl_setopt()
2197 if (zend_hash_num_elements(Z_ARRVAL_P(zvalue)) == 0) { in _php_curl_setopt()
2203 return build_mime_structure_from_hash(ch, zvalue); in _php_curl_setopt()
2207 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2216 if (zend_is_true(zvalue)) { in _php_curl_setopt()
2228 lval = zval_get_long(zvalue); in _php_curl_setopt()
2233 lval = zval_get_long(zvalue); in _php_curl_setopt()
2252 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2271 if (zend_is_true(zvalue)) { in _php_curl_setopt()
2284 if (Z_TYPE_P(zvalue) == IS_OBJECT && Z_OBJCE_P(zvalue) == curl_share_ce) { in _php_curl_setopt()
2285 php_curlsh *sh = Z_CURL_SHARE_P(zvalue); in _php_curl_setopt()
2311 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2346 zval *zid, *zvalue; in PHP_FUNCTION() local
2353 Z_PARAM_ZVAL(zvalue) in PHP_FUNCTION()
2358 if (_php_curl_setopt(ch, options, zvalue, 0) == SUCCESS) { in PHP_FUNCTION()