| /PHP_5_3/ext/bcmath/libbcmath/src/ |
| H A D | rt.c | 44 va_list args; local 47 va_start (args, mesg); 48 vsnprintf (error_mesg, sizeof(error_mesg), mesg, args); 49 va_end (args); 57 va_list args; local 60 va_start (args, mesg); 61 vsnprintf (error_mesg, sizeof(error_mesg), mesg, args); 62 va_end (args);
|
| /PHP_5_3/ext/phar/phar/ |
| H A D | clicommand.inc | 22 protected $args = array(); 41 $this->args = call_user_func(array($this, $this->cmds[$command]['arg'])); 46 if (strlen($argv[$i]) == 2 && isset($this->args[$argv[$i][1]])) { 51 $this->args[$arg]['val'] = $this->checkArgTyp($arg, $i, $argc, $argv); 61 if (isset($this->args[''])) { 63 if (isset($this->args['']['require']) && $this->args['']['require']) { 67 $this->args['']['val'] = array(); 69 $this->args['']['val'][] = $argv[$i++]; 76 foreach($this->args a [all...] |
| H A D | pharcommand.inc | 170 $args = array(); 178 $args[$lkey] = $cfg; 179 $args[$lkey]['required'] = $required; 182 return $args; 454 * @return array $args The arguments for a new Phar archive. 458 $args = self::phar_args('abcFhilpsxy', 'pharnew'); 460 $args[''] = array( 467 return $args; 562 $alias = $this->args['a']['val']; 563 $hashbang = $this->args[' [all...] |
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | zlog.c | 106 va_list args; local 112 va_start(args, fmt); 113 len = vsnprintf(buf, buf_size, fmt, args); 114 va_end(args); 160 va_start(args, fmt); 161 len += vsnprintf(buf + len, buf_size - len, fmt, args); 162 va_end(args);
|
| /PHP_5_3/sapi/milter/ |
| H A D | milter.php | 59 function milter_envfrom($args) 61 milter_log("milter_envfrom(args[])"); 62 foreach ($args as $ix => $arg) { 71 function milter_envrcpt($args) 73 milter_log("milter_envrcpt(args[])"); 74 foreach ($args as $ix => $arg) {
|
| H A D | php_milter.h | 28 void **args; member in struct:__anon529
|
| /PHP_5_3/win32/ |
| H A D | wsyslog.c | 83 va_list args; local 107 va_start(args, message); /* initialize vararg mechanism */ 108 vspprintf(&tmp, 0, message, args); /* build message */ 113 va_end(args);
|
| /PHP_5_3/ext/filter/docs/ |
| H A D | input_get_args.php | 11 $args = array( variable 36 $myinputs = input_get_args($args, INPUT_POST); 38 $myinputs = input_get_args($args, INPUT_DATA, $data);
|
| /PHP_5_3/ext/intl/doc/ |
| H A D | msgfmt_api.php | 33 * @param array $args arguments to insert into the pattern string 36 public function format($args) {} 51 * Inserts the items in $args into $pattern, formatting them 56 * @param array $args the array of values to insert into $pattern 59 public static function formatMessage($locale, $pattern, $args) {} 126 * @param array $args arguments to insert into the pattern string 129 function msgfmt_format($fmt, $args) {} 145 * Inserts the items in $args into $pattern, formatting them 150 * @param array $args the array of values to insert into $pattern 153 function msgfmt_format_message($locale, $pattern, $args) {} [all...] |
| /PHP_5_3/ext/intl/msgformat/ |
| H A D | msgformat_format.c | 35 static void msgfmt_do_format(MessageFormatter_object *mfo, zval *args, zval *return_value TSRMLS_DC) argument 44 count = zend_hash_num_elements(Z_ARRVAL_P(args)); 56 zend_hash_internal_pointer_reset_ex(Z_ARRVAL_P(args), &pos); 59 zend_hash_get_current_data_ex(Z_ARRVAL_P(args), (void **)&val, &pos); 63 zend_hash_move_forward_ex(Z_ARRVAL_P(args), &pos); 83 /* {{{ proto mixed MessageFormatter::format( array $args ) 85 /* {{{ proto mixed msgfmt_format( MessageFormatter $nf, array $args ) 90 zval *args; local 96 &object, MessageFormatter_ce_ptr, &args ) == FAILURE ) 107 msgfmt_do_format(mfo, args, return_valu 118 zval *args; local [all...] |
| H A D | msgformat_helpers.cpp | 58 U_CFUNC void umsg_format_helper(UMessageFormat *fmt, int arg_count, zval **args, UChar **formatted, int *formatted_len, UErrorCode *status TSRMLS_DC) argument 72 convert_to_long_ex(&args[i]); 73 fargs[i].setDate(U_MILLIS_PER_SECOND * (double)Z_LVAL_P(args[i])); 77 convert_to_double_ex(&args[i]); 78 fargs[i].setDouble(Z_DVAL_P(args[i])); 82 convert_to_long_ex(&args[i]); 83 fargs[i].setLong(Z_LVAL_P(args[i])); 87 if(Z_TYPE_P(args[i]) == IS_DOUBLE) { 88 tInt64 = (int64_t)Z_DVAL_P(args[i]); 89 } else if(Z_TYPE_P(args[ 137 umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args, UChar *source, int source_len, UErrorCode *status) argument [all...] |
| H A D | msgformat_helpers.h | 21 void umsg_format_helper(UMessageFormat *fmt, int arg_count, zval **args, 23 void umsg_parse_helper(UMessageFormat *fmt, int *count, zval ***args,
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | st.h | 31 # define _(args) args
|
| /PHP_5_3/ext/dba/ |
| H A D | dba.c | 578 #define FREENOW if(args) efree(args); if(key) efree(key) 609 zval ***args = (zval ***) NULL; local 627 /* we pass additional args to the respective handler */ 628 args = safe_emalloc(ac, sizeof(zval *), 0); 629 if (zend_get_parameters_array_ex(ac, args) != SUCCESS) { 636 convert_to_string_ex(args[i]); 637 keylen += Z_STRLEN_PP(args[i]); 649 memcpy(key+keylen, Z_STRVAL_PP(args[i]), Z_STRLEN_PP(args[ [all...] |
| /PHP_5_3/ext/filter/ |
| H A D | callback_filter.c | 26 zval ***args; local 36 args = safe_emalloc(sizeof(zval **), 1, 0); 37 args[0] = &value; 39 status = call_user_function_ex(EG(function_table), NULL, option_array, &retval_ptr, 1, args, 0, NULL TSRMLS_CC); 53 efree(args);
|
| /PHP_5_3/ext/interbase/ |
| H A D | ibase_events.c | 129 zval ***args; local 143 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &args, &num_args) == FAILURE) { 147 if (Z_TYPE_PP(args[0]) == IS_RESOURCE) { 148 if (!ZEND_FETCH_RESOURCE2_NO_RETURN(ib_link, ibase_db_link *, args[0], -1, "InterBase link", le_link, le_plink)) { 149 efree(args); 155 efree(args); 159 efree(args); 165 convert_to_string_ex(args[i]); 166 events[event_count++] = Z_STRVAL_PP(args[i]); 176 efree(args); 213 zval event_name, link_id, return_value, *args[2]; local 271 zval ***args, **cb_arg; local [all...] |
| H A D | php_ibase_udf.c | 24 * an external function for every combination { output type, #args } that 188 zval callback, args[4], *argp[4], return_value; local 207 INIT_ZVAL(args[i]); 208 argp[i] = &args[i]; 359 PARAMDSC *args[1] = { arg1 }; local 360 call_php(name, r, 1, args); 365 PARAMDSC *args[2] = { arg1, arg2 }; local 366 call_php(name, r, 2, args); 371 PARAMDSC *args[3] = { arg1, arg2, arg3 }; local 372 call_php(name, r, 3, args); 378 PARAMDSC *args[4] = { arg1, arg2, arg3, arg4 }; local 385 PARAMDSC *args[5] = { arg1, arg2, arg3, arg4, arg5 }; local 392 PARAMDSC *args[6] = { arg1, arg2, arg3, arg4, arg5, arg6 }; local 399 PARAMDSC *args[7] = { arg1, arg2, arg3, arg4, arg5, arg6, arg7 }; local 406 PARAMDSC *args[8] = { arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8 }; local [all...] |
| /PHP_5_3/ext/mysqli/ |
| H A D | mysqli_embedded.c | 36 zval *args; local 45 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "laa", &start, &args, &grps) == FAILURE) { 54 if ((argc = zend_hash_num_elements(HASH_OF(args)))) { 58 zend_hash_internal_pointer_reset_ex(HASH_OF(args), &pos); 60 for (index = 0;; zend_hash_move_forward_ex(HASH_OF(args), &pos)) { 63 if (zend_hash_get_current_data_ex(HASH_OF(args), (void **) &item, &pos) == FAILURE) {
|
| /PHP_5_3/ext/session/ |
| H A D | mod_user.c | 86 zval *args[2]; local 97 SESS_ZVAL_STRING((char*)save_path, args[0]); 98 SESS_ZVAL_STRING((char*)session_name, args[1]); 100 retval = ps_call_handler(PSF(open), 2, args TSRMLS_CC); 126 zval *args[1]; local 129 SESS_ZVAL_STRING((char*)key, args[0]); 131 retval = ps_call_handler(PSF(read), 1, args TSRMLS_CC); 147 zval *args[2]; local 150 SESS_ZVAL_STRING((char*)key, args[0]); 151 SESS_ZVAL_STRINGN((char*)val, vallen, args[ 160 zval *args[1]; local 172 zval *args[1]; local [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | assert.c | 199 zval *args[3]; local 205 MAKE_STD_ZVAL(args[0]); 206 MAKE_STD_ZVAL(args[1]); 207 MAKE_STD_ZVAL(args[2]); 209 ZVAL_STRING(args[0], SAFE_STRING(filename), 1); 210 ZVAL_LONG (args[1], lineno); 211 ZVAL_STRING(args[2], SAFE_STRING(myeval), 1); 217 call_user_function(CG(function_table), NULL, ASSERTG(callback), retval, 3, args TSRMLS_CC); 220 zval_ptr_dtor(&(args[i]));
|
| H A D | scanf.h | 45 PHPAPI int php_sscanf_internal(char *string,char *format,int argCount,zval ***args,
|
| /PHP_5_3/ext/xml/ |
| H A D | xml.c | 509 zval ***args; local 514 args = safe_emalloc(sizeof(zval **), argc, 0); 516 args[i] = &argv[i]; 526 fci.params = args; 547 zval_ptr_dtor(args[i]); 549 efree(args); 878 zval *retval, *args[3]; local 886 args[0] = _xml_resource_zval(parser->index); 887 args[1] = _xml_string_zval(((char *) tag_name) + parser->toffset); 888 MAKE_STD_ZVAL(args[ 961 zval *retval, *args[2]; local 1013 zval *retval, *args[2]; local 1109 zval *retval, *args[3]; local 1127 zval *retval, *args[2]; local 1149 zval *retval, *args[6]; local 1174 zval *retval, *args[5]; local 1199 zval *retval, *args[5]; local 1224 zval *retval, *args[3]; local 1242 zval *retval, *args[2]; local [all...] |
| /PHP_5_3/main/ |
| H A D | php_sprintf.c | 33 va_list args; local 36 va_start (args, format); 38 ret = vsprintf (s, format, args); 39 va_end (args);
|
| /PHP_5_3/main/streams/ |
| H A D | userspace.c | 266 zval **args[4]; local 344 args[0] = &zfilename; 348 args[1] = &zmode; 352 args[2] = &zoptions; 358 args[3] = &zopened; 367 4, args, 413 zval **args[2]; local 443 args[0] = &zfilename; 447 args[1] = &zoptions; 456 2, args, 600 zval **args[1]; local 647 zval **args[1]; local 777 zval **args[2]; local 938 zval **args[3]; local 1086 zval **args[1]; local 1140 zval **args[2]; local 1199 zval **args[3]; local 1264 zval **args[3]; local 1324 zval **args[2]; local 1476 zval **args[1]; local [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_sprintf.c | 33 va_list args; local 35 va_start(args, format); 36 vsprintf(buffer, format, args); 37 va_end(args);
|