Lines Matching refs:BufferSize
447 oslSocketAddr Addr, sal_Char *pBuffer, sal_uInt32 BufferSize);
450 oslSocketAddr Addr, sal_Char *pBuffer, sal_uInt32 BufferSize);
453 oslSocket Socket, sal_Char* pBuffer, sal_uInt32 BufferSize);
1641 sal_Char *pBuffer, sal_uInt32 BufferSize) in osl_psz_getHostnameOfSocketAddr() argument
1647 strncpy(pBuffer, pHostAddr->pHostName, BufferSize); in osl_psz_getHostnameOfSocketAddr()
1649 pBuffer[BufferSize - 1] = '\0'; in osl_psz_getHostnameOfSocketAddr()
1678 sal_Char *pBuffer, sal_uInt32 BufferSize) in osl_psz_getDottedInetAddrOfSocketAddr() argument
1688 strncpy(pBuffer, inet_ntoa(pSystemInetAddr->sin_addr), BufferSize); in osl_psz_getDottedInetAddrOfSocketAddr()
1689 pBuffer[BufferSize - 1] = '\0'; in osl_psz_getDottedInetAddrOfSocketAddr()
2311 sal_uInt32 BufferSize, in osl_receiveFromSocket() argument
2334 BufferSize, in osl_receiveFromSocket()
2861 … osl_psz_getLastSocketErrorDescription(oslSocket pSocket, sal_Char* pBuffer, sal_uInt32 BufferSize) in osl_psz_getLastSocketErrorDescription() argument
2864 pBuffer[BufferSize-1]= '\0'; in osl_psz_getLastSocketErrorDescription()
2868 strncpy(pBuffer, strerror(EINVAL), BufferSize-1); in osl_psz_getLastSocketErrorDescription()
2872 strncpy(pBuffer, strerror(pSocket->m_nLastError), BufferSize-1); in osl_psz_getLastSocketErrorDescription()