Lines Matching refs:name_len
34 memcpy(&buffer[pos], command->parent->name, command->parent->name_len); in ZEND_EXTERN_MODULE_GLOBALS()
35 pos += command->parent->name_len; in ZEND_EXTERN_MODULE_GLOBALS()
40 memcpy(&buffer[pos], command->name, command->name_len); in ZEND_EXTERN_MODULE_GLOBALS()
41 pos += command->name_len; in ZEND_EXTERN_MODULE_GLOBALS()
579 if (name->len == 1 || command->name_len >= name->len) { in phpdbg_stack_resolve()
591 if ((name->len != command->name_len && command->alias) || name->len == command->name_len) { in phpdbg_stack_resolve()
597 if (name->len == command->name_len) { in phpdbg_stack_resolve()
632 list = emalloc(matched[it]->name_len + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0)); in phpdbg_stack_resolve()
634 …list = erealloc(list, (pos + matched[it]->name_len) + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0… in phpdbg_stack_resolve()
636 memcpy(&list[pos], matched[it]->name, matched[it]->name_len); in phpdbg_stack_resolve()
637 pos += matched[it]->name_len; in phpdbg_stack_resolve()