Home
last modified time | relevance | path

Searched refs:args (Results 501 – 525 of 542) sorted by relevance

1...<<2122

/php-src/main/streams/
H A Dstreams.c243 va_list args; in php_stream_wrapper_log_error() local
246 va_start(args, fmt); in php_stream_wrapper_log_error()
247 vspprintf(&buffer, 0, fmt, args); in php_stream_wrapper_log_error()
248 va_end(args); in php_stream_wrapper_log_error()
/php-src/ext/opcache/
H A Dzend_persist.c299 if (copy->args[i].name) { in zend_persist_attributes()
300 zend_accel_store_interned_string(copy->args[i].name); in zend_persist_attributes()
302 zend_persist_zval(&copy->args[i].value); in zend_persist_attributes()
/php-src/ext/standard/
H A Dmd5.c293 PHPAPI void PHP_MD5InitArgs(PHP_MD5_CTX *ctx, ZEND_ATTRIBUTE_UNUSED HashTable *args) in PHP_MD5InitArgs() argument
H A Dfile.c961 zval *args = NULL; in PHP_FUNCTION() local
970 Z_PARAM_VARIADIC('*', args, argc) in PHP_FUNCTION()
987 result = php_sscanf_internal(buf, format, argc, args, 0, return_value); in PHP_FUNCTION()
H A Dvar_unserializer.re1136 zval args[1];
1248 ZVAL_STR(&args[0], class_name);
1250 call_user_function(NULL, NULL, &user_func, &retval, 1, args);
H A Dsha1.c155 PHPAPI void PHP_SHA1InitArgs(PHP_SHA1_CTX * context, ZEND_ATTRIBUTE_UNUSED HashTable *args) in PHP_SHA1InitArgs() argument
H A Dproc_open.c637 static zend_string *create_win_command_from_args(HashTable *args) in create_win_command_from_args() argument
645 ZEND_HASH_FOREACH_VAL(args, arg_zv) { in create_win_command_from_args()
H A Dstring.c4972 zval *args = NULL; local
4977 Z_PARAM_VARIADIC('+', args, num_args)
4981 if (Z_TYPE(args[i]) == IS_ARRAY) {
4983 ZEND_HASH_FOREACH_VAL(Z_ARRVAL(args[i]), elem) {
4993 zend_string *result = try_setlocale_zval(cat, &args[i]);
5830 zval *args = NULL; local
5838 Z_PARAM_VARIADIC('*', args, num_args)
5841 result = php_sscanf_internal(str, format, num_args, args, 0, return_value);
/php-src/ext/pcre/pcre2lib/sljit/
H A DsljitLir.c711 sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds, in set_emit_enter() argument
714 SLJIT_UNUSED_ARG(args); in set_emit_enter()
723 compiler->last_return = args & SLJIT_ARG_MASK; in set_emit_enter()
729 sljit_s32 options, sljit_s32 args, sljit_s32 scratches, sljit_s32 saveds, in set_set_context() argument
732 SLJIT_UNUSED_ARG(args); in set_set_context()
741 compiler->last_return = args & SLJIT_ARG_MASK; in set_set_context()
/php-src/ext/reflection/
H A Dphp_reflection.c5128 HashTable *args = NULL; in ZEND_METHOD() local
5133 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|h", &args) == FAILURE) { in ZEND_METHOD()
5137 if (args) { in ZEND_METHOD()
5138 argc = zend_hash_num_elements(args); in ZEND_METHOD()
5159 constructor, Z_OBJ_P(return_value), Z_OBJCE_P(return_value), NULL, 0, NULL, args); in ZEND_METHOD()
6622 if (attr->data->args[i].name != NULL) { in ZEND_METHOD()
6623 smart_str_append(&str, attr->data->args[i].name); in ZEND_METHOD()
6627 if (format_default_value(&str, &attr->data->args[i].value) == FAILURE) { in ZEND_METHOD()
6711 if (attr->data->args[i].name) { in ZEND_METHOD()
6713 zend_hash_add_new(Z_ARRVAL_P(return_value), attr->data->args[i].name, &tmp); in ZEND_METHOD()
/php-src/ext/pdo/
H A Dpdo_sql_parser.re98 /* phase 1: look for args */
/php-src/sapi/apache2handler/
H A Dsapi_apache2.c529 SG(request_info).query_string = apr_pstrdup(r->pool, r->args); in php_apache_request_ctor()
/php-src/ext/pcntl/
H A Dpcntl_arginfo.h81 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, args, IS_ARRAY, 0, "[]")
/php-src/ext/dom/
H A Ddocument.c2229 zval *args; in PHP_METHOD() local
2232 if (zend_parse_parameters(ZEND_NUM_ARGS(), "*", &args, &argc) == FAILURE) { in PHP_METHOD()
2238 dom_parent_node_replace_children(intern, args, argc); in PHP_METHOD()
/php-src/ext/exif/
H A Dexif.c2005 va_list args; in exif_error_docref() local
2017 va_start(args, format); in exif_error_docref()
2023 php_verror(docref, ImageInfo && ImageInfo->FileName ? ImageInfo->FileName:"", type, buf, args); in exif_error_docref()
2027 php_verror(docref, ImageInfo && ImageInfo->FileName ? ImageInfo->FileName:"", type, format, args); in exif_error_docref()
2029 va_end(args); in exif_error_docref()
/php-src/ext/hash/
H A Dhash_haval.c256 …H_API void PHP_##p##HAVAL##b##Init(PHP_HAVAL_CTX *context, ZEND_ATTRIBUTE_UNUSED HashTable *args) \
/php-src/ext/standard/tests/strings/
H A Dstrspn_variation11.phpt2 Test strspn() function : usage variations - with varying start and default len args
H A Dstrcspn_variation11.phpt2 Test strcspn() function : usage variations - with varying start and default len args
/php-src/ext/sodium/
H A Dlibsodium.c133 zval *args = zend_hash_find(Z_ARRVAL_P(frame), ZSTR_KNOWN(ZEND_STR_ARGS)); in ZEND_GET_MODULE() local
134 if (args) { in ZEND_GET_MODULE()
135 zval_ptr_dtor(args); in ZEND_GET_MODULE()
136 ZVAL_EMPTY_ARRAY(args); in ZEND_GET_MODULE()
/php-src/Zend/
H A Dzend_alloc.c340 va_list args; in zend_debug_alloc_output() local
342 va_start(args, format); in zend_debug_alloc_output()
343 vsprintf(output_buf, format, args); in zend_debug_alloc_output()
344 va_end(args); in zend_debug_alloc_output()
/php-src/win32/build/
H A Dconfutils.js342 args = WScript.Arguments;
343 for (i = 0; i < args.length; i++) {
344 arg = args(i);
/php-src/ext/soap/
H A Dsoap.c2479 zval *args; local
2489 &function, &function_len, &args, &options, &headers, &output_headers) == FAILURE) {
2493 if (zend_parse_parameters(ZEND_NUM_ARGS(), "sa", &function, &function_len, &args) == FAILURE) {
2554 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args));
2558 ZEND_HASH_FOREACH_VAL(Z_ARRVAL_P(args), param) {
/php-src/ext/opcache/jit/ir/
H A Dir.c2372 ir_ref _ir_CALL_N(ir_ctx *ctx, ir_type type, ir_ref func, uint32_t count, ir_ref *args) argument
2382 ir_set_op(ctx, call, i + 3, args[i]);
2496 void _ir_TAILCALL_N(ir_ctx *ctx, ir_type type, ir_ref func, uint32_t count, ir_ref *args) argument
2510 ir_set_op(ctx, call, i + 3, args[i]);
/php-src/ext/mbstring/
H A Dmbstring.c3788 zval *args; in PHP_FUNCTION() local
3800 Z_PARAM_VARIADIC('+', args, argc) in PHP_FUNCTION()
3841 zval *zv = &args[n]; in PHP_FUNCTION()
3848 zval *zv = &args[n]; in PHP_FUNCTION()
3872 zval *zv = &args[n]; in PHP_FUNCTION()
/php-src/ext/gd/
H A Dgd_arginfo.h513 ZEND_ARG_VARIADIC_INFO(0, args)

Completed in 219 milliseconds

1...<<2122