| /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_llist.h | 33 typedef void (*llist_apply_with_args_func_t)(void *data, int num_args, va_list args TSRMLS_DC); 61 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRMLS_DC, int num_args, ...);
|
| 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_variables.h | 48 ZEND_API int zval_copy_static_var(zval **p TSRMLS_DC, int num_args, va_list args, zend_hash_key *key);
|
| H A D | zend_closures.c | 352 for (i = 0; i < closure->func.common.num_args; i++) {
|
| H A D | zend_hash.h | 134 typedef int (*apply_func_args_t)(void *pDest TSRMLS_DC, int num_args, va_list args, zend_hash_key *hash_key);
|
| 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_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_hash.c | 755 ZEND_API void zend_hash_apply_with_arguments(HashTable *ht TSRMLS_DC, apply_func_args_t apply_func, int num_args, ...) argument 768 va_start(args, num_args); 772 result = apply_func(p->pData TSRMLS_CC, num_args, args, &hash_key);
|
| 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_opcode.c | 82 op_array->num_args = 0; 405 for (i=0; i<op_array->num_args; i++) {
|
| 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, ...);
|
| /PHP_TRUNK/ext/com_dotnet/ |
| H A D | com_handlers.c | 283 f.num_args = 0; 318 f.num_args = bindptr.lpfuncdesc->cParams; 415 f.num_args = 0; \
|
| /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/pdo/ |
| H A D | pdo_dbh.c | 1322 ifunc->num_args = funcs->num_args; 1324 ifunc->required_num_args = funcs->num_args; 1340 ifunc->num_args = 0;
|
| /PHP_TRUNK/ext/standard/ |
| 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
|
| 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 | 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
|
| /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/opcache/ |
| H A D | zend_persist.c | 364 zend_accel_store(op_array->arg_info, sizeof(zend_arg_info) * op_array->num_args); 365 for (i = 0; i < op_array->num_args; i++) {
|
| H A D | zend_persist_calc.c | 180 ADD_DUP_SIZE(op_array->arg_info, sizeof(zend_arg_info) * op_array->num_args); 181 for (i = 0; i < op_array->num_args; i++) {
|
| /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/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++) {
|