Home
last modified time | relevance | path

Searched refs:args (Results 1 – 25 of 587) sorted by relevance

12345678910>>...24

/PHP-5.5/ext/bcmath/libbcmath/src/
H A Drt.c44 va_list args; in bc_rt_warn() local
47 va_start (args, mesg); in bc_rt_warn()
48 vsnprintf (error_mesg, sizeof(error_mesg), mesg, args); in bc_rt_warn()
49 va_end (args); in bc_rt_warn()
57 va_list args; in bc_rt_error() local
60 va_start (args, mesg); in bc_rt_error()
61 vsnprintf (error_mesg, sizeof(error_mesg), mesg, args); in bc_rt_error()
62 va_end (args); in bc_rt_error()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug40398.phpt18 $args = func_get_args();
19 call_user_func_array(array($this, 'Base::__construct'), $args);
27 $args = func_get_args();
36 $args = func_get_args();
37 call_user_func_array('Base::__construct', $args);
45 $args = func_get_args();
46 call_user_func_array('parent::__construct', $args);
54 $args = func_get_args();
55 call_user_func_array(array('Base', '__construct'), $args);
63 $args = func_get_args();
[all …]
/PHP-5.5/ext/interbase/
H A Dibase_events.c127 zval ***args; in PHP_FUNCTION() local
147 efree(args); in PHP_FUNCTION()
153 efree(args); in PHP_FUNCTION()
157 efree(args); in PHP_FUNCTION()
174 efree(args); in PHP_FUNCTION()
184 efree(args); in PHP_FUNCTION()
192 efree(args); in PHP_FUNCTION()
292 efree(args); in PHP_FUNCTION()
329 efree(args); in PHP_FUNCTION()
363 efree(args); in PHP_FUNCTION()
[all …]
H A Dphp_ibase_udf.c205 INIT_ZVAL(args[i]); in call_php()
206 argp[i] = &args[i]; in call_php()
357 PARAMDSC *args[1] = { arg1 }; in udf_call_php1() local
358 call_php(name, r, 1, args); in udf_call_php1()
364 call_php(name, r, 2, args); in udf_call_php2()
370 call_php(name, r, 3, args); in udf_call_php3()
377 call_php(name, r, 4, args); in udf_call_php4()
384 call_php(name, r, 5, args); in udf_call_php5()
391 call_php(name, r, 6, args); in udf_call_php6()
398 call_php(name, r, 7, args); in udf_call_php7()
[all …]
/PHP-5.5/ext/session/
H A Dmod_user.c81 zval *args[2]; in PS_OPEN_FUNC() local
91 SESS_ZVAL_STRING((char*)save_path, args[0]); in PS_OPEN_FUNC()
92 SESS_ZVAL_STRING((char*)session_name, args[1]); in PS_OPEN_FUNC()
130 zval *args[1]; in PS_READ_FUNC() local
133 SESS_ZVAL_STRING((char*)key, args[0]); in PS_READ_FUNC()
151 zval *args[2]; in PS_WRITE_FUNC() local
154 SESS_ZVAL_STRING((char*)key, args[0]); in PS_WRITE_FUNC()
164 zval *args[1]; in PS_DESTROY_FUNC() local
167 SESS_ZVAL_STRING((char*)key, args[0]); in PS_DESTROY_FUNC()
176 zval *args[1]; in PS_GC_FUNC() local
[all …]
/PHP-5.5/Zend/tests/
H A Ddebug_backtrace_limit.phpt30 [args] => Array
44 [args] => Array
55 [args] => Array
69 [args] => Array
80 [args] => Array
91 [args] => Array
105 [args] => Array
116 [args] => Array
127 [args] => Array
H A Dbug28377.phpt2 Bug #28377 (debug_backtrace is intermittently passing args)
14 echo $traceName ." -- args: ";
15 echo isset($btInfo[0]['args']) ? count($btInfo[0]['args']) : 'does not exist';
22 dereferenced -- args: 2
23 direct -- args: 2
H A Dlsb_022.phpt9 static function __callstatic($name, $args) {
17 static function __callstatic($name, $args) {
18 parent::__callstatic($name, $args);
19 call_user_func_array("parent::__callstatic", array($name, $args));
21 call_user_func_array("parent::foo", $args);
22 call_user_func_array(array("parent","foo"), $args);
H A Dbug50383.phpt7 public static function __callStatic($method, $args) {
10 public function __call($method, $args) {
49 [args] => Array
67 [args] => Array
78 [args] => Array
95 [args] => Array
113 [args] => Array
124 [args] => Array
H A Dbug50394.phpt8 function __call( $name, $args ) {
10 call_user_func_array( 'inc', $args );
15 $args = array( &$arg );
17 call_user_func_array( array( $proxy, 'bar' ), $args );
H A Ddebug_backtrace_options.phpt79 [args] => Array
90 [args] => Array
110 [args] => Array
125 [args] => Array
142 [args] => Array
154 [args] => Array
174 [args] => Array
189 [args] => Array
206 [args] => Array
218 [args] => Array
[all …]
H A Dbug52939.phpt10 $args = array(&$ar1);
11 var_dump(call_user_func_array("array_multisort", $args));
15 $args = array($ar1);
16 var_dump(call_user_func_array("array_multisort", $args));
/PHP-5.5/ext/intl/doc/
H A Dmsgfmt_api.php33 * @param array $args arguments to insert into the pattern string
36 public function format($args) {} argument
56 * @param array $args the array of values to insert into $pattern
59 public static function formatMessage($locale, $pattern, $args) {} argument
126 * @param array $args arguments to insert into the pattern string
129 function msgfmt_format($fmt, $args) {} argument
150 * @param array $args the array of values to insert into $pattern
153 function msgfmt_format_message($locale, $pattern, $args) {} argument
/PHP-5.5/ext/spl/tests/
H A DarrayObject_getIteratorClass_basic1.phpt8 $args = func_get_args();
9 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
13 $args = func_get_args();
14 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
19 $args = func_get_args();
20 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
25 $args = func_get_args();
26 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
31 $args = func_get_args();
32 echo " In " . __METHOD__ . "(" . implode($args, ',') . ")\n";
[all …]
/PHP-5.5/Zend/
H A Dzend_sprintf.c33 va_list args; in zend_sprintf() local
35 va_start(args, format); in zend_sprintf()
36 vsprintf(buffer, format, args); in zend_sprintf()
37 va_end(args); in zend_sprintf()
/PHP-5.5/main/
H A Dphp_sprintf.c33 va_list args; in php_sprintf() local
36 va_start (args, format); in php_sprintf()
38 ret = vsprintf (s, format, args); in php_sprintf()
39 va_end (args); in php_sprintf()
/PHP-5.5/ext/filter/
H A Dcallback_filter.c26 zval ***args; in php_filter_callback() local
36 args = safe_emalloc(sizeof(zval **), 1, 0); in php_filter_callback()
37 args[0] = &value; in php_filter_callback()
39 …status = call_user_function_ex(EG(function_table), NULL, option_array, &retval_ptr, 1, args, 0, NU… in php_filter_callback()
53 efree(args); in php_filter_callback()
/PHP-5.5/ext/standard/tests/file/
H A Dbug22414.phpt10 $args = ' -n -dsafe_mode=off ';
13 passthru($php . $args . ' -r " echo \"HELLO\"; "');
20 $cmd = $php . $args . ' -r \"readfile(@getenv(\'TEST_PHP_EXECUTABLE\')); \"';
21 $cmd = $php . $args . ' -r \' passthru("'.$cmd.'"); \' > '.$tmpfile ;
23 $cmd = $php . $args . ' -r \"readfile(@getenv(\\\\\\"TEST_PHP_EXECUTABLE\\\\\\")); \"';
24 $cmd = $php . $args . ' -r " passthru(\''.$cmd.'\');" > '.$tmpfile ;
/PHP-5.5/ext/intl/msgformat/
H A Dmsgformat_format.c35 static void msgfmt_do_format(MessageFormatter_object *mfo, zval *args, zval *return_value TSRMLS_DC) in msgfmt_do_format() argument
42 count = zend_hash_num_elements(Z_ARRVAL_P(args)); in msgfmt_do_format()
46 zend_hash_copy(args_copy, Z_ARRVAL_P(args), (copy_ctor_func_t)zval_add_ref, in msgfmt_do_format()
73 zval *args; in PHP_FUNCTION() local
79 &object, MessageFormatter_ce_ptr, &args ) == FAILURE ) in PHP_FUNCTION()
90 msgfmt_do_format(mfo, args, return_value TSRMLS_CC); in PHP_FUNCTION()
101 zval *args; in PHP_FUNCTION() local
113 &slocale, &slocale_len, &pattern, &pattern_len, &args ) == FAILURE ) in PHP_FUNCTION()
155 msgfmt_do_format(mfo, args, return_value TSRMLS_CC); in PHP_FUNCTION()
/PHP-5.5/ext/mysqli/
H A Dmysqli_embedded.c36 zval *args; in PHP_FUNCTION() local
45 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "laa", &start, &args, &grps) == FAILURE) { in PHP_FUNCTION()
54 if ((argc = zend_hash_num_elements(HASH_OF(args)))) { in PHP_FUNCTION()
58 zend_hash_internal_pointer_reset_ex(HASH_OF(args), &pos); in PHP_FUNCTION()
60 for (index = 0;; zend_hash_move_forward_ex(HASH_OF(args), &pos)) { in PHP_FUNCTION()
63 if (zend_hash_get_current_data_ex(HASH_OF(args), (void **) &item, &pos) == FAILURE) { in PHP_FUNCTION()
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg1.phpt16 foreach ($a as $args) {
17 var_dump(mb_ereg($args[0], $args[1], $args[2]));
18 var_dump($args);
/PHP-5.5/sapi/milter/
H A Dmilter.php59 function milter_envfrom($args) argument
62 foreach ($args as $ix => $arg) {
71 function milter_envrcpt($args) argument
74 foreach ($args as $ix => $arg) {
/PHP-5.5/ext/standard/
H A Dassert.c209 MAKE_STD_ZVAL(args[0]); in PHP_FUNCTION()
210 MAKE_STD_ZVAL(args[1]); in PHP_FUNCTION()
211 MAKE_STD_ZVAL(args[2]); in PHP_FUNCTION()
213 ZVAL_STRING(args[0], SAFE_STRING(filename), 1); in PHP_FUNCTION()
214 ZVAL_LONG (args[1], lineno); in PHP_FUNCTION()
215 ZVAL_STRING(args[2], SAFE_STRING(myeval), 1); in PHP_FUNCTION()
224 zval_ptr_dtor(&(args[i])); in PHP_FUNCTION()
227 MAKE_STD_ZVAL(args[3]); in PHP_FUNCTION()
228 ZVAL_STRINGL(args[3], SAFE_STRING(description), description_len, 1); in PHP_FUNCTION()
232 zval_ptr_dtor(&(args[i])); in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/intl/tests/
H A Dsymfony_format_type_int32_intl2.phpt8 // StubNumberFormatterTest#testFormatTypeInt32Intl is tested many times, each with different args.
9 // there are 7 sets of args that crash PHP (and other args that don't), each of those 7 is now a se…
10 // to ensure that each of the 7 args are always tested.
12 // PHP Unit's code to unserialize data passed as args to #testFormatTypeInt32Intl
/PHP-5.5/ext/pcre/pcrelib/sljit/
H A DsljitNativeX86_32.c77 compiler->args = args; in sljit_emit_enter()
82 size += (args > 0 ? (args * 2) : 0) + (args > 2 ? 2 : 0); in sljit_emit_enter()
84 size += (args > 0 ? (2 + args * 3) : 0); in sljit_emit_enter()
92 if (args > 0) { in sljit_emit_enter()
105 if (args > 0) { in sljit_emit_enter()
109 if (args > 1) { in sljit_emit_enter()
113 if (args > 2) { in sljit_emit_enter()
120 if (args > 0) { in sljit_emit_enter()
125 if (args > 1) { in sljit_emit_enter()
130 if (args > 2) { in sljit_emit_enter()
[all …]

Completed in 88 milliseconds

12345678910>>...24