Lines Matching refs:m_host
121 OUString m_host; member in stoc_sec::SocketPermission
148 , m_host( perm.Host ) in SocketPermission()
159 sal_Int32 colon = m_host.indexOf( ':' ); in SocketPermission()
162 sal_Int32 minus = m_host.indexOf( '-', colon +1 ); in SocketPermission()
165 m_lowerPort = m_upperPort = m_host.copy( colon +1 ).toInt32(); in SocketPermission()
169 m_upperPort = m_host.copy( minus +1 ).toInt32(); in SocketPermission()
171 else if (minus == (m_host.getLength() -1)) // N- in SocketPermission()
173 m_lowerPort = m_host.copy( colon +1, m_host.getLength() -1 -colon -1 ).toInt32(); in SocketPermission()
177 m_lowerPort = m_host.copy( colon +1, minus - colon -1 ).toInt32(); in SocketPermission()
178 m_upperPort = m_host.copy( minus +1, m_host.getLength() -minus -1 ).toInt32(); in SocketPermission()
180 m_host = m_host.copy( 0, colon ); in SocketPermission()
193 SocketAddr::resolveHostname( m_host, addr ); in resolveHost()
228 if (m_host.equalsIgnoreAsciiCase( demanded.m_host )) in implies()
233 OUString const & demanded_host = demanded.m_host; in implies()
234 if (demanded_host.getLength() <= m_host.getLength()) in implies()
236 sal_Int32 len = m_host.getLength() -1; // skip star in implies()
239 m_host.pData->buffer + 1, len )); in implies()
258 buf.append( m_host ); in toString()