Lines Matching refs:extraAttributes
1251 attr->extraAttributes = emalloc(sizeof(HashTable)); in sdl_deserialize_attribute()
1252 zend_hash_init(attr->extraAttributes, i, NULL, delete_extra_attribute, 0); in sdl_deserialize_attribute()
1255 sdl_deserialize_key(attr->extraAttributes, x, in); in sdl_deserialize_attribute()
1856 if (attr->extraAttributes) { in sdl_serialize_attribute()
1857 i = zend_hash_num_elements(attr->extraAttributes); in sdl_serialize_attribute()
1866 ZEND_HASH_MAP_FOREACH_STR_KEY_PTR(attr->extraAttributes, key, tmp) { in sdl_serialize_attribute()
2637 if (pattr->extraAttributes) { in make_persistent_sdl_attribute()
2640 pattr->extraAttributes = malloc(sizeof(HashTable)); in make_persistent_sdl_attribute()
2641 …zend_hash_init(pattr->extraAttributes, zend_hash_num_elements(attr->extraAttributes), NULL, delete… in make_persistent_sdl_attribute()
2643 ZEND_HASH_MAP_FOREACH_STR_KEY_PTR(attr->extraAttributes, key, tmp) { in make_persistent_sdl_attribute()
2656 zend_hash_str_add_ptr(pattr->extraAttributes, ZSTR_VAL(key), ZSTR_LEN(key), pextra); in make_persistent_sdl_attribute()