soap_functions     87 ext/soap/php_soap.h 	} soap_functions;
soap_functions    393 ext/soap/soap.c static const zend_function_entry soap_functions[] = {
soap_functions    456 ext/soap/soap.c   soap_functions,
soap_functions   1233 ext/soap/soap.c 	service->soap_functions.functions_all = FALSE;
soap_functions   1234 ext/soap/soap.c 	service->soap_functions.ft = emalloc(sizeof(HashTable));
soap_functions   1235 ext/soap/soap.c 	zend_hash_init(service->soap_functions.ft, 0, NULL, ZVAL_PTR_DTOR, 0);
soap_functions   1379 ext/soap/soap.c 	} else if (service->soap_functions.functions_all == TRUE) {
soap_functions   1381 ext/soap/soap.c 	} else if (service->soap_functions.ft != NULL) {
soap_functions   1384 ext/soap/soap.c 		ZEND_HASH_FOREACH_VAL(service->soap_functions.ft, name) {
soap_functions   1424 ext/soap/soap.c 			if (service->soap_functions.ft == NULL) {
soap_functions   1425 ext/soap/soap.c 				service->soap_functions.functions_all = FALSE;
soap_functions   1426 ext/soap/soap.c 				service->soap_functions.ft = emalloc(sizeof(HashTable));
soap_functions   1427 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   1448 ext/soap/soap.c 				zend_hash_update(service->soap_functions.ft, key, &function_copy);
soap_functions   1464 ext/soap/soap.c 		if (service->soap_functions.ft == NULL) {
soap_functions   1465 ext/soap/soap.c 			service->soap_functions.functions_all = FALSE;
soap_functions   1466 ext/soap/soap.c 			service->soap_functions.ft = emalloc(sizeof(HashTable));
soap_functions   1467 ext/soap/soap.c 			zend_hash_init(service->soap_functions.ft, 0, NULL, ZVAL_PTR_DTOR, 0);
soap_functions   1471 ext/soap/soap.c 		zend_hash_update(service->soap_functions.ft, key, &function_copy);
soap_functions   1475 ext/soap/soap.c 			if (service->soap_functions.ft != NULL) {
soap_functions   1476 ext/soap/soap.c 				zend_hash_destroy(service->soap_functions.ft);
soap_functions   1477 ext/soap/soap.c 				efree(service->soap_functions.ft);
soap_functions   1478 ext/soap/soap.c 				service->soap_functions.ft = NULL;
soap_functions   1480 ext/soap/soap.c 			service->soap_functions.functions_all = TRUE;
soap_functions   1789 ext/soap/soap.c 		if (service->soap_functions.functions_all == TRUE) {
soap_functions   1792 ext/soap/soap.c 			function_table = service->soap_functions.ft;
soap_functions   4857 ext/soap/soap.c 	if (service->soap_functions.ft) {
soap_functions   4858 ext/soap/soap.c 		zend_hash_destroy(service->soap_functions.ft);
soap_functions   4859 ext/soap/soap.c 		efree(service->soap_functions.ft);