| /PHP_5_5/ext/pdo/ |
| H A D | pdo_dbh.c | 1292 char *lc_name; local 1344 lc_name = emalloc(namelen+1); 1345 zend_str_tolower_copy(lc_name, funcs->fname, namelen); 1346 zend_hash_add(dbh->cls_methods[kind], lc_name, namelen+1, &func, sizeof(func), NULL); 1347 efree(lc_name);
|
| /PHP_5_5/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); 253 static int spl_autoload(const char *class_name, const char * lc_name, int class_name_len, const char * file_extension TSRMLS_DC) /* {{{ */ argument 263 class_file_len = spprintf(&class_file, 0, "%s%s", lc_name, file_extension); 307 return zend_hash_exists(EG(class_table), (char*)lc_name, class_name_len+1); 318 char *class_name, *lc_name, *file_exts = SPL_G(autoload_extensions); local 334 lc_name 417 char *func_name, *lc_name; local 470 char *lc_name = NULL; local 631 char *lc_name = NULL; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_closures.c | 185 char *lc_name; local 188 lc_name = do_alloca(method_len + 1, use_heap); 189 zend_str_tolower_copy(lc_name, method_name, method_len); 191 memcmp(lc_name, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0 193 free_alloca(lc_name, use_heap); 196 free_alloca(lc_name, use_heap);
|
| H A D | zend_execute_API.c | 1022 char *lc_name; local 1031 lc_name = Z_STRVAL(key->constant); 1039 lc_free = lc_name = do_alloca(name_length + 1, use_heap); 1040 zend_str_tolower_copy(lc_name, name, name_length); 1043 if (lc_name[0] == '\\') { 1044 lc_name += 1; 1048 hash = zend_inline_hash_func(lc_name, lc_length); 1051 if (zend_hash_quick_find(EG(class_table), lc_name, lc_length, hash, (void **) ce) == SUCCESS) { 1073 if (zend_hash_quick_add(EG(in_autoload), lc_name, lc_length, hash, (void**)&dummy, sizeof(char), NULL) == FAILURE) { 1116 zend_hash_quick_del(EG(in_autoload), lc_name, lc_lengt local [all...] |
| H A D | zend_builtin_functions.c | 1221 char *class_name, *lc_name; local 1236 lc_name = do_alloca(class_name_len + 1, use_heap); 1237 zend_str_tolower_copy(lc_name, class_name, class_name_len); 1240 name = lc_name; 1242 if (lc_name[0] == '\\') { 1243 name = &lc_name[1]; 1248 free_alloca(lc_name, use_heap); 1264 char *iface_name, *lc_name; local 1279 lc_name = do_alloca(iface_name_len + 1, use_heap); 1280 zend_str_tolower_copy(lc_name, iface_nam 1307 char *trait_name, *lc_name; local 1391 char *class_name, *lc_name, *alias_name; local [all...] |
| H A D | zend_compile.c | 382 char *lc_name; local 395 lc_name = zend_str_tolower_dup(Z_STRVAL_P(zv), Z_STRLEN_P(zv)); 396 ZVAL_STRINGL(&c, lc_name, Z_STRLEN_P(zv), 0); 407 char *lc_name; local 422 lc_name = zend_str_tolower_dup(Z_STRVAL_P(zv), Z_STRLEN_P(zv)); 423 ZVAL_STRINGL(&c, lc_name, Z_STRLEN_P(zv), 0); 429 lc_name = zend_str_tolower_dup(ns_separator, lc_len); 430 ZVAL_STRINGL(&c, lc_name, lc_len, 0); 441 char *lc_name; local 457 lc_name [all...] |
| /PHP_5_5/ext/reflection/ |
| H A D | php_reflection.c | 826 char *lc_name; local 852 lc_name = zend_str_tolower_dup(fptr->common.function_name, lc_name_len); 853 if (zend_hash_find(&fptr->common.scope->parent->function_table, lc_name, lc_name_len + 1, (void**) &overwrites) == SUCCESS) { 858 efree(lc_name); 1117 char *lc_name = zend_str_tolower_dup(func->fname, fname_len); local 1119 if (zend_hash_find(EG(function_table), lc_name, fname_len + 1, (void**) &fptr) == FAILURE) { 1122 efree(lc_name); 1127 efree(lc_name); 3662 char *name, *lc_name; local 3671 lc_name 3692 char *name, *lc_name; local 5282 char *lc_name = zend_str_tolower_dup(func->fname, fname_len); local [all...] |