| /PHP_5_5/ext/intl/collator/ |
| H A D | collator_sort.c | 265 collator_compare_func_t func; local 270 func = collator_numeric_compare_function; 274 func = collator_icu_compare_function; 279 func = collator_regular_compare_function; 283 return func;
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regposix.c | 271 int (*func)(const unsigned char*, const unsigned char*,int,int*,regex_t*,void*); member in struct:__anon277 282 return (*warg->func)(name, name_end, ng, gs, warg->reg, warg->arg); 287 int (*func)(const unsigned char*, const unsigned char*,int,int*,regex_t*,void*), 292 warg.func = func;
|
| /PHP_5_5/Zend/ |
| H A D | zend_llist.c | 171 ZEND_API void zend_llist_apply_with_del(zend_llist *l, int (*func)(void *data)) 178 if (func(element->data)) { 186 ZEND_API void zend_llist_apply(zend_llist *l, llist_apply_func_t func TSRMLS_DC) 191 func(element->data TSRMLS_CC); 229 ZEND_API void zend_llist_apply_with_argument(zend_llist *l, llist_apply_with_arg_func_t func, void *arg TSRMLS_DC) argument 234 func(element->data, arg TSRMLS_CC); 239 ZEND_API void zend_llist_apply_with_arguments(zend_llist *l, llist_apply_with_args_func_t func TSRMLS_DC, int num_args, ...) 246 func(element->data, num_args, args TSRMLS_CC);
|
| H A D | zend_closures.c | 39 zend_function func; member in struct:_zend_closure 50 zend_function *func = EG(current_execute_data)->function_state.function; local 74 efree((char*)func->internal_function.function_name); 75 efree(func); 93 if ((newthis != NULL) && (closure->func.common.fn_flags & ZEND_ACC_STATIC)) { 121 ce = closure->func.common.scope; 133 ce = closure->func.common.scope; 136 zend_create_closure(return_value, &closure->func, ce, newthis TSRMLS_CC); 158 invoke->common = closure->func.common; 160 invoke->internal_function.fn_flags = ZEND_ACC_PUBLIC | ZEND_ACC_CALL_VIA_HANDLER | (closure->func 442 zend_create_closure(zval *res, zend_function *func, zend_class_entry *scope, zval *this_ptr TSRMLS_DC) argument [all...] |
| H A D | zend_object_handlers.c | 872 zend_internal_function *func = (zend_internal_function *)EG(current_execute_data)->function_state.function; local 889 ZVAL_STRING(method_name_ptr, func->function_name, 0); /* no dup - it's a copy */ 911 efree(func); 1090 zend_internal_function *func = (zend_internal_function *)EG(current_execute_data)->function_state.function; local 1107 ZVAL_STRING(method_name_ptr, func->function_name, 0); /* no dup - it's a copy */ 1128 efree(func);
|
| /PHP_5_5/ext/com_dotnet/ |
| H A D | com_handlers.c | 266 union _zend_function *func; local 358 func = emalloc(sizeof(*fptr)); 359 memcpy(func, fptr, sizeof(*fptr)); 361 return func;
|
| H A D | com_typeinfo.c | 437 FUNCDESC *func; local 479 if (FAILED(ITypeInfo_GetFuncDesc(typeinfo, i, &func))) 482 isprop = (func->invkind & DISPATCH_PROPERTYGET || func->invkind & DISPATCH_PROPERTYPUT); 484 if (!isprop || lastid != func->memid) { 486 lastid = func->memid; 488 ITypeInfo_GetDocumentation(typeinfo, func->memid, &olename, NULL, NULL, NULL); 498 names = (BSTR*)safe_emalloc((func->cParams + 1), sizeof(BSTR), 0); 500 ITypeInfo_GetNames(typeinfo, func->memid, names, func [all...] |
| /PHP_5_5/ext/pcntl/ |
| H A D | php_signal.c | 28 Sigfunc *php_signal4(int signo, Sigfunc *func, int restart, int mask_all) argument 34 act.sa_handler = func; 62 Sigfunc *php_signal(int signo, Sigfunc *func, int restart) argument 64 return php_signal4(signo, func, restart, 0);
|
| /PHP_5_5/ext/pdo/ |
| H A D | pdo_dbh.c | 1289 zend_function func; local 1290 zend_internal_function *ifunc = (zend_internal_function*)&func; 1346 zend_hash_add(dbh->cls_methods[kind], lc_name, namelen+1, &func, sizeof(func), NULL);
|
| H A D | php_pdo_driver.h | 622 } func; member in union:_pdo_stmt_t::__anon144
|
| /PHP_5_5/ext/pdo_sqlite/ |
| H A D | php_pdo_sqlite_int.h | 41 zval *func, *step, *fini; member in struct:pdo_sqlite_func
|
| H A D | sqlite_driver.c | 104 struct pdo_sqlite_func *func; local 107 func = H->funcs; 108 H->funcs = func->next; 113 func->funcname, 114 func->argc, 116 func, 120 efree((char*)func->funcname); 121 if (func->func) { 122 zval_ptr_dtor(&func 458 struct pdo_sqlite_func *func = (struct pdo_sqlite_func*)sqlite3_user_data(context); local 467 struct pdo_sqlite_func *func = (struct pdo_sqlite_func*)sqlite3_user_data(context); local 475 struct pdo_sqlite_func *func = (struct pdo_sqlite_func*)sqlite3_user_data(context); local 536 struct pdo_sqlite_func *func; local 607 struct pdo_sqlite_func *func; local [all...] |
| /PHP_5_5/ext/readline/ |
| H A D | readline_cli.c | 462 zend_function *func; local 463 char *retval = cli_completion_generator_ht(text, textlen, state, ht, (void**)&func TSRMLS_CC); 466 retval = strdup(func->common.function_name);
|
| /PHP_5_5/ext/session/ |
| H A D | mod_user.c | 47 static zval *ps_call_handler(zval *func, int argc, zval **argv TSRMLS_DC) argument 53 if (call_user_function(EG(function_table), NULL, func, retval, argc, argv TSRMLS_CC) == FAILURE) {
|
| /PHP_5_5/ext/sqlite3/ |
| H A D | php_sqlite3_structs.h | 61 zval *func, *step, *fini; member in struct:_php_sqlite3_func
|
| H A D | sqlite3.c | 831 php_sqlite3_func *func = (php_sqlite3_func *)sqlite3_user_data(context); local 834 sqlite3_do_callback(&func->afunc, func->func, argc, argv, context, 0 TSRMLS_CC); 840 php_sqlite3_func *func = (php_sqlite3_func *)sqlite3_user_data(context); local 846 sqlite3_do_callback(&func->astep, func->step, argc, argv, context, 1 TSRMLS_CC); 852 php_sqlite3_func *func = (php_sqlite3_func *)sqlite3_user_data(context); local 858 sqlite3_do_callback(&func->afini, func 922 php_sqlite3_func *func; local 972 php_sqlite3_func *func; local 2029 php_sqlite3_func *func; local [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | filestat.c | 129 gdfse_func func; local 150 func = (gdfse_func)gdfse; 151 if (func(path, 261 gdfse_func func; local 282 func = (gdfse_func)gdfse; 283 if (func(path,
|
| /PHP_5_5/main/ |
| H A D | output.c | 493 handler->func.user = user; 517 handler->func.internal = output_handler; 651 php_output_handler_alias_ctor_t *func = NULL; local 653 zend_hash_find(&php_output_handler_aliases, name, name_len+1, (void *) &func); 654 return func; 658 /* {{{ SUCCESS|FAILURE php_output_handler_alias_register(zval *name, php_output_handler_alias_ctor_t func TSRMLS_DC) 660 PHPAPI int php_output_handler_alias_register(const char *name, size_t name_len, php_output_handler_alias_ctor_t func TSRMLS_DC) 666 return zend_hash_update(&php_output_handler_aliases, name, name_len+1, &func, sizeof(php_output_handler_alias_ctor_t *), NULL); 706 zval_ptr_dtor(&handler->func.user->zoh); 707 efree(handler->func 1258 php_output_handler_func_t func = *(php_output_handler_func_t *) handler_context; local [all...] |
| H A D | php_output.h | 143 } func; member in struct:_php_output_handler 248 PHPAPI int php_output_handler_alias_register(const char *handler_name, size_t handler_name_len, php_output_handler_alias_ctor_t func TSRMLS_DC);
|
| H A D | php_ticks.c | 49 PHPAPI void php_add_tick_function(void (*func)(int)) argument 53 zend_llist_add_element(&PG(tick_functions), (void *)&func); 56 PHPAPI void php_remove_tick_function(void (*func)(int)) argument 60 zend_llist_del_element(&PG(tick_functions), (void *)func, 66 void (*func)(int); 68 memcpy(&func, data, sizeof(void(*)(int))); 69 func(*((int *)arg));
|
| /PHP_5_5/main/streams/ |
| H A D | php_stream_context.h | 46 php_stream_notification_func func; member in struct:_php_stream_notifier
|
| /PHP_5_5/ext/mysqlnd/ |
| H A D | mysqlnd_priv.h | 164 ps_field_fetch_func func; member in struct:st_mysqlnd_perm_bind
|
| /PHP_5_5/ext/opcache/ |
| H A D | zend_accelerator_blacklist.c | 295 void zend_accel_blacklist_apply(zend_blacklist *blacklist, apply_func_arg_t func, void *argument TSRMLS_DC) argument 300 func(&blacklist->entries[i], argument TSRMLS_CC);
|
| /PHP_5_5/ext/curl/ |
| H A D | interface.c | 1663 zval *func = ch->handlers->passwd; local 1679 error = call_user_function(EG(function_table), NULL, func, retval, 2, argv TSRMLS_CC); 1689 php_error_docref(NULL TSRMLS_CC, E_WARNING, "User handler '%s' did not return a string", Z_STRVAL_P(func));
|
| /PHP_5_5/ext/soap/ |
| H A D | php_http.c | 379 zval func; local 395 ZVAL_STRING(&func, "gzcompress", 0); 399 ZVAL_STRING(&func, "gzencode", 0); 403 if (call_user_function(CG(function_table), (zval**)NULL, &func, &retval, n, params TSRMLS_CC) == SUCCESS && 1239 zval func; local 1247 ZVAL_STRING(&func, "gzinflate", 0); 1253 ZVAL_STRING(&func, "gzuncompress", 0); 1267 if (call_user_function(CG(function_table), (zval**)NULL, &func, &retval, 1, params TSRMLS_CC) == SUCCESS &&
|