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);
1662 sal_Char *pBuffer, sal_uInt32 BufferSize) in osl_psz_getHostnameOfSocketAddr() argument
1668 strncpy(pBuffer, pHostAddr->pHostName, BufferSize); in osl_psz_getHostnameOfSocketAddr()
1670 pBuffer[BufferSize - 1] = '\0'; in osl_psz_getHostnameOfSocketAddr()
1699 sal_Char *pBuffer, sal_uInt32 BufferSize) in osl_psz_getDottedInetAddrOfSocketAddr() argument
1709 strncpy(pBuffer, inet_ntoa(pSystemInetAddr->sin_addr), BufferSize); in osl_psz_getDottedInetAddrOfSocketAddr()
1710 pBuffer[BufferSize - 1] = '\0'; in osl_psz_getDottedInetAddrOfSocketAddr()
2349 sal_uInt32 BufferSize, in osl_receiveFromSocket() argument
2372 BufferSize, in osl_receiveFromSocket()
2891 … osl_psz_getLastSocketErrorDescription(oslSocket pSocket, sal_Char* pBuffer, sal_uInt32 BufferSize) in osl_psz_getLastSocketErrorDescription() argument
2894 pBuffer[BufferSize-1]= '\0'; in osl_psz_getLastSocketErrorDescription()
2898 strncpy(pBuffer, strerror(EINVAL), BufferSize-1); in osl_psz_getLastSocketErrorDescription()
2902 strncpy(pBuffer, strerror(pSocket->m_nLastError), BufferSize-1); in osl_psz_getLastSocketErrorDescription()