Lines Matching refs:extraAttributes

1242 		attr->extraAttributes = emalloc(sizeof(HashTable));  in sdl_deserialize_attribute()
1243 zend_hash_init(attr->extraAttributes, i, NULL, delete_extra_attribute, 0); in sdl_deserialize_attribute()
1246 sdl_deserialize_key(attr->extraAttributes, x, in); in sdl_deserialize_attribute()
1852 if (attr->extraAttributes) { in sdl_serialize_attribute()
1853 i = zend_hash_num_elements(attr->extraAttributes); in sdl_serialize_attribute()
1860 zend_hash_internal_pointer_reset(attr->extraAttributes); in sdl_serialize_attribute()
1861 while (zend_hash_get_current_data(attr->extraAttributes, (void**)&tmp) == SUCCESS) { in sdl_serialize_attribute()
1862 sdl_serialize_key(attr->extraAttributes, out); in sdl_serialize_attribute()
1865 zend_hash_move_forward(attr->extraAttributes); in sdl_serialize_attribute()
2639 if (pattr->extraAttributes) { in make_persistent_sdl_attribute()
2642 pattr->extraAttributes = malloc(sizeof(HashTable)); in make_persistent_sdl_attribute()
2643 …zend_hash_init(pattr->extraAttributes, zend_hash_num_elements(attr->extraAttributes), NULL, delete… in make_persistent_sdl_attribute()
2645 zend_hash_internal_pointer_reset(pattr->extraAttributes); in make_persistent_sdl_attribute()
2646 while (zend_hash_get_current_data(attr->extraAttributes, (void**)&tmp) == SUCCESS) { in make_persistent_sdl_attribute()
2656 …if (zend_hash_get_current_key_ex(attr->extraAttributes, &key, &key_len, &index, 0, NULL) == HASH_K… in make_persistent_sdl_attribute()
2657 …zend_hash_add(pattr->extraAttributes, key, key_len, (void*)&pextra, sizeof(sdlExtraAttributePtr), … in make_persistent_sdl_attribute()
2660 zend_hash_move_forward(attr->extraAttributes); in make_persistent_sdl_attribute()