Lines Matching refs:extraAttributes
1875 if (!newAttr->extraAttributes) { in schema_attribute()
1876 newAttr->extraAttributes = emalloc(sizeof(HashTable)); in schema_attribute()
1877 zend_hash_init(newAttr->extraAttributes, 0, NULL, delete_extra_attribute, 0); in schema_attribute()
1884 …zend_hash_add(newAttr->extraAttributes, key2.c, key2.len + 1, &ext, sizeof(sdlExtraAttributePtr), … in schema_attribute()
2107 if ((*tmp)->extraAttributes != NULL) { in schema_attribute_fixup()
2110 attr->extraAttributes = emalloc(sizeof(HashTable)); in schema_attribute_fixup()
2111 …zend_hash_init(attr->extraAttributes, zend_hash_num_elements((*tmp)->extraAttributes), NULL, delet… in schema_attribute_fixup()
2112 …zend_hash_copy(attr->extraAttributes, (*tmp)->extraAttributes, copy_extra_attribute, &node, sizeof… in schema_attribute_fixup()
2155 if (newAttr->extraAttributes) { in schema_attributegroup_fixup()
2158 …zend_hash_init(ht, zend_hash_num_elements(newAttr->extraAttributes), NULL, delete_extra_attribute,… in schema_attributegroup_fixup()
2159 … zend_hash_copy(ht, newAttr->extraAttributes, copy_extra_attribute, &node, sizeof(xmlNodePtr)); in schema_attributegroup_fixup()
2160 newAttr->extraAttributes = ht; in schema_attributegroup_fixup()
2524 if (attr->extraAttributes) { in delete_attribute()
2525 zend_hash_destroy(attr->extraAttributes); in delete_attribute()
2526 efree(attr->extraAttributes); in delete_attribute()
2550 if (attr->extraAttributes) { in delete_attribute_persistent()
2551 zend_hash_destroy(attr->extraAttributes); in delete_attribute_persistent()
2552 free(attr->extraAttributes); in delete_attribute_persistent()