Lines Matching refs:lcname

1030 	char *lcname = zend_str_tolower_dup(name, name_len);  in same_name()  local
1031 int ret = memcmp(lcname, key, name_len) == 0; in same_name()
1032 efree(lcname); in same_name()
1117 char *lcname; in ZEND_FUNCTION() local
1134 lcname = zend_str_tolower_dup(method_name, method_len); in ZEND_FUNCTION()
1135 if (zend_hash_exists(&ce->function_table, lcname, method_len+1)) { in ZEND_FUNCTION()
1136 efree(lcname); in ZEND_FUNCTION()
1151 && memcmp(lcname, ZEND_INVOKE_FUNC_NAME, sizeof(ZEND_INVOKE_FUNC_NAME)-1) == 0) ? 1 : 0); in ZEND_FUNCTION()
1153 efree(lcname); in ZEND_FUNCTION()
1158 efree(lcname); in ZEND_FUNCTION()
1162 efree(lcname); in ZEND_FUNCTION()
1354 char *lcname; in ZEND_FUNCTION() local
1361 lcname = zend_str_tolower_dup(name, name_len); in ZEND_FUNCTION()
1364 name = lcname; in ZEND_FUNCTION()
1365 if (lcname[0] == '\\') { in ZEND_FUNCTION()
1366 name = &lcname[1]; in ZEND_FUNCTION()
1372 efree(lcname); in ZEND_FUNCTION()
2419 char *lcname; in ZEND_FUNCTION() local
2425 lcname = zend_str_tolower_dup(extension_name, extension_name_len); in ZEND_FUNCTION()
2426 if (zend_hash_exists(&module_registry, lcname, extension_name_len+1)) { in ZEND_FUNCTION()
2431 efree(lcname); in ZEND_FUNCTION()
2440 char *extension_name, *lcname; in ZEND_FUNCTION() local
2449 lcname = zend_str_tolower_dup(extension_name, extension_name_len); in ZEND_FUNCTION()
2451 lcname = estrdup("core"); in ZEND_FUNCTION()
2453 if (zend_hash_find(&module_registry, lcname, in ZEND_FUNCTION()
2455 efree(lcname); in ZEND_FUNCTION()
2479 efree(lcname); in ZEND_FUNCTION()