| /PHP_TRUNK/Zend/ |
| H A D | zend_extensions.c | 197 static void zend_extension_message_dispatcher(const zend_extension *extension, int num_args, va_list args TSRMLS_DC) argument 202 if (!extension->message_handler || num_args!=2) {
|
| H A D | zend_llist.c | 239 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRMLS_DC, int num_args, ...) argument 244 va_start(args, num_args); 246 func(element->data, num_args, args TSRMLS_CC);
|
| H A D | zend_ts_hash.c | 172 ZEND_API void zend_ts_hash_apply_with_arguments(TsHashTable *ht TSRMLS_DC, apply_func_args_t apply_func, int num_args, ...) argument 176 va_start(args, num_args); 178 zend_hash_apply_with_arguments(TS_HASH(ht) TSRMLS_CC, apply_func, num_args, args);
|
| H A D | zend_variables.c | 192 ZEND_API int zval_copy_static_var(zval **p TSRMLS_DC, int num_args, va_list args, zend_hash_key *key) /* {{{ */ argument
|
| H A D | zend_compile.h | 268 zend_uint num_args; member in struct:_zend_op_array 325 zend_uint num_args; member in struct:_zend_internal_function 345 zend_uint num_args; member in struct:_zend_function::__anon2 823 arg_num <= ((zend_function*)(zf))->common.num_args) ? \
|
| H A D | zend_builtin_functions.c | 1647 static int copy_class_or_interface_name(zend_class_entry **pce TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument 1718 static int copy_function_name(zend_function *func TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument
|
| H A D | zend_exceptions.c | 365 static int _build_trace_args(zval **arg TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 461 static int _build_trace_string(zval **frame TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument
|
| H A D | zend_API.h | 39 zend_uint num_args; member in struct:_zend_function_entry 254 ZEND_API int zend_parse_parameters(int num_args TSRMLS_DC, const char *type_spec, ...); 255 ZEND_API int zend_parse_parameters_ex(int flags, int num_args TSRMLS_DC, const char *type_spec, ...); 258 ZEND_API int zend_parse_method_parameters(int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...); 259 ZEND_API int zend_parse_method_parameters_ex(int flags, int num_args TSRMLS_DC, zval *this_ptr, const char *type_spec, ...);
|
| H A D | zend_API.c | 729 static int zend_parse_va_args(int num_args, const char *type_spec, va_list *va, int flags TSRMLS_DC) /* {{{ */ argument 811 if (num_args < min_num_args || (num_args > max_num_args && max_num_args > 0)) { 819 min_num_args == max_num_args ? "exactly" : num_args < min_num_args ? "at least" : "at most", 820 num_args < min_num_args ? min_num_args : max_num_args, 821 (num_args < min_num_args ? min_num_args : max_num_args) == 1 ? "" : "s", 822 num_args); 829 if (num_args > arg_count) { 836 while (num_args-- > 0) { 842 int num_varargs = num_args 1019 zend_merge_property(zval **value TSRMLS_DC, int num_args, va_list args, const zend_hash_key *hash_key) argument [all...] |
| H A D | zend_hash.c | 731 ZEND_API void zend_hash_apply_with_arguments(HashTable *ht TSRMLS_DC, apply_func_args_t apply_func, int num_args, ...) argument 744 va_start(args, num_args); 748 result = apply_func(p->pData TSRMLS_CC, num_args, args, &hash_key);
|
| /PHP_TRUNK/ext/interbase/ |
| H A D | ibase_events.c | 131 int num_args; local 143 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &args, &num_args) == FAILURE) { 275 int link_res_id, num_args; local 284 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &args, &num_args) == FAILURE) {
|
| /PHP_TRUNK/ext/standard/ |
| H A D | pack.c | 109 int num_args, i; local 119 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &argv, &num_args) == FAILURE) { 176 if (currentarg >= num_args) { 217 arg = num_args - currentarg; 222 if (currentarg > num_args) { 243 if (currentarg < num_args) { 244 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%d arguments unused", (num_args - currentarg));
|
| H A D | string.c | 4332 int num_args, cat, i = 0; local 4335 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Z+", &pcategory, &args, &num_args) == FAILURE) { 4422 if (++i >= num_args) break; 5291 int str_len, format_len, result, num_args = 0; local 5294 &args, &num_args) == FAILURE) { 5298 result = php_sscanf_internal(str, format, num_args, args, 0, &return_value TSRMLS_CC);
|
| H A D | array.c | 1480 int num_args, i; local 1482 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &args, &num_args) == FAILURE) {
|
| H A D | basic_functions.c | 4573 static int add_config_entry_cb(zval *entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument 5340 static int php_ini_get_option(zend_ini_entry *ini_entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument
|
| H A D | var.c | 38 static int php_array_element_dump(zval **zv TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 56 static int php_object_property_dump(zval **zv TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 189 static int zval_array_element_dump(zval **zv TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 213 static int zval_object_property_dump(zval **zv TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 344 static int php_array_element_export(zval **zv TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 381 static int php_object_element_export(zval **zv TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument
|
| H A D | browscap.c | 372 static int browser_reg_compare(zval **browser TSRMLS_DC, int num_args, va_list args, zend_hash_key *key) /* {{{ */ argument
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_bt.c | 53 mysqlnd_build_trace_args(zval **arg TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 150 mysqlnd_build_trace_string(zval **frame TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_directory.c | 2093 int num_args = pass_num_args + (arg2 ? 2 : 1); local 2095 zval ***params = (zval***)safe_emalloc(num_args, sizeof(zval**), 0); 2112 fci.param_count = num_args;
|
| /PHP_TRUNK/ext/reflection/ |
| H A D | php_reflection.c | 776 string_printf(str, "%s- Parameters [%d] {\n", indent, fptr->common.num_args); 777 for (i = 0; i < fptr->common.num_args; i++) { 966 static int _extension_ini_string(zend_ini_entry *ini_entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 1002 static int _extension_class_string(zend_class_entry **pce TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 1018 static int _extension_const_string(zend_constant *constant TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ argument 1900 int result, num_args = 0; local 1909 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "*", ¶ms, &num_args) == FAILURE) { 1919 fci.param_count = num_args; 1931 if (num_args) { 2036 RETURN_LONG(fptr->common.num_args); 2825 int result, num_args = 0; local 3755 _addmethod_va(zend_function *mptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument 3908 _addproperty(zend_property_info *pptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument 3929 _adddynproperty(zval **pptr TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument 4212 int num_args = 0; local 5301 _addconstant(zend_constant *constant TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument 5336 _addinientry(zend_ini_entry *ini_entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument 5370 add_extension_class(zend_class_entry **pce TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) argument [all...] |
| /PHP_TRUNK/sapi/cli/ |
| H A D | php_cli_server.c | 583 static int sapi_cli_server_register_entry_cb(char **entry TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key) /* {{{ */ { argument
|
| /PHP_TRUNK/ext/wddx/ |
| H A D | wddx.c | 1186 int num_args, i; local 1190 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "+", &args, &num_args) == FAILURE) { 1199 for (i=0; i<num_args; i++) { 1289 int num_args, i; local 1294 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r+", &packet_id, &args, &num_args) == FAILURE) { 1308 for (i=0; i<num_args; i++) {
|
| /PHP_TRUNK/ext/opcache/ |
| H A D | zend_accelerator_util_funcs.c | 174 , int num_args, va_list args, zend_hash_key *hash_key) 177 (void)num_args; /* keep the compiler happy */ 170 move_user_function(zend_function *function TSRMLS_DC , int num_args, va_list args, zend_hash_key *hash_key) argument
|
| /PHP_TRUNK/ext/session/ |
| H A D | session.c | 1585 int i, num_args, argc = ZEND_NUM_ARGS(); local 1664 if (zend_parse_parameters(argc TSRMLS_CC, "+", &args, &num_args) == FAILURE) {
|
| /PHP_TRUNK/ext/soap/ |
| H A D | soap.c | 633 fe.num_args = 2; 1265 int classname_len, found, num_args = 0; local 1272 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s*", &classname, &classname_len, &argv, &num_args) == FAILURE) { 1283 service->soap_class.argc = num_args;
|