Home
last modified time | relevance | path

Searched refs:arg (Results 526 – 550 of 583) sorted by relevance

1...<<21222324

/PHP-7.3/ext/libxml/
H A Dlibxml.c961 zval *arg; in PHP_FUNCTION() local
964 Z_PARAM_RESOURCE(arg) in PHP_FUNCTION()
971 ZVAL_COPY(&LIBXML(stream_context), arg); in PHP_FUNCTION()
/PHP-7.3/ext/interbase/
H A Dibase_query.c1203 zval *arg = NULL; in PHP_FUNCTION() local
1207 if (zend_parse_parameters(ZEND_NUM_ARGS(), "|r", &arg) == FAILURE) { in PHP_FUNCTION()
1211 if (!arg) { in PHP_FUNCTION()
1219 _php_ibase_get_link_trans(INTERNAL_FUNCTION_PARAM_PASSTHRU, arg, &ib_link, &trans); in PHP_FUNCTION()
1221 ib_link = (ibase_db_link *)zend_fetch_resource2_ex(arg, LE_LINK, le_link, le_plink); in PHP_FUNCTION()
/PHP-7.3/ext/oci8/
H A Doci8_interface.c1708 zval *arg = NULL; in PHP_FUNCTION() local
1719 Z_PARAM_RESOURCE(arg) in PHP_FUNCTION()
1723 statement = (php_oci_statement *) zend_fetch_resource_ex(arg, NULL, le_statement); in PHP_FUNCTION()
1734 connection = (php_oci_connection *) zend_fetch_resource_ex(arg, NULL, le_connection); in PHP_FUNCTION()
1741 connection = (php_oci_connection *) zend_fetch_resource_ex(arg, NULL, le_pconnection); in PHP_FUNCTION()
/PHP-7.3/Zend/
H A Dzend_vm_execute.h1247 zval *arg; local
1254 ZVAL_UNDEF(arg);
1272 zval *arg, *top; local
1481 arg = Z_REFVAL_P(arg);
1508 arg = Z_REFVAL_P(arg);
2965 zval *value, *arg; local
2973 Z_ADDREF_P(arg);
2982 zval *value, *arg; local
20628 ZVAL_NULL(arg);
20802 ZVAL_NULL(arg);
[all …]
H A Dzend_virtual_cwd.c1686 va_list arg; in virtual_open() local
1688 va_start(arg, flags); in virtual_open()
1689 mode = (mode_t) va_arg(arg, int); in virtual_open()
1690 va_end(arg); in virtual_open()
/PHP-7.3/ext/standard/tests/dir/
H A Dopendir_variation2-win32-mb.phpt2 Test opendir() function : usage variations - different data types as $context arg
H A Dopendir_variation2.phpt2 Test opendir() function : usage variations - different data types as $context arg
H A Dscandir_variation3-win32-mb.phpt2 Test scandir() function : usage variations - diff data types as $context arg
H A Dscandir_variation1.phpt2 Test scandir() function : usage variations - different data types as $dir arg
/PHP-7.3/ext/standard/tests/array/
H A Dcount_variation1.phpt2 Test count() function : usage variations - Pass different data types as $var arg
H A Darray_slice.phpt35 /* Scalar arg */
39 /* String arg */
H A Dusort_variation2.phpt2 Test usort() function : usage variations - Pass different data types as $cmp_function arg
/PHP-7.3/ext/imap/tests/
H A Dimap_fetchheader_variation1.phpt2 Test imap_fetchheader() function : usage variations - diff data types as $stream_id arg
H A Dimap_fetchheader_variation2.phpt2 Test imap_fetchheader() function : usage variations - diff data types for $msg_no arg
H A Dimap_fetch_overview_variation1.phpt2 Test imap_fetch_overview() function : usage variations - diff data types as $stream_id arg
/PHP-7.3/
H A Dserver-tests.php614 foreach ($this->xargs as $arg=>$arg_info) {
615 $usage .= sprintf(" -%s %-12s %s\n",$arg,$arg_info[1],$arg_info[3]);
693 foreach ($this->xargs as $arg=>$arg_info) {
H A Dacinclude.m4329 dnl PHP_CHECK_GCC_ARG(arg, action-if-found, action-if-not-found)
694 dnl PHP_ARG_WITH(arg-name, check message, help text[, default-val[, extension-or-not]])
719 dnl PHP_ARG_ENABLE(arg-name, check message, help text[, default-val[, extension-or-not]])
2754 for arg in $ac_configure_args; do
2755 case $arg in
2757 arg_name="`echo [$]arg | $SED -e 's/--with-/with-/g' -e 's/=.*//g'`"
2760 arg_name="`echo [$]arg | $SED -e 's/--without-/with-/g' -e 's/=.*//g'`"
2763 arg_name="`echo [$]arg | $SED -e 's/--enable-/enable-/g' -e 's/=.*//g'`"
2766 arg_name="`echo [$]arg | $SED -e 's/--disable-/enable-/g' -e 's/=.*//g'`"
2798 [$]arg"
H A DREADME.GIT-RULES119 hasn't noticed that the 'arg' variable no longer is available.
/PHP-7.3/main/
H A Dfastcgi.c403 static void fcgi_hash_apply(fcgi_hash *h, fcgi_apply_func func, void *arg) in fcgi_hash_apply() argument
409 func(p->var, p->var_len, p->val, p->val_len, arg); in fcgi_hash_apply()
417 static DWORD WINAPI fcgi_shutdown_thread(LPVOID arg) in fcgi_shutdown_thread() argument
419 HANDLE shutdown_event = (HANDLE) arg; in fcgi_shutdown_thread()
/PHP-7.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativeX86_common.c1377 #define BINARY_IMM(op_imm, op_mr, immw, arg, argw) \ argument
1379 inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, immw, arg, argw); \
1384 FAIL_IF(emit_load_imm64(compiler, (arg == TMP_REG1) ? TMP_REG2 : TMP_REG1, immw)); \
1385 inst = emit_x86_instruction(compiler, 1, (arg == TMP_REG1) ? TMP_REG2 : TMP_REG1, 0, arg, argw); \
1395 #define BINARY_IMM(op_imm, op_mr, immw, arg, argw) \ argument
1396 inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, immw, arg, argw); \
/PHP-7.3/ext/openssl/
H A Dxp_ssl.c606 static int php_openssl_win_cert_verify_callback(X509_STORE_CTX *x509_store_ctx, void *arg) /* {{{ */ in php_openssl_win_cert_verify_callback() argument
622 stream = (php_stream*)arg; in php_openssl_win_cert_verify_callback()
1342 static int php_openssl_server_sni_callback(SSL *ssl_handle, int *al, void *arg) /* {{{ */ in php_openssl_server_sni_callback() argument
1578 const unsigned char *in, unsigned int inlen, void *arg) /* {{{ */ in php_openssl_server_alpn_callback() argument
1580 php_openssl_netstream_data_t *sslsock = arg; in php_openssl_server_alpn_callback()
/PHP-7.3/ext/phar/
H A Dzip.c789 static int phar_zip_changed_apply_int(phar_entry_info *entry, void *arg) /* {{{ */ in phar_zip_changed_apply_int() argument
798 p = (struct _phar_zip_pass*) arg; in phar_zip_changed_apply_int()
1099 static int phar_zip_changed_apply(zval *zv, void *arg) /* {{{ */ in phar_zip_changed_apply() argument
1101 return phar_zip_changed_apply_int(Z_PTR_P(zv), arg); in phar_zip_changed_apply()
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_sockets.c42 static void fpm_sockets_cleanup(int which, void *arg) /* {{{ */ in fpm_sockets_cleanup() argument
/PHP-7.3/ext/mbstring/oniguruma/src/
H A Dregparse.h439 extern void onig_scan_env_set_error_string P_((ScanEnv* env, int ecode, UChar* arg, UChar* arg_en…
/PHP-7.3/ext/fileinfo/
H A Dfileinfo.c114 ZEND_ARG_INFO(0, arg)

Completed in 302 milliseconds

1...<<21222324