Home
last modified time | relevance | path

Searched refs:args (Results 476 – 500 of 560) sorted by relevance

1...<<11121314151617181920>>...23

/PHP-7.4/ext/standard/tests/file/
H A Dunlink_error.phpt29 // args > expected
H A Dunlink_error-win32-mb.phpt31 // args > expected
H A Dftruncate_error.phpt44 /* loop to test ftruncate() with different invalid type of args */
H A Drename_variation13.phpt28 /* Invalid args */
/PHP-7.4/ext/pgsql/
H A Dpgsql.c1303 zval *args; local
1311 efree(args);
1328 ZVAL_STR(&args[i], zval_get_string(&args[i]));
1330 smart_str_appendl(&str, Z_STRVAL(args[i]), Z_STRLEN(args[i]));
1346 host = Z_STRVAL(args[0]);
1347 port = Z_STRVAL(args[1]);
1352 tty = Z_STRVAL(args[3]);
1522 zval_ptr_dtor(&args[i]);
1524 efree(args);
1530 zval_ptr_dtor(&args[i]);
[all …]
/PHP-7.4/ext/pcntl/
H A Dpcntl.c142 ZEND_ARG_INFO(0, args)
951 zval *args = NULL, *envs = NULL; in PHP_FUNCTION() local
964 if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|aa", &path, &path_len, &args, &envs) == FAILURE) { in PHP_FUNCTION()
970 SEPARATE_ARRAY(args); in PHP_FUNCTION()
971 args_hash = Z_ARRVAL_P(args); in PHP_FUNCTION()
/PHP-7.4/ext/standard/tests/strings/
H A Dstrcspn_variation10.phpt2 Test strcspn() function : usage variations - with varying mask & default start and len args
H A Dstrspn_variation10.phpt2 Test strspn() function : usage variations - with varying mask & default start and len args
H A Ducfirst.phpt111 /* More than expected no. of args */
H A Dprintf_variation1.phpt5 /* Prototype : int printf ( string $format [, mixed $args [, mixed $... ]] )
H A Dlcfirst.phpt140 /* More than expected no. of args */
/PHP-7.4/ext/standard/tests/array/
H A Deach.phpt87 var_dump( each() ); // args = 0
88 var_dump( each($null_array, $null_array) ); // args > expected
H A Darray_slice.phpt23 /* Zero args */
27 /* Single args */
31 /* More than valid no. of args (ie. >4 ) */
H A Dcount_recursive.phpt116 var_dump( count() ); // No. of args = 0
117 var_dump( count(array(), COUNT_NORMAL, 100) ); // No. of args > expected
/PHP-7.4/ext/gd/libgd/
H A Dgd.c99 void gd_stderr_error(int priority, const char *format, va_list args) in gd_stderr_error() argument
120 vfprintf(stderr, format, args); in gd_stderr_error()
129 gd_error_method(priority, format, args); in _gd_error_ex()
135 va_list args; in gd_error() local
137 va_start(args, format); in gd_error()
138 _gd_error_ex(GD_WARNING, format, args); in gd_error()
139 va_end(args); in gd_error()
143 va_list args; in gd_error_ex() local
145 va_start(args, format); in gd_error_ex()
146 _gd_error_ex(priority, format, args); in gd_error_ex()
[all …]
/PHP-7.4/ext/intl/
H A Dphp_intl.c312 ZEND_ARG_INFO(0, args)
318 ZEND_ARG_INFO(0, args)
357 ZEND_ARG_INFO(0, args)
/PHP-7.4/Zend/
H A Dzend_exceptions.c965 va_list args; in zend_error_va() local
967 va_start(args, format); in zend_error_va()
968 zend_error_cb(type, file, lineno, format, args); in zend_error_va()
969 va_end(args); in zend_error_va()
H A Dzend_execute_API.c897 zval args[1], *zv; in zend_lookup_class_ex() local
982 ZVAL_STRINGL(&args[0], ZSTR_VAL(name) + 1, ZSTR_LEN(name) - 1); in zend_lookup_class_ex()
984 ZVAL_STR_COPY(&args[0], name); in zend_lookup_class_ex()
991 fcall_info.params = args; in zend_lookup_class_ex()
1008 zval_ptr_dtor(&args[0]); in zend_lookup_class_ex()
/PHP-7.4/ext/spl/
H A Dspl_iterators.c2232 zval args[5]; in SPL_METHOD() local
2234 ZVAL_COPY(&args[0], &retval); in SPL_METHOD()
2235 ZVAL_STR_COPY(&args[1], intern->u.regex.regex); in SPL_METHOD()
2236 ZVAL_LONG(&args[2], intern->u.regex.mode); in SPL_METHOD()
2237 ZVAL_LONG(&args[3], intern->u.regex.flags); in SPL_METHOD()
2238 ZVAL_LONG(&args[4], intern->u.regex.preg_flags); in SPL_METHOD()
2242 zval_ptr_dtor(&args[0]); in SPL_METHOD()
2243 zval_ptr_dtor(&args[1]); in SPL_METHOD()
3609 zval *args; member
3635 apply_info.args = NULL; in PHP_FUNCTION()
[all …]
/PHP-7.4/Zend/tests/
H A D019.phpt73 // isset() with two args, one arg only unset, expected: bool(false)
76 // isset() with two args, both args already unset, expected: bool(false);
127 // calling isset with more args
169 // call isset() with two args, both set
180 // call isset() with two args, but one set
184 // now the isset() with both the args as unset
/PHP-7.4/ext/ftp/
H A Dftp.c78 const char *args,
1275 ftp_putcmd(ftpbuf_t *ftp, const char *cmd, const size_t cmd_len, const char *args, const size_t arg… in ftp_putcmd() argument
1284 if (args && args[0]) { in ftp_putcmd()
1289 if (strpbrk(args, "\r\n")) { in ftp_putcmd()
1292 size = slprintf(ftp->outbuf, sizeof(ftp->outbuf), "%s %s\r\n", cmd, args); in ftp_putcmd()
/PHP-7.4/main/
H A Dphp.h339 …t char *docref, const char *params, int type, const char *format, va_list args) PHP_ATTRIBUTE_FORM…
/PHP-7.4/ext/soap/
H A Dsoap.c172 va_copy(copy, args); \
298 ZEND_ARG_VARIADIC_INFO(0, args)
2138 va_copy(argcopy, args);
2158 call_old_error_handler(error_num, error_filename, error_lineno, format, args);
2192 va_copy(argcopy, args);
2216 call_old_error_handler(error_num, error_filename, error_lineno, format, args);
2239 call_old_error_handler(error_num, error_filename, error_lineno, format, args);
2241 soap_real_error_handler(error_num, error_filename, error_lineno, format, args);
2829 zval *args; local
2897 arg_count = zend_hash_num_elements(Z_ARRVAL_P(args));
[all …]
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_main.c426 va_list args; in fpm_fcgi_log() local
427 va_start(args, fmt); in fpm_fcgi_log()
428 vzlog("", 0, type, fmt, args); in fpm_fcgi_log()
429 va_end(args); in fpm_fcgi_log()
/PHP-7.4/build/
H A Dltmain.sh711 args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
714 for arg in $args; do
1794 args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
1797 for flag in $args; do
1812 args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
1815 for flag in $args; do
6477 args=
6498 args="$args \"$file\""
6516 exec_cmd="\$cmd$args"
6523 $echo "$cmd$args"

Completed in 136 milliseconds

1...<<11121314151617181920>>...23