Home
last modified time | relevance | path

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

1...<<11121314151617181920>>...24

/PHP-5.6/sapi/fpm/fpm/
H A Dfpm_conf.c1237 static void fpm_conf_cleanup(int which, void *arg) /* {{{ */ in fpm_conf_cleanup() argument
1252 static void fpm_conf_ini_parser_include(char *inc, void *arg TSRMLS_DC) /* {{{ */ in fpm_conf_ini_parser_include()
1255 int *error = (int *)arg;; in fpm_conf_ini_parser_include()
1261 if (!inc || !arg) return; in fpm_conf_ini_parser_include()
1308 static void fpm_conf_ini_parser_section(zval *section, void *arg TSRMLS_DC) /* {{{ */ in fpm_conf_ini_parser_section()
1312 int *error = (int *)arg; in fpm_conf_ini_parser_section()
1346 static void fpm_conf_ini_parser_entry(zval *name, zval *value, void *arg TSRMLS_DC) /* {{{ */ in fpm_conf_ini_parser_entry()
1351 int *error = (int *)arg; in fpm_conf_ini_parser_entry()
1405 int *error = (int *)arg; in fpm_conf_ini_parser_array()
1463 if (!arg1 || !arg) return; in fpm_conf_ini_parser()
[all …]
H A Dfpm_systemd.c48 void fpm_systemd_heartbeat(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_systemd_heartbeat() argument
/PHP-5.6/ext/mbstring/tests/
H A Dmb_ereg_variation2.phpt2 Test mb_ereg() function : usage variations - pass different data types to $string arg
16 * Test behaviour of mb_ereg() when passed different data types as $string arg
H A Dmb_stripos_variation2.phpt2 Test mb_stripos() function : usage variations - pass different data types as $needle arg
17 * Pass mb_stripos different data types as $needle arg to test behaviour
H A Dmb_strpos_variation2.phpt2 Test mb_strpos() function : usage variations - pass different data types as $needle arg
16 * Pass mb_strpos different data types as $needle arg to test behaviour
H A Dmb_convert_encoding_variation1.phpt2 …t mb_convert_encoding() function : usage variations - pass different data types as $to_encoding arg
17 * Pass different data types to $to_encoding arg to test behaviour of mb_convert_encoding
/PHP-5.6/ext/soap/tests/interop/Round4/GroupH/
H A Dr4_groupH_complex_rpcenc_005w.phpt23 $s1 = new SOAPStruct('arg',34,325.325);
34 …chFault><param1 xsi:type="ns2:SOAPStruct"><varString xsi:type="xsd:string">arg</varString><varInt …
/PHP-5.6/ext/standard/tests/strings/
H A Dquoted_printable_decode_variation1.phpt17 $arg1 = "second arg";
18 $arg2 = "third arg";
/PHP-5.6/ext/standard/tests/math/
H A Dlog1p_variation1.phpt2 Test log1p() function : usage variations - different data types as $arg argument
7 /* Prototype : float log1p ( float $arg )
H A Dexpm1_basic.phpt7 /* Prototype : float expm1 ( float $arg )
H A Dexpm1_error.phpt5 /* Prototype : float expm1 ( float $arg )
H A Dlog1p_error.phpt5 /* Prototype : float log1p ( float $arg )
H A Ddecbin_error.phpt11 /* Prototype : float expm1 ( float $arg )
/PHP-5.6/ext/imap/
H A Dphp_imap.c638 if (Z_TYPE_P(arg) == IS_OBJECT) { in add_assoc_object()
639 symtable = Z_OBJPROP_P(arg); in add_assoc_object()
641 symtable = Z_ARRVAL_P(arg); in add_assoc_object()
653 if (Z_TYPE_P(arg) == IS_OBJECT) { in add_next_index_object()
654 symtable = Z_OBJPROP_P(arg); in add_next_index_object()
656 symtable = Z_ARRVAL_P(arg); in add_next_index_object()
2766 char *arg; in PHP_FUNCTION() local
2783 in = (const unsigned char *) arg; in PHP_FUNCTION()
2905 char *arg; in PHP_FUNCTION() local
2922 in = (const unsigned char *) arg; in PHP_FUNCTION()
[all …]
/PHP-5.6/ext/pdo_firebird/
H A Dfirebird_driver.c535 static void firebird_info_cb(void *arg, char const *s) /* {{{ */ in firebird_info_cb() argument
537 if (arg) { in firebird_info_cb()
538 if (*(char*)arg) { /* second call */ in firebird_info_cb()
539 strcat(arg, " "); in firebird_info_cb()
541 strcat(arg, s); in firebird_info_cb()
/PHP-5.6/ext/intl/tests/
H A Dbreakiter_getLocale_error.phpt2 IntlBreakIterator::getLocale(): arg errors
/PHP-5.6/ext/standard/tests/class_object/
H A Dis_subclass_of_variation_004.phpt2 …s_subclass_of() function : usage variations - unexpected type for arg 1 with valid class in arg 2.
H A Dget_object_vars_basic_002.phpt2 get_object_vars(): visibility from non static methods (target object passed as arg)
/PHP-5.6/sapi/apache2filter/
H A Dapache_config.c111 static const char *php_apache_phpini_set(cmd_parms *cmd, void *mconfig, const char *arg) in php_apache_phpini_set() argument
116 apache2_php_ini_path_override = ap_server_root_relative(cmd->pool, arg); in php_apache_phpini_set()
/PHP-5.6/ext/pcre/tests/
H A Dpreg_quote_error1.phpt2 Test preg_quote() function : error conditions - wrong arg types
H A Dpreg_split_error2.phpt2 Test preg_split() function : error conditions - wrong arg types
/PHP-5.6/Zend/
H A Dzend_execute.c624 static inline int zend_verify_arg_type(zend_function *zf, zend_uint arg_num, zval *arg, ulong fetch… in zend_verify_arg_type() argument
645 if (!arg) { in zend_verify_arg_type()
649 if (Z_TYPE_P(arg) == IS_OBJECT) { in zend_verify_arg_type()
651 if (!ce || !instanceof_function(Z_OBJCE_P(arg), ce TSRMLS_CC)) { in zend_verify_arg_type()
654 …} else if (Z_TYPE_P(arg) != IS_NULL || !(cur_arg_info->allow_null || (default_value && is_null_con… in zend_verify_arg_type()
656 …or(E_RECOVERABLE_ERROR, zf, arg_num, need_msg, class_name, zend_zval_type_name(arg), "" TSRMLS_CC); in zend_verify_arg_type()
661 if (!arg) { in zend_verify_arg_type()
665 …if (Z_TYPE_P(arg) != IS_ARRAY && (Z_TYPE_P(arg) != IS_NULL || !(cur_arg_info->allow_null || (defau… in zend_verify_arg_type()
671 if (!arg) { in zend_verify_arg_type()
674 …if (!zend_is_callable(arg, IS_CALLABLE_CHECK_SILENT, NULL TSRMLS_CC) && (Z_TYPE_P(arg) != IS_NULL … in zend_verify_arg_type()
[all …]
/PHP-5.6/ext/standard/tests/dir/
H A Dscandir_variation9.phpt2 Test scandir() function : usage variations - different ints as $sorting_order arg
/PHP-5.6/ext/standard/tests/array/
H A Darray_fill_variation2.phpt83 echo "--- Testing array_fill() with different values for 'num' arg ---\n";
99 --- Testing array_fill() with different values for 'num' arg ---
/PHP-5.6/ext/iconv/tests/
H A Diconv_strpos_variation3_64bit.phpt2 Test iconv_strpos() function : usage variations - pass different data types as $offset arg
17 * Pass iconv_strpos different data types as $offset arg to test behaviour

Completed in 54 milliseconds

1...<<11121314151617181920>>...24