Searched refs:lcname_len (Results 1 – 3 of 3) sorted by relevance
/PHP-7.0/Zend/ |
H A D | zend_constants.c | 382 size_t lcname_len; in zend_get_constant_ex() local 385 lcname_len = prefix_len + 1 + const_name_len; in zend_get_constant_ex() 386 lcname = do_alloca(lcname_len + 1, use_heap); in zend_get_constant_ex() 393 if ((c = zend_hash_str_find_ptr(EG(zend_constants), lcname, lcname_len)) == NULL) { in zend_get_constant_ex() 396 if ((c = zend_hash_str_find_ptr(EG(zend_constants), lcname, lcname_len)) != NULL) { in zend_get_constant_ex()
|
/PHP-7.0/sapi/phpdbg/ |
H A D | phpdbg_prompt.c | 1443 size_t lcname_len = strlen(lcname); in PHPDBG_COMMAND() local 1445 if (!zend_hash_str_exists(&PHPDBG_G(registered), lcname, lcname_len)) { in PHPDBG_COMMAND() 1446 if ((function = zend_hash_str_find_ptr(EG(function_table), lcname, lcname_len))) { in PHPDBG_COMMAND() 1447 zend_hash_str_update_ptr(&PHPDBG_G(registered), lcname, lcname_len, function); in PHPDBG_COMMAND()
|
/PHP-7.0/ext/reflection/ |
H A D | php_reflection.c | 2369 size_t lcname_len; in ZEND_METHOD() local 2372 lcname_len = Z_STRLEN_P(reference); in ZEND_METHOD() 2373 lcname = zend_str_tolower_dup(Z_STRVAL_P(reference), lcname_len); in ZEND_METHOD() 2374 if ((fptr = zend_hash_str_find_ptr(EG(function_table), lcname, lcname_len)) == NULL) { in ZEND_METHOD() 2388 size_t lcname_len; in ZEND_METHOD() local 2410 lcname_len = Z_STRLEN_P(method); in ZEND_METHOD() 2411 lcname = zend_str_tolower_dup(Z_STRVAL_P(method), lcname_len); in ZEND_METHOD() 2413 && (lcname_len == sizeof(ZEND_INVOKE_FUNC_NAME)-1) in ZEND_METHOD() 2420 } else if ((fptr = zend_hash_str_find_ptr(&ce->function_table, lcname, lcname_len)) == NULL) { in ZEND_METHOD()
|
Completed in 24 milliseconds