Searched defs:fptr (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_4/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_4/ext/date/lib/ |
| H A D | parse_date.c | 24886 char *fptr = format; local 24916 while (*fptr && *ptr) { 24918 switch (*fptr) { 25106 if (*ptr == *fptr) { 25126 *fptr++; 25127 if (*ptr == *fptr) { 25143 if (*fptr != *ptr) { 25148 fptr++; 25158 while (*fptr == '+') { 25159 fptr [all...] |
| /PHP_5_4/ext/spl/ |
| H A D | php_spl.c | 706 zend_function *fptr; local 715 if (zend_hash_find(EG(function_table), ZEND_AUTOLOAD_FUNC_NAME, sizeof(ZEND_AUTOLOAD_FUNC_NAME), (void **) &fptr) == SUCCESS) { 723 zend_hash_find(EG(function_table), "spl_autoload_call", sizeof("spl_autoload_call"), (void **) &fptr); 725 if (EG(autoload_func) == fptr) {
|
| /PHP_5_4/Zend/ |
| H A D | zend_API.c | 1902 ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_function *fptr, int error_type TSRMLS_DC) /* {{{ */ argument 1909 name_len = strlen(fptr->common.function_name); 1910 zend_str_tolower_copy(lcname, fptr->common.function_name, MIN(name_len, sizeof(lcname)-1)); 1913 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) { 1915 } 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) { 1918 if (fptr->common.num_args != 1) { 1920 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1)) { 1924 if (fptr->common.num_args != 2) { 1926 } else if (ARG_SHOULD_BE_SENT_BY_REF(fptr, 1) || ARG_SHOULD_BE_SENT_BY_REF(fptr, [all...] |
| /PHP_5_4/ext/reflection/ |
| H A D | php_reflection.c | 194 zend_function *fptr; member in struct:_parameter_reference 254 static zend_function *_copy_function(zend_function *fptr TSRMLS_DC) /* {{{ */ 256 if (fptr 257 && fptr->type == ZEND_INTERNAL_FUNCTION 258 && (fptr->internal_function.fn_flags & ZEND_ACC_CALL_VIA_HANDLER) != 0) 262 memcpy(copy_fptr, fptr, sizeof(zend_function)); 263 copy_fptr->internal_function.function_name = estrdup(fptr->internal_function.function_name); 267 return fptr; 272 static void _free_function(zend_function *fptr TSRMLS_DC) /* {{{ */ 274 if (fptr 696 _parameter_string(string *str, zend_function *fptr, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, char* indent TSRMLS_DC) argument 766 _function_parameter_string(string *str, zend_function *fptr, char* indent TSRMLS_DC) argument 788 _function_closure_string(string *str, zend_function *fptr, char* indent TSRMLS_DC) argument 822 _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC) argument 1109 zend_function *fptr; local 1237 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 1608 zend_function *fptr; local 1659 zend_function *fptr; local 1688 zend_function *fptr; local 1703 zend_function *fptr; local 1724 zend_function *fptr; local 1745 zend_function *fptr; local 1762 zend_function *fptr; local 1777 zend_function *fptr; local 1792 zend_function *fptr; local 1805 zend_function *fptr; local 1823 zend_function *fptr; local 1841 zend_function *fptr; local 1859 zend_function *fptr; local 1878 zend_function *fptr; local 1904 zend_function *fptr; local 1964 zend_function *fptr; local 2017 zend_function *fptr; local 2031 zend_function *fptr; local 2045 zend_function *fptr; local 2059 zend_function *fptr; local 2086 zend_function *fptr; local 2110 zend_function *fptr; local 2146 zend_function *fptr; local 5254 zend_function *fptr; local [all...] |
Completed in 35 milliseconds