Lines Matching refs:zvalue

2118 static int _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue) /* {{{ */  in _php_curl_setopt()  argument
2126 lval = zval_get_long(zvalue); in _php_curl_setopt()
2310 lval = zval_get_long(zvalue); in _php_curl_setopt()
2327 if (!zend_is_true(zvalue)) { in _php_curl_setopt()
2405 zend_string *str = zval_get_string(zvalue); in _php_curl_setopt()
2436 if (Z_ISNULL_P(zvalue)) { in _php_curl_setopt()
2439 zend_string *str = zval_get_string(zvalue); in _php_curl_setopt()
2450 zend_string *str = zval_get_string(zvalue); in _php_curl_setopt()
2459 zend_string *str = zval_get_string(zvalue); in _php_curl_setopt()
2473 if (Z_TYPE_P(zvalue) != IS_NULL) { in _php_curl_setopt()
2474 …what = (php_stream *)zend_fetch_resource2_ex(zvalue, "File-Handle", php_file_le_stream(), php_file… in _php_curl_setopt()
2502 ZVAL_COPY(&ch->handlers->write->stream, zvalue); in _php_curl_setopt()
2520 ZVAL_COPY(&ch->handlers->write_header->stream, zvalue); in _php_curl_setopt()
2537 ch->handlers->read->res = Z_RES_P(zvalue); in _php_curl_setopt()
2538 ZVAL_COPY(&ch->handlers->read->stream, zvalue); in _php_curl_setopt()
2549 ZVAL_COPY(&ch->handlers->std_err, zvalue); in _php_curl_setopt()
2587 ph = HASH_OF(zvalue); in _php_curl_setopt()
2663 lval = zend_is_true(zvalue); in _php_curl_setopt()
2678 ZVAL_COPY(&ch->handlers->write_header->func_name, zvalue); in _php_curl_setopt()
2683 if (Z_TYPE_P(zvalue) == IS_ARRAY || Z_TYPE_P(zvalue) == IS_OBJECT) { in _php_curl_setopt()
2692 postfields = HASH_OF(zvalue); in _php_curl_setopt()
2781 zend_string *str = zval_get_string(zvalue); in _php_curl_setopt()
2788 zend_string *str = zval_get_string(zvalue); in _php_curl_setopt()
2809 ZVAL_COPY(&ch->handlers->progress->func_name, zvalue); in _php_curl_setopt()
2818 ZVAL_COPY(&ch->handlers->read->func_name, zvalue); in _php_curl_setopt()
2823 if (zend_is_true(zvalue)) { in _php_curl_setopt()
2835 ZVAL_COPY(&ch->handlers->write->func_name, zvalue); in _php_curl_setopt()
2842 lval = zval_get_long(zvalue); in _php_curl_setopt()
2849 lval = zval_get_long(zvalue); in _php_curl_setopt()
2857 ZVAL_COPY(&ch->handlers->passwd, zvalue); in _php_curl_setopt()
2885 zend_string *str = zval_get_string(zvalue); in _php_curl_setopt()
2899 if (zend_is_true(zvalue)) { in _php_curl_setopt()
2913 …if ((sh = (php_curlsh *)zend_fetch_resource_ex(zvalue, le_curl_share_handle_name, le_curl_share_ha… in _php_curl_setopt()
2929 ZVAL_COPY(&ch->handlers->fnmatch->func_name, zvalue); in _php_curl_setopt()
2949 zval *zid, *zvalue; in PHP_FUNCTION() local
2956 Z_PARAM_ZVAL(zvalue) in PHP_FUNCTION()
2968 if (_php_curl_setopt(ch, options, zvalue) == SUCCESS) { in PHP_FUNCTION()