Searched defs:fptr (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/ext/com_dotnet/ |
| H A D | com_handlers.c | 264 zend_internal_function f, *fptr = NULL; local 281 if (obj->method_cache == NULL || FAILURE == zend_hash_find(obj->method_cache, name, len, (void**)&fptr)) { 290 fptr = &f; 344 if (fptr) { 351 zend_hash_update(obj->method_cache, name, len, &f, sizeof(f), (void**)&fptr); 355 if (fptr) { 358 func = emalloc(sizeof(*fptr)); 359 memcpy(func, fptr, sizeof(*fptr));
|
| /PHP_5_3/ext/date/lib/ |
| H A D | parse_date.c | 24885 char *fptr = format; local 24915 while (*fptr && *ptr) { 24917 switch (*fptr) { 25104 if (*ptr == *fptr) { 25124 *fptr++; 25125 if (*ptr == *fptr) { 25141 if (*fptr != *ptr) { 25146 fptr++; 25156 while (*fptr == '+') { 25157 fptr [all...] |
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 186 zend_function *fptr; member in struct:_parameter_reference 242 static zend_function *_copy_function(zend_function *fptr TSRMLS_DC) /* {{{ */ 244 if (fptr 245 && fptr->type == ZEND_INTERNAL_FUNCTION 246 && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0) 250 memcpy(copy_fptr, fptr, sizeof(zend_function)); 251 copy_fptr->internal_function.function_name = estrdup(fptr->internal_function.function_name); 255 return fptr; 260 static void _free_function(zend_function *fptr TSRMLS_DC) /* {{{ */ 262 if (fptr 673 _parameter_string(string *str, zend_function *fptr, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, char* indent TSRMLS_DC) argument 741 _function_parameter_string(string *str, zend_function *fptr, char* indent TSRMLS_DC) argument 763 _function_closure_string(string *str, zend_function *fptr, char* indent TSRMLS_DC) argument 797 _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC) argument 1081 zend_function *fptr; local 1188 reflection_parameter_factory(zend_function *fptr, zval *closure_object, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, zval *object TSRMLS_DC) argument 1515 zend_function *fptr; local 1566 zend_function *fptr; local 1595 zend_function *fptr; local 1610 zend_function *fptr; local 1625 zend_function *fptr; local 1640 zend_function *fptr; local 1653 zend_function *fptr; local 1671 zend_function *fptr; local 1689 zend_function *fptr; local 1707 zend_function *fptr; local 1726 zend_function *fptr; local 1752 zend_function *fptr; local 1812 zend_function *fptr; local 1865 zend_function *fptr; local 1879 zend_function *fptr; local 1893 zend_function *fptr; local 1907 zend_function *fptr; local 1934 zend_function *fptr; local 1958 zend_function *fptr; local 1994 zend_function *fptr; local 4862 zend_function *fptr; local [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | php_spl.c | 668 zend_function *fptr; local 677 if (zend_hash_find(EG(function_table), ZEND_AUTOLOAD_FUNC_NAME, sizeof(ZEND_AUTOLOAD_FUNC_NAME), (void **) &fptr) == SUCCESS) { 685 zend_hash_find(EG(function_table), "spl_autoload_call", sizeof("spl_autoload_call"), (void **) &fptr); 687 if (EG(autoload_func) == fptr) {
|
| /PHP_5_3/Zend/ |
| H A D | zend_API.c | 1737 ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC) /* {{{ */ argument 1744 name_len = strlen(fptr->common.function_name); 1745 zend_str_tolower_copy(lcname, fptr->common.function_name, MIN(name_len, sizeof(lcname)-1)); 1748 if (name_len == sizeof(ZEND_DESTRUCTOR_FUNC_NAME) - 1 && !memcmp(lcname, ZEND_DESTRUCTOR_FUNC_NAME, sizeof(ZEND_DESTRUCTOR_FUNC_NAME)) && fptr->common.num_args != 0) { 1750 } else if (name_len == sizeof(ZEND_CLONE_FUNC_NAME) - 1 && !memcmp(lcname, ZEND_CLONE_FUNC_NAME, sizeof(ZEND_CLONE_FUNC_NAME)) && fptr->common.num_args != 0) { 1753 if (fptr->common.num_args != 1) { 1755 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { 1759 if (fptr->common.num_args != 2) { 1761 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, [all...] |
Completed in 34 milliseconds