Home
last modified time | relevance | path

Searched refs:arg (Results 251 – 275 of 421) sorted by relevance

1...<<11121314151617

/PHP-7.4/ext/fileinfo/tests/
H A Dfinfo_open_basic.phpt7 /* Prototype : resource finfo_open([int options [, string arg]])
/PHP-7.4/ext/pcre/tests/
H A Dpreg_match_error2.phpt2 Test preg_match() function : error conditions - wrong arg types
H A Dpreg_replace_error2.phpt2 Test preg_replace() function : error conditions - wrong arg types
H A Dpreg_match_all_error2.phpt2 Test preg_match_all() function : error conditions - wrong arg types
/PHP-7.4/ext/imap/tests/
H A Dimap_fetchbody_variation5.phpt2 Test imap_fetchbody() function : usage variation - different resources as $stream_id arg
/PHP-7.4/ext/intl/tests/
H A Dtransliterator_transliterate_variant1.phpt2 transliterator_transliterate (variant 1, non-transliterator 1st arg)
H A Dbreakiter___construct_error.phpt2 IntlRuleBasedBreakIterator::__construct(): arg errors
/PHP-7.4/sapi/apache2handler/
H A Dapache_config.c109 static const char *php_apache_phpini_set(cmd_parms *cmd, void *mconfig, const char *arg) in php_apache_phpini_set() argument
114 apache2_php_ini_path_override = ap_server_root_relative(cmd->pool, arg); in php_apache_phpini_set()
/PHP-7.4/ext/com_dotnet/
H A Dcom_com.c569 zval *arg = &args[nargs - i - 1]; in php_com_do_invoke_byref() local
571 ZVAL_DEREF(arg); in php_com_do_invoke_byref()
572 zval_ptr_dtor(arg); in php_com_do_invoke_byref()
573 ZVAL_NULL(arg); in php_com_do_invoke_byref()
581 php_com_zval_from_variant(arg, &byref_vals[j], obj->code_page); in php_com_do_invoke_byref()
586 php_com_zval_from_variant(arg, &vargs[i], obj->code_page); in php_com_do_invoke_byref()
H A Dcom_wrapper.c267 VARIANT *arg; in disp_invokeex() local
269 arg = &pdp->rgvarg[ pdp->cArgs - 1 - i]; in disp_invokeex()
271 trace("alloc zval for arg %d VT=%08x\n", i, V_VT(arg)); in disp_invokeex()
273 php_com_wrap_variant(&params[i], arg, COMG(code_page)); in disp_invokeex()
/PHP-7.4/ext/soap/tests/interop/Round4/GroupI/
H A Dr4_groupI_xsd_020w.phpt17 $struct = new SOAPComplexType('arg',34,325.325);
H A Dr4_groupI_xsd_009w.phpt17 $struct = new SOAPComplexType('arg',34,325.325);
/PHP-7.4/ext/standard/tests/dir/
H A Dscandir_variation9-win32-mb.phpt2 Test scandir() function : usage variations - different ints as $sorting_order arg
/PHP-7.4/ext/reflection/tests/
H A DReflectionParameter_001.phpt18 echo "No arg function\n";
H A DReflectionParameter_canBePassedByValue.phpt58 Name: arg
/PHP-7.4/tests/output/
H A Dob_start_error_001.phpt2 Test wrong number of arguments and wrong arg types for ob_start()
H A Dob_start_error_002.phpt2 Test wrong number of arguments and wrong arg types for ob_start()
/PHP-7.4/Zend/tests/
H A Dbug31683.phpt20 function __call($test, $arg) {
/PHP-7.4/ext/dom/
H A Dnamednodemap.c34 ZEND_ARG_OBJ_INFO(0, arg, DOMNode, 0)
51 ZEND_ARG_OBJ_INFO(0, arg, DOMNode, 0)
/PHP-7.4/ext/ffi/
H A Dffi.c1586 if (Z_TYPE_P(arg) == IS_OBJECT && Z_OBJCE_P(arg) == zend_ffi_cdata_ce) { in zend_ffi_pass_incompatible()
1613 if (Z_TYPE_P(arg) == IS_OBJECT && Z_OBJCE_P(arg) == zend_ffi_cdata_ce) { in zend_ffi_assign_incompatible()
2448 ZVAL_DEREF(arg); in zend_ffi_pass_arg()
2566 && Z_TYPE_P(arg) == IS_OBJECT && Z_OBJCE_P(arg) == zend_ffi_cdata_ce) { in zend_ffi_pass_arg()
2591 ZVAL_DEREF(arg); in zend_ffi_pass_var_arg()
3784 zval *zv, *arg; in ZEND_METHOD() local
3797 arg = zv; in ZEND_METHOD()
4014 zval *zv, *arg; in ZEND_METHOD() local
4023 arg = zv; in ZEND_METHOD()
4136 zval *zv, *arg; in ZEND_METHOD() local
[all …]
/PHP-7.4/main/
H A Dphp_ini.c321 static void php_load_php_extension_cb(void *arg) in php_load_php_extension_cb() argument
324 php_load_extension(*((char **) arg), MODULE_PERSISTENT, 0); in php_load_php_extension_cb()
332 static void php_load_zend_extension_cb(void *arg) in php_load_zend_extension_cb() argument
334 char *filename = *((char **) arg); in php_load_zend_extension_cb()
409 static void php_load_zend_extension_cb(void *arg) { } in php_load_zend_extension_cb() argument
/PHP-7.4/ext/date/lib/
H A Dparse_iso_intervals.re152 #define timelib_split_free(arg) { \
154 for (i = 0; i < arg.c; i++) { \
155 timelib_free(arg.v[i]); \
157 if (arg.v) { \
158 timelib_free(arg.v); \
/PHP-7.4/ext/hash/
H A Dhash_md.c109 char *arg; in PHP_NAMED_FUNCTION() local
115 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s|b", &arg, &arg_len, &raw_output) == FAILURE) { in PHP_NAMED_FUNCTION()
120 PHP_MD5Update(&context, arg, arg_len); in PHP_NAMED_FUNCTION()
136 char *arg; in PHP_NAMED_FUNCTION() local
145 if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|b", &arg, &arg_len, &raw_output) == FAILURE) { in PHP_NAMED_FUNCTION()
149 stream = php_stream_open_wrapper(arg, "rb", REPORT_ERRORS, NULL); in PHP_NAMED_FUNCTION()
/PHP-7.4/ext/standard/
H A Durl_scanner_ex.re299 /* arg.s is string WITHOUT NUL.
301 ZSTR_VAL(ctx->arg.s)[ZSTR_LEN(ctx->arg.s)] = '\0';
302 if (!strcasecmp(ZSTR_VAL(ctx->arg.s), ctx->lookup_data)) {
475 if (ctx->arg.s) {
476 ZSTR_LEN(ctx->arg.s) = 0;
478 smart_str_appendl(&ctx->arg, start, YYCURSOR - start);
480 strncasecmp(ZSTR_VAL(ctx->arg.s), "action", ZSTR_LEN(ctx->arg.s)) == 0) {
677 smart_str_free(&ctx->arg);
/PHP-7.4/ext/pdo_mysql/tests/
H A Dbug46292.phpt2 Bug #46292 (PDO::setFetchMode() shouldn't requires the 2nd arg when using FETCH_CLASSTYPE)

Completed in 73 milliseconds

1...<<11121314151617