Lines Matching refs:extraAttributes

1885 				if (!newAttr->extraAttributes) {  in schema_attribute()
1886 newAttr->extraAttributes = emalloc(sizeof(HashTable)); in schema_attribute()
1887 zend_hash_init(newAttr->extraAttributes, 0, NULL, delete_extra_attribute, 0); in schema_attribute()
1894 zend_hash_add_ptr(newAttr->extraAttributes, key2.s, ext); in schema_attribute()
2120 if (tmp->extraAttributes != NULL) { in schema_attribute_fixup()
2121 attr->extraAttributes = emalloc(sizeof(HashTable)); in schema_attribute_fixup()
2122 …zend_hash_init(attr->extraAttributes, zend_hash_num_elements(tmp->extraAttributes), NULL, delete_e… in schema_attribute_fixup()
2123 zend_hash_copy(attr->extraAttributes, tmp->extraAttributes, copy_extra_attribute); in schema_attribute_fixup()
2165 if (newAttr->extraAttributes) { in schema_attributegroup_fixup()
2167 …zend_hash_init(ht, zend_hash_num_elements(newAttr->extraAttributes), NULL, delete_extra_attribute,… in schema_attributegroup_fixup()
2168 zend_hash_copy(ht, newAttr->extraAttributes, copy_extra_attribute); in schema_attributegroup_fixup()
2169 newAttr->extraAttributes = ht; in schema_attributegroup_fixup()
2527 if (attr->extraAttributes) { in delete_attribute()
2528 zend_hash_destroy(attr->extraAttributes); in delete_attribute()
2529 efree(attr->extraAttributes); in delete_attribute()
2553 if (attr->extraAttributes) { in delete_attribute_persistent()
2554 zend_hash_destroy(attr->extraAttributes); in delete_attribute_persistent()
2555 free(attr->extraAttributes); in delete_attribute_persistent()