Lines Matching refs:zvalue

2175 static int _php_curl_setopt(php_curl *ch, zend_long option, zval *zvalue) /* {{{ */  in _php_curl_setopt()  argument
2183 lval = zval_get_long(zvalue); in _php_curl_setopt()
2374 lval = zval_get_long(zvalue); in _php_curl_setopt()
2391 if (!zend_is_true(zvalue)) { in _php_curl_setopt()
2492 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2521 if (Z_ISNULL_P(zvalue)) { in _php_curl_setopt()
2525 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2537 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2547 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2561 if (Z_TYPE_P(zvalue) != IS_NULL) { in _php_curl_setopt()
2562 …what = (php_stream *)zend_fetch_resource2_ex(zvalue, "File-Handle", php_file_le_stream(), php_file… in _php_curl_setopt()
2590 ZVAL_COPY(&ch->handlers->write->stream, zvalue); in _php_curl_setopt()
2608 ZVAL_COPY(&ch->handlers->write_header->stream, zvalue); in _php_curl_setopt()
2625 ch->handlers->read->res = Z_RES_P(zvalue); in _php_curl_setopt()
2626 ZVAL_COPY(&ch->handlers->read->stream, zvalue); in _php_curl_setopt()
2637 ZVAL_COPY(&ch->handlers->std_err, zvalue); in _php_curl_setopt()
2675 ph = HASH_OF(zvalue); in _php_curl_setopt()
2751 lval = zend_is_true(zvalue); in _php_curl_setopt()
2766 ZVAL_COPY(&ch->handlers->write_header->func_name, zvalue); in _php_curl_setopt()
2771 if (Z_TYPE_P(zvalue) == IS_ARRAY || Z_TYPE_P(zvalue) == IS_OBJECT) { in _php_curl_setopt()
2785 postfields = HASH_OF(zvalue); in _php_curl_setopt()
2917 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2925 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
2946 ZVAL_COPY(&ch->handlers->progress->func_name, zvalue); in _php_curl_setopt()
2955 ZVAL_COPY(&ch->handlers->read->func_name, zvalue); in _php_curl_setopt()
2960 if (zend_is_true(zvalue)) { in _php_curl_setopt()
2972 ZVAL_COPY(&ch->handlers->write->func_name, zvalue); in _php_curl_setopt()
2982 lval = zval_get_long(zvalue); in _php_curl_setopt()
2988 lval = zval_get_long(zvalue); in _php_curl_setopt()
3014 zend_string *str = zval_get_tmp_string(zvalue, &tmp_str); in _php_curl_setopt()
3028 if (zend_is_true(zvalue)) { in _php_curl_setopt()
3042 …if ((sh = (php_curlsh *)zend_fetch_resource_ex(zvalue, le_curl_share_handle_name, le_curl_share_ha… in _php_curl_setopt()
3058 ZVAL_COPY(&ch->handlers->fnmatch->func_name, zvalue); in _php_curl_setopt()
3078 zval *zid, *zvalue; in PHP_FUNCTION() local
3085 Z_PARAM_ZVAL(zvalue) in PHP_FUNCTION()
3097 if (_php_curl_setopt(ch, options, zvalue) == SUCCESS) { in PHP_FUNCTION()