Lines Matching refs:zvalue

1634 …bool result = php_curl_set_callable_handler(&curl_ptr->handlers.handler_type->fcc, zvalue, is_arra…
1649 …bool result = php_curl_set_callable_handler(&curl_ptr->handler_fcc, zvalue, is_array_config, #cons…
1658 static zend_result _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue, bool is_array_con… in _php_curl_setopt() argument
1683 lval = zval_get_long(zvalue); in _php_curl_setopt()
1838 lval = zval_get_long(zvalue); in _php_curl_setopt()
1847 if (!zend_is_true(zvalue)) { in _php_curl_setopt()
1936 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
1969 if (Z_ISNULL_P(zvalue)) { in _php_curl_setopt()
1973 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
1985 ZVAL_COPY(&ch->private_data, zvalue); in _php_curl_setopt()
1993 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2007 if (Z_TYPE_P(zvalue) != IS_NULL) { in _php_curl_setopt()
2008 …what = (php_stream *)zend_fetch_resource2_ex(zvalue, "File-Handle", php_file_le_stream(), php_file… in _php_curl_setopt()
2036 ZVAL_COPY(&ch->handlers.write->stream, zvalue); in _php_curl_setopt()
2054 ZVAL_COPY(&ch->handlers.write_header->stream, zvalue); in _php_curl_setopt()
2071 ch->handlers.read->res = Z_RES_P(zvalue); in _php_curl_setopt()
2072 ZVAL_COPY(&ch->handlers.read->stream, zvalue); in _php_curl_setopt()
2083 ZVAL_COPY(&ch->handlers.std_err, zvalue); in _php_curl_setopt()
2113 if (Z_TYPE_P(zvalue) != IS_ARRAY) { in _php_curl_setopt()
2152 ph = Z_ARRVAL_P(zvalue); in _php_curl_setopt()
2183 lval = zend_is_true(zvalue); in _php_curl_setopt()
2188 if (Z_TYPE_P(zvalue) == IS_ARRAY) { in _php_curl_setopt()
2189 if (zend_hash_num_elements(HASH_OF(zvalue)) == 0) { in _php_curl_setopt()
2195 return build_mime_structure_from_hash(ch, zvalue); in _php_curl_setopt()
2199 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2208 if (zend_is_true(zvalue)) { in _php_curl_setopt()
2220 lval = zval_get_long(zvalue); in _php_curl_setopt()
2225 lval = zval_get_long(zvalue); in _php_curl_setopt()
2244 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2263 if (zend_is_true(zvalue)) { in _php_curl_setopt()
2276 if (Z_TYPE_P(zvalue) == IS_OBJECT && Z_OBJCE_P(zvalue) == curl_share_ce) { in _php_curl_setopt()
2277 php_curlsh *sh = Z_CURL_SHARE_P(zvalue); in _php_curl_setopt()
2303 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2338 zval *zid, *zvalue; in PHP_FUNCTION() local
2345 Z_PARAM_ZVAL(zvalue) in PHP_FUNCTION()
2350 if (_php_curl_setopt(ch, options, zvalue, 0) == SUCCESS) { in PHP_FUNCTION()