host              614 ompi/dpm/dpm.c     char host[OPAL_MAX_INFO_VAL];  /*** should define OMPI_HOST_MAX ***/
host              713 ompi/dpm/dpm.c             ompi_info_get (array_of_info[i], "personality", sizeof(host) - 1, host, &flag);
host              718 ompi/dpm/dpm.c                 opal_value_load(info, host, OPAL_STRING);
host              723 ompi/dpm/dpm.c             ompi_info_get (array_of_info[i], "host", sizeof(host) - 1, host, &flag);
host              727 ompi/dpm/dpm.c                 opal_value_load(info, host, OPAL_STRING);
host              732 ompi/dpm/dpm.c             ompi_info_get (array_of_info[i], "hostfile", sizeof(host) - 1, host, &flag);
host              736 ompi/dpm/dpm.c                 opal_value_load(info, host, OPAL_STRING);
host              741 ompi/dpm/dpm.c             ompi_info_get (array_of_info[i], "add-hostfile", sizeof(host) - 1, host, &flag);
host              745 ompi/dpm/dpm.c                 opal_value_load(info, host, OPAL_STRING);
host              750 ompi/dpm/dpm.c             ompi_info_get (array_of_info[i], "add-host", sizeof(host) - 1, host, &flag);
host              754 ompi/dpm/dpm.c                 opal_value_load(info, host, OPAL_STRING);
host              759 ompi/dpm/dpm.c             ompi_info_get (array_of_info[i], "env", sizeof(host)-1, host, &flag);
host              761 ompi/dpm/dpm.c                 envars = opal_argv_split(host, '\n');
host              124 ompi/runtime/ompi_mpi_abort.c     char *host, hostname[OPAL_MAXHOSTNAMELEN];
host              136 ompi/runtime/ompi_mpi_abort.c         host = ompi_process_info.nodename;
host              139 ompi/runtime/ompi_mpi_abort.c         host = hostname;
host              151 ompi/runtime/ompi_mpi_abort.c                 fprintf(stderr, "[%s:%05d] [%d] func:%s\n", host, (int) pid,
host              172 ompi/runtime/ompi_mpi_abort.c                 host, (int) pid,
host              118 opal/mca/event/libevent2022/libevent/http.c fake_getnameinfo(const struct sockaddr *sa, size_t salen, char *host,
host              131 opal/mca/event/libevent2022/libevent/http.c 	if (host != NULL) {
host              133 opal/mca/event/libevent2022/libevent/http.c 			if (strlcpy(host, inet_ntoa(sin->sin_addr),
host              145 opal/mca/event/libevent2022/libevent/http.c 			if (strlcpy(host, hp->h_name, hostlen) >= hostlen)
host             3598 opal/mca/event/libevent2022/libevent/http.c 	const char *host = NULL;
host             3604 opal/mca/event/libevent2022/libevent/http.c 		host = evhttp_uri_get_host(req->uri_elems);
host             3605 opal/mca/event/libevent2022/libevent/http.c 	if (!host && req->input_headers) {
host             3609 opal/mca/event/libevent2022/libevent/http.c 		host = evhttp_find_header(req->input_headers, "Host");
host             3612 opal/mca/event/libevent2022/libevent/http.c 		if (host) {
host             3613 opal/mca/event/libevent2022/libevent/http.c 			p = host + strlen(host) - 1;
host             3614 opal/mca/event/libevent2022/libevent/http.c 			while (p > host && EVUTIL_ISDIGIT(*p))
host             3616 opal/mca/event/libevent2022/libevent/http.c 			if (p > host && *p == ':') {
host             3617 opal/mca/event/libevent2022/libevent/http.c 				len = p - host;
host             3623 opal/mca/event/libevent2022/libevent/http.c 				memcpy(req->host_cache, host, len);
host             3625 opal/mca/event/libevent2022/libevent/http.c 				host = req->host_cache;
host             3630 opal/mca/event/libevent2022/libevent/http.c 	return host;
host             3917 opal/mca/event/libevent2022/libevent/http.c 	char *host; /* hostname, IP address, or NULL */
host             4063 opal/mca/event/libevent2022/libevent/http.c 		uri->host = mm_strdup("");
host             4064 opal/mca/event/libevent2022/libevent/http.c 		if (uri->host == NULL) {
host             4109 opal/mca/event/libevent2022/libevent/http.c 	uri->host = mm_malloc(eos-cp+1);
host             4110 opal/mca/event/libevent2022/libevent/http.c 	if (uri->host == NULL) {
host             4114 opal/mca/event/libevent2022/libevent/http.c 	memcpy(uri->host, cp, eos-cp);
host             4115 opal/mca/event/libevent2022/libevent/http.c 	uri->host[eos-cp] = '\0';
host             4339 opal/mca/event/libevent2022/libevent/http.c 	_URI_FREE_STR(host);
host             4368 opal/mca/event/libevent2022/libevent/http.c 	if (uri->host) {
host             4372 opal/mca/event/libevent2022/libevent/http.c 		_URI_ADD(host);
host             4425 opal/mca/event/libevent2022/libevent/http.c 	return uri->host;
host             4479 opal/mca/event/libevent2022/libevent/http.c evhttp_uri_set_host(struct evhttp_uri *uri, const char *host)
host             4481 opal/mca/event/libevent2022/libevent/http.c 	if (host) {
host             4482 opal/mca/event/libevent2022/libevent/http.c 		if (host[0] == '[') {
host             4483 opal/mca/event/libevent2022/libevent/http.c 			if (! bracket_addr_ok(host, host+strlen(host)))
host             4486 opal/mca/event/libevent2022/libevent/http.c 			if (! regname_ok(host, host+strlen(host)))
host             4491 opal/mca/event/libevent2022/libevent/http.c 	_URI_SET_STR(host);
host              765 opal/mca/event/libevent2022/libevent/include/event2/http.h int evhttp_uri_set_host(struct evhttp_uri *uri, const char *host);
host              847 opal/mca/pmix/pmix4x/pmix/src/mca/ptl/tcp/ptl_tcp.c     char *p, *p2, *host;
host              880 opal/mca/pmix/pmix4x/pmix/src/mca/ptl/tcp/ptl_tcp.c         host = p;
host              884 opal/mca/pmix/pmix4x/pmix/src/mca/ptl/tcp/ptl_tcp.c         in->sin_addr.s_addr = inet_addr(host);
host              911 opal/mca/pmix/pmix4x/pmix/src/mca/ptl/tcp/ptl_tcp.c             host = &p[1];
host              913 opal/mca/pmix/pmix4x/pmix/src/mca/ptl/tcp/ptl_tcp.c             host = &p[0];
host              918 opal/mca/pmix/pmix4x/pmix/src/mca/ptl/tcp/ptl_tcp.c         if (0 == inet_pton(AF_INET6, host, (void*)&in6->sin6_addr)) {
host              919 opal/mca/pmix/pmix4x/pmix/src/mca/ptl/tcp/ptl_tcp.c             pmix_output (0, "ptl_tcp_parse_uri: Could not convert %s\n", host);
host              158 opal/mca/pmix/pmix4x/pmix/src/tools/pattrs/pattrs.c     char *host;
host              231 opal/mca/pmix/pmix4x/pmix/src/tools/pattrs/pattrs.c       &pmix_pattrs_globals.host, PMIX_CMD_LINE_TYPE_STRING,
host              346 opal/mca/pmix/pmix4x/pmix/src/tools/pattrs/pattrs.c         && (pmix_pattrs_globals.client || pmix_pattrs_globals.server || pmix_pattrs_globals.tool || NULL != pmix_pattrs_globals.host)) {
host              391 opal/mca/pmix/pmix4x/pmix/src/tools/pattrs/pattrs.c     if (!pmix_pattrs_globals.hostfns && NULL == pmix_pattrs_globals.host) {
host              449 opal/mca/pmix/pmix4x/pmix/src/tools/pattrs/pattrs.c         PMIX_INFO_LOAD(&query.qualifiers[0], PMIX_HOST_ATTRIBUTES, pmix_pattrs_globals.host, PMIX_STRING);
host               81 orte/mca/iof/hnp/iof_hnp.h int orte_iof_hnp_send_data_to_endpoint(orte_process_name_t *host,
host               46 orte/mca/iof/hnp/iof_hnp_send.c int orte_iof_hnp_send_data_to_endpoint(orte_process_name_t *host,
host               60 orte/mca/iof/hnp/iof_hnp_send.c     if (ORTE_JOB_FAMILY(host->jobid) == ORTE_JOB_FAMILY(ORTE_PROC_MY_NAME->jobid)
host               96 orte/mca/iof/hnp/iof_hnp_send.c     if (ORTE_PROC_MY_NAME->jobid == host->jobid &&
host               97 orte/mca/iof/hnp/iof_hnp_send.c         ORTE_VPID_WILDCARD == host->vpid) {
host              112 orte/mca/iof/hnp/iof_hnp_send.c     if (0 > (rc = orte_rml.send_buffer_nb(host, buf, ORTE_RML_TAG_IOF_PROXY,
host              786 orte/mca/oob/tcp/oob_tcp_component.c                      const char* host,
host              796 orte/mca/oob/tcp/oob_tcp_component.c         in->sin_addr.s_addr = inet_addr(host);
host              808 orte/mca/oob/tcp/oob_tcp_component.c         if (0 == inet_pton(AF_INET6, host, (void*)&in6->sin6_addr)) {
host              809 orte/mca/oob/tcp/oob_tcp_component.c             opal_output (0, "oob_tcp_parse_uri: Could not convert %s\n", host);
host              826 orte/mca/oob/tcp/oob_tcp_component.c     char *tcpuri=NULL, *host, *ports;
host              848 orte/mca/oob/tcp/oob_tcp_component.c             host = tcpuri + strlen("tcp://");
host              852 orte/mca/oob/tcp/oob_tcp_component.c             host = tcpuri + strlen("tcp6://");
host              890 orte/mca/oob/tcp/oob_tcp_component.c         hptr = host;
host              893 orte/mca/oob/tcp/oob_tcp_component.c             if ('[' == host[0]) {
host              894 orte/mca/oob/tcp/oob_tcp_component.c                 hptr = &host[1];
host              896 orte/mca/oob/tcp/oob_tcp_component.c             if (']' == host[strlen(host)-1]) {
host              897 orte/mca/oob/tcp/oob_tcp_component.c                 host[strlen(host)-1] = '\0';
host              914 orte/mca/oob/tcp/oob_tcp_component.c                     host = mca_oob_tcp_component.ipv6conns[0];
host              921 orte/mca/oob/tcp/oob_tcp_component.c                     host = mca_oob_tcp_component.ipv4conns[0];
host              926 orte/mca/oob/tcp/oob_tcp_component.c                 host = addrs[j];
host              945 orte/mca/oob/tcp/oob_tcp_component.c             if (ORTE_SUCCESS != (rc = parse_uri(af_family, host, ports, (struct sockaddr_storage*) &(maddr->addr)))) {
host              960 orte/mca/oob/tcp/oob_tcp_component.c                                 (NULL == host) ? "NULL" : host,
host              166 orte/mca/oob/tcp/oob_tcp_connection.c     char *host;
host              311 orte/mca/oob/tcp/oob_tcp_connection.c         host = orte_get_proc_hostname(&(peer->name));
host              312 orte/mca/oob/tcp/oob_tcp_connection.c         if (NULL == host && NULL != peer->active_addr) {
host              313 orte/mca/oob/tcp/oob_tcp_connection.c             host = opal_net_get_hostname((struct sockaddr*)&(peer->active_addr->addr));
host              328 orte/mca/oob/tcp/oob_tcp_connection.c                     (NULL == host) ? "<unknown>" : host);
host              106 orte/test/system/orte_dfs.c     char *uri, *host, *path;
host              132 orte/test/system/orte_dfs.c             host = strdup(argv[2]);
host              134 orte/test/system/orte_dfs.c             host = NULL;
host              137 orte/test/system/orte_dfs.c         if (NULL == (uri = opal_filename_to_uri(argv[1], host))) {
host              188 orte/test/system/orte_dfs.c             opal_dss.pack(buf, &host, 1, OPAL_STRING);
host              244 orte/test/system/orte_dfs.c                 if (OPAL_SUCCESS != (rc = opal_dss.unpack(xfer, &host, &cnt, OPAL_STRING))) {
host              270 orte/test/system/orte_dfs.c                             (int)partition, (NULL == host) ? "NULL" : host, path, (int)length, (int)offset);
host              275 orte/test/system/orte_dfs.c                     if (NULL == (uri = opal_filename_to_uri(path, host))) {
host               43 oshmem/runtime/oshmem_shmem_abort.c     char *host, hostname[OPAL_MAXHOSTNAMELEN];
host               58 oshmem/runtime/oshmem_shmem_abort.c         host = ompi_process_info.nodename;
host               61 oshmem/runtime/oshmem_shmem_abort.c         host = hostname;
host               70 oshmem/runtime/oshmem_shmem_abort.c                    host,
host               83 oshmem/runtime/oshmem_shmem_abort.c                         host,
host              107 oshmem/runtime/oshmem_shmem_abort.c                            host,
host              112 oshmem/runtime/oshmem_shmem_abort.c                     host,
host               44 test/util/orte_universe_setup_file_io.c     orte_universe_info.host = strdup("test-host.domain.org");
host              100 test/util/orte_universe_setup_file_io.c         0 != strcmp(orte_universe_info.host, univ.host) ||