Lines Matching refs:extraAttributes

1244 		attr->extraAttributes = emalloc(sizeof(HashTable));  in sdl_deserialize_attribute()
1245 zend_hash_init(attr->extraAttributes, i, NULL, delete_extra_attribute, 0); in sdl_deserialize_attribute()
1248 sdl_deserialize_key(attr->extraAttributes, x, in); in sdl_deserialize_attribute()
1854 if (attr->extraAttributes) { in sdl_serialize_attribute()
1855 i = zend_hash_num_elements(attr->extraAttributes); in sdl_serialize_attribute()
1862 zend_hash_internal_pointer_reset(attr->extraAttributes); in sdl_serialize_attribute()
1863 while (zend_hash_get_current_data(attr->extraAttributes, (void**)&tmp) == SUCCESS) { in sdl_serialize_attribute()
1864 sdl_serialize_key(attr->extraAttributes, out); in sdl_serialize_attribute()
1867 zend_hash_move_forward(attr->extraAttributes); in sdl_serialize_attribute()
2641 if (pattr->extraAttributes) { in make_persistent_sdl_attribute()
2644 pattr->extraAttributes = malloc(sizeof(HashTable)); in make_persistent_sdl_attribute()
2645 …zend_hash_init(pattr->extraAttributes, zend_hash_num_elements(attr->extraAttributes), NULL, delete… in make_persistent_sdl_attribute()
2647 zend_hash_internal_pointer_reset(pattr->extraAttributes); in make_persistent_sdl_attribute()
2648 while (zend_hash_get_current_data(attr->extraAttributes, (void**)&tmp) == SUCCESS) { in make_persistent_sdl_attribute()
2649 …if (zend_hash_get_current_key_ex(attr->extraAttributes, &key, &key_len, &index, 0, NULL) == HASH_K… in make_persistent_sdl_attribute()
2660 …zend_hash_add(pattr->extraAttributes, key, key_len, (void*)&pextra, sizeof(sdlExtraAttributePtr), … in make_persistent_sdl_attribute()
2663 zend_hash_move_forward(attr->extraAttributes); in make_persistent_sdl_attribute()