Lines Matching refs:cn
1091 sal_Char *cn; in _osl_hostentToHostAddr() local
1092 cn= (sal_Char *)malloc(strlen (he->h_name) + 1); in _osl_hostentToHostAddr()
1093 OSL_ASSERT(cn); in _osl_hostentToHostAddr()
1094 if (cn == NULL) in _osl_hostentToHostAddr()
1097 strcpy(cn, he->h_name); in _osl_hostentToHostAddr()
1102 cn= (sal_Char *)malloc(strlen (he->h_name) + 1); in _osl_hostentToHostAddr()
1103 OSL_ASSERT(cn); in _osl_hostentToHostAddr()
1104 if (cn == NULL) in _osl_hostentToHostAddr()
1107 strcpy(cn, he->h_name); in _osl_hostentToHostAddr()
1111 cn =_osl_getFullQualifiedDomainName (he->h_name); in _osl_hostentToHostAddr()
1112 OSL_ASSERT(cn); in _osl_hostentToHostAddr()
1113 if (cn == NULL) in _osl_hostentToHostAddr()
1122 free(cn); in _osl_hostentToHostAddr()
1144 free (cn); in _osl_hostentToHostAddr()
1153 free (cn); in _osl_hostentToHostAddr()
1157 pAddr->pHostName= cn; in _osl_hostentToHostAddr()
1200 sal_Char *cn; in osl_psz_createHostAddr() local
1206 cn = (sal_Char *)malloc(strlen (pszHostname) + 1); in osl_psz_createHostAddr()
1207 OSL_ASSERT(cn); in osl_psz_createHostAddr()
1208 if (cn == NULL) in osl_psz_createHostAddr()
1211 strcpy (cn, pszHostname); in osl_psz_createHostAddr()
1217 free (cn); in osl_psz_createHostAddr()
1221 pHostAddr->pHostName= cn; in osl_psz_createHostAddr()