Lines Matching refs:_nValue
290 bool checkValues(sal_Int32 _nLength, int _nValue) in checkValues() argument
295 if (m_pBuffer[i] != _nValue) in checkValues()
303 void createBuffer(sal_Int32 _nLength, int _nValue) in createBuffer() argument
309 memset(m_pBuffer, _nValue, m_nBufferSize); in createBuffer()
382 ReadSocketThread(sal_Int32 _nBufferSize, int _nValue, osl::Condition &_aCond ) in ReadSocketThread() argument
383 : m_nValue( _nValue ), in ReadSocketThread()
503 WriteSocketThread(sal_Int32 _nBufferSize, int _nValue, osl::Condition &_aCond ) in WriteSocketThread() argument
512 m_aValues.createBuffer(_nBufferSize, _nValue); in WriteSocketThread()
606 void write_read(sal_Int32 _nBufferSize, int _nValue) in write_read() argument
610 WriteSocketThread myServerThread(_nBufferSize, _nValue, aCondition); in write_read()
611 ReadSocketThread myClientThread(_nBufferSize, _nValue, aCondition); in write_read()