dispid_to_name     45 ext/com_dotnet/com_wrapper.c 	HashTable *dispid_to_name;	/* keep track of dispid -> name mappings */
dispid_to_name    259 ext/com_dotnet/com_wrapper.c 	if (NULL != (name = zend_hash_index_find(disp->dispid_to_name, id))) {
dispid_to_name    386 ext/com_dotnet/com_wrapper.c 	if (NULL != (name = zend_hash_index_find(disp->dispid_to_name, id))) {
dispid_to_name    405 ext/com_dotnet/com_wrapper.c 	while(!zend_hash_index_exists(disp->dispid_to_name, next))
dispid_to_name    408 ext/com_dotnet/com_wrapper.c 	if (zend_hash_index_exists(disp->dispid_to_name, next)) {
dispid_to_name    454 ext/com_dotnet/com_wrapper.c 	if (disp->dispid_to_name == NULL) {
dispid_to_name    455 ext/com_dotnet/com_wrapper.c 		ALLOC_HASHTABLE(disp->dispid_to_name);
dispid_to_name    458 ext/com_dotnet/com_wrapper.c 		zend_hash_init(disp->dispid_to_name, 0, NULL, ZVAL_PTR_DTOR, 0);
dispid_to_name    485 ext/com_dotnet/com_wrapper.c 			pid = zend_hash_next_free_element(disp->dispid_to_name);
dispid_to_name    486 ext/com_dotnet/com_wrapper.c 			zend_hash_index_update(disp->dispid_to_name, pid, &tmp2);
dispid_to_name    520 ext/com_dotnet/com_wrapper.c 			pid = zend_hash_next_free_element(disp->dispid_to_name);
dispid_to_name    521 ext/com_dotnet/com_wrapper.c 			zend_hash_index_update(disp->dispid_to_name, pid, &tmp2);
dispid_to_name    574 ext/com_dotnet/com_wrapper.c 	zend_hash_destroy(disp->dispid_to_name);
dispid_to_name    576 ext/com_dotnet/com_wrapper.c 	FREE_HASHTABLE(disp->dispid_to_name);
dispid_to_name    594 ext/com_dotnet/com_wrapper.c 	disp->dispid_to_name = id_to_name;