dispid_to_name     45 ext/com_dotnet/com_wrapper.c 	HashTable *dispid_to_name;	/* keep track of dispid -> name mappings */
dispid_to_name    260 ext/com_dotnet/com_wrapper.c 	if (SUCCESS == zend_hash_index_find(disp->dispid_to_name, id, (void**)&name)) {
dispid_to_name    391 ext/com_dotnet/com_wrapper.c 	if (SUCCESS == zend_hash_index_find(disp->dispid_to_name, id, (void**)&name)) {
dispid_to_name    410 ext/com_dotnet/com_wrapper.c 	while(!zend_hash_index_exists(disp->dispid_to_name, next))
dispid_to_name    413 ext/com_dotnet/com_wrapper.c 	if (zend_hash_index_exists(disp->dispid_to_name, next)) {
dispid_to_name    460 ext/com_dotnet/com_wrapper.c 	if (disp->dispid_to_name == NULL) {
dispid_to_name    461 ext/com_dotnet/com_wrapper.c 		ALLOC_HASHTABLE(disp->dispid_to_name);
dispid_to_name    464 ext/com_dotnet/com_wrapper.c 		zend_hash_init(disp->dispid_to_name, 0, NULL, ZVAL_PTR_DTOR, 0);
dispid_to_name    489 ext/com_dotnet/com_wrapper.c 			pid = zend_hash_next_free_element(disp->dispid_to_name);
dispid_to_name    490 ext/com_dotnet/com_wrapper.c 			zend_hash_index_update(disp->dispid_to_name, pid, (void*)&tmp, sizeof(zval *), NULL);
dispid_to_name    521 ext/com_dotnet/com_wrapper.c 			pid = zend_hash_next_free_element(disp->dispid_to_name);
dispid_to_name    522 ext/com_dotnet/com_wrapper.c 			zend_hash_index_update(disp->dispid_to_name, pid, (void*)&tmp, sizeof(zval *), NULL);
dispid_to_name    570 ext/com_dotnet/com_wrapper.c 	zend_hash_destroy(disp->dispid_to_name);
dispid_to_name    572 ext/com_dotnet/com_wrapper.c 	FREE_HASHTABLE(disp->dispid_to_name);
dispid_to_name    592 ext/com_dotnet/com_wrapper.c 	disp->dispid_to_name = id_to_name;