| /PHP_5_3/ext/pdo/ |
| H A D | pdo_dbh.c | 1286 char *lc_name; local 1330 lc_name = emalloc(namelen+1); 1331 zend_str_tolower_copy(lc_name, funcs->fname, namelen); 1332 zend_hash_add(dbh->cls_methods[kind], lc_name, namelen+1, &func, sizeof(func), NULL); 1333 efree(lc_name);
|
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 801 char *lc_name; local 827 lc_name = zend_str_tolower_dup(fptr->common.function_name, lc_name_len); 828 if (zend_hash_find(&fptr->common.scope->parent->function_table, lc_name, lc_name_len + 1, (void**) &overwrites) == SUCCESS) { 833 efree(lc_name); 1089 char *lc_name = zend_str_tolower_dup(func->fname, fname_len); local 1091 if (zend_hash_find(EG(function_table), lc_name, fname_len+1, (void**) &fptr) == FAILURE) { 1094 efree(lc_name); 1099 efree(lc_name); 3400 char *name, *lc_name; local 3409 lc_name 3430 char *name, *lc_name; local 4868 char *lc_name = zend_str_tolower_dup(func->fname, fname_len); local [all...] |
| /PHP_5_3/ext/spl/ |
| H A D | php_spl.c | 71 char *lc_name; local 74 lc_name = do_alloca(len + 1, use_heap); 75 zend_str_tolower_copy(lc_name, name, len); 77 found = zend_hash_find(EG(class_table), lc_name, len +1, (void **) &ce); 78 free_alloca(lc_name, use_heap); 222 static int spl_autoload(const char *class_name, const char * lc_name, int class_name_len, const char * file_extension TSRMLS_DC) /* {{{ */ argument 232 class_file_len = spprintf(&class_file, 0, "%s%s", lc_name, file_extension); 276 return zend_hash_exists(EG(class_table), (char*)lc_name, class_name_len+1); 287 char *class_name, *lc_name, *file_exts = SPL_G(autoload_extensions); local 303 lc_name 386 char *func_name, *lc_name; local 439 char *lc_name = NULL; local 570 zend_hash_add(SPL_G(autoload_functions), lc_name, func_name_len+1, &alfi.func_ptr, sizeof(autoload_func_info), NULL); local 593 char *lc_name = NULL; local [all...] |
| /PHP_5_3/Zend/ |
| H A D | zend_closures.c | 116 char *lc_name; local 119 lc_name = do_alloca(method_len + 1, use_heap); 120 zend_str_tolower_copy(lc_name, method_name, method_len); 122 memcmp(lc_name, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0 124 free_alloca(lc_name, use_heap); 127 free_alloca(lc_name, use_heap);
|
| H A D | zend_builtin_functions.c | 1169 char *class_name, *lc_name; local 1184 lc_name = do_alloca(class_name_len + 1, use_heap); 1185 zend_str_tolower_copy(lc_name, class_name, class_name_len); 1188 name = lc_name; 1190 if (lc_name[0] == '\\') { 1191 name = &lc_name[1]; 1196 free_alloca(lc_name, use_heap); 1212 char *iface_name, *lc_name; local 1227 lc_name = do_alloca(iface_name_len + 1, use_heap); 1228 zend_str_tolower_copy(lc_name, iface_nam 1296 char *class_name, *lc_name, *alias_name; local [all...] |
| H A D | zend_execute_API.c | 1049 char *lc_name; local 1061 lc_free = lc_name = do_alloca(name_length + 1, use_heap); 1062 zend_str_tolower_copy(lc_name, name, name_length); 1065 if (lc_name[0] == '\\') { 1066 lc_name += 1; 1070 hash = zend_inline_hash_func(lc_name, lc_length); 1072 if (zend_hash_quick_find(EG(class_table), lc_name, lc_length, hash, (void **) ce) == SUCCESS) { 1090 if (zend_hash_quick_add(EG(in_autoload), lc_name, lc_length, hash, (void**)&dummy, sizeof(char), NULL) == FAILURE) { 1131 zend_hash_quick_del(EG(in_autoload), lc_name, lc_length, hash); local 1142 retval = zend_hash_quick_find(EG(class_table), lc_name, lc_lengt [all...] |