Lines Matching refs:name_len
36 memcpy(&buffer[pos], command->parent->name, command->parent->name_len); in ZEND_EXTERN_MODULE_GLOBALS()
37 pos += command->parent->name_len; in ZEND_EXTERN_MODULE_GLOBALS()
42 memcpy(&buffer[pos], command->name, command->name_len); in ZEND_EXTERN_MODULE_GLOBALS()
43 pos += command->name_len; in ZEND_EXTERN_MODULE_GLOBALS()
582 if (name->len == 1 || command->name_len >= name->len) { in phpdbg_stack_resolve()
594 if ((name->len != command->name_len && command->alias) || name->len == command->name_len) { in phpdbg_stack_resolve()
600 if (name->len == command->name_len) { in phpdbg_stack_resolve()
635 list = emalloc(matched[it]->name_len + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0)); in phpdbg_stack_resolve()
637 …list = erealloc(list, (pos + matched[it]->name_len) + 1 + (it + 1 < matches ? sizeof(", ") - 1 : 0… in phpdbg_stack_resolve()
639 memcpy(&list[pos], matched[it]->name, matched[it]->name_len); in phpdbg_stack_resolve()
640 pos += matched[it]->name_len; in phpdbg_stack_resolve()