soap_functions     89 ext/soap/php_soap.h 	} soap_functions;
soap_functions    394 ext/soap/soap.c static const zend_function_entry soap_functions[] = {
soap_functions    457 ext/soap/soap.c   soap_functions,
soap_functions   1211 ext/soap/soap.c 	service->soap_functions.functions_all = FALSE;
soap_functions   1212 ext/soap/soap.c 	service->soap_functions.ft = emalloc(sizeof(HashTable));
soap_functions   1213 ext/soap/soap.c 	zend_hash_init(service->soap_functions.ft, 0, NULL, ZVAL_PTR_DTOR, 0);
soap_functions   1364 ext/soap/soap.c 	} else if (service->soap_functions.functions_all == TRUE) {
soap_functions   1366 ext/soap/soap.c 	} else if (service->soap_functions.ft != NULL) {
soap_functions   1370 ext/soap/soap.c 		zend_hash_internal_pointer_reset_ex(service->soap_functions.ft, &pos);
soap_functions   1371 ext/soap/soap.c 		while (zend_hash_get_current_data_ex(service->soap_functions.ft, (void **)&name, &pos) != FAILURE) {
soap_functions   1373 ext/soap/soap.c 			zend_hash_move_forward_ex(service->soap_functions.ft, &pos);
soap_functions   1415 ext/soap/soap.c 			if (service->soap_functions.ft == NULL) {
soap_functions   1416 ext/soap/soap.c 				service->soap_functions.functions_all = FALSE;
soap_functions   1417 ext/soap/soap.c 				service->soap_functions.ft = emalloc(sizeof(HashTable));
soap_functions   1418 ext/soap/soap.c 				zend_hash_init(service->soap_functions.ft, zend_hash_num_elements(Z_ARRVAL_P(function_name)), NULL, ZVAL_PTR_DTOR, 0);
soap_functions   1443 ext/soap/soap.c 				zend_hash_update(service->soap_functions.ft, key, key_len+1, &function_copy, sizeof(zval *), NULL);
soap_functions   1462 ext/soap/soap.c 		if (service->soap_functions.ft == NULL) {
soap_functions   1463 ext/soap/soap.c 			service->soap_functions.functions_all = FALSE;
soap_functions   1464 ext/soap/soap.c 			service->soap_functions.ft = emalloc(sizeof(HashTable));
soap_functions   1465 ext/soap/soap.c 			zend_hash_init(service->soap_functions.ft, 0, NULL, ZVAL_PTR_DTOR, 0);
soap_functions   1470 ext/soap/soap.c 		zend_hash_update(service->soap_functions.ft, key, key_len+1, &function_copy, sizeof(zval *), NULL);
soap_functions   1474 ext/soap/soap.c 			if (service->soap_functions.ft != NULL) {
soap_functions   1475 ext/soap/soap.c 				zend_hash_destroy(service->soap_functions.ft);
soap_functions   1476 ext/soap/soap.c 				efree(service->soap_functions.ft);
soap_functions   1477 ext/soap/soap.c 				service->soap_functions.ft = NULL;
soap_functions   1479 ext/soap/soap.c 			service->soap_functions.functions_all = TRUE;
soap_functions   1770 ext/soap/soap.c 		if (service->soap_functions.functions_all == TRUE) {
soap_functions   1773 ext/soap/soap.c 			function_table = service->soap_functions.ft;
soap_functions   4889 ext/soap/soap.c 	if (service->soap_functions.ft) {
soap_functions   4890 ext/soap/soap.c 		zend_hash_destroy(service->soap_functions.ft);
soap_functions   4891 ext/soap/soap.c 		efree(service->soap_functions.ft);