Lines Matching refs:cn
1077 sal_Char *cn; in _osl_hostentToHostAddr() local
1084 cn= (sal_Char *)malloc(strlen (he->h_name) + 1); in _osl_hostentToHostAddr()
1085 OSL_ASSERT(cn); in _osl_hostentToHostAddr()
1086 if (cn == NULL) in _osl_hostentToHostAddr()
1089 strcpy(cn, he->h_name); in _osl_hostentToHostAddr()
1093 cn =_osl_getFullQualifiedDomainName (he->h_name); in _osl_hostentToHostAddr()
1094 OSL_ASSERT(cn); in _osl_hostentToHostAddr()
1095 if (cn == NULL) in _osl_hostentToHostAddr()
1103 free(cn); in _osl_hostentToHostAddr()
1125 free (cn); in _osl_hostentToHostAddr()
1134 free (cn); in _osl_hostentToHostAddr()
1138 pAddr->pHostName= cn; in _osl_hostentToHostAddr()
1180 sal_Char *cn; in osl_psz_createHostAddr() local
1186 cn = (sal_Char *)malloc(strlen (pszHostname) + 1); in osl_psz_createHostAddr()
1187 OSL_ASSERT(cn); in osl_psz_createHostAddr()
1188 if (cn == NULL) in osl_psz_createHostAddr()
1191 strcpy (cn, pszHostname); in osl_psz_createHostAddr()
1197 free (cn); in osl_psz_createHostAddr()
1201 pHostAddr->pHostName= cn; in osl_psz_createHostAddr()