Searched refs:nRead1 (Results 1 – 3 of 3) sorted by relevance
/trunk/main/sal/qa/osl/socket/ |
H A D | osl_StreamSocket.cxx | 806 sal_Int32 nRead1 = ssConnectionSocket.read( pReadBuffer, 11 ); in TEST_F() local 811 sal_Int32 nRead2 = ssConnectionSocket.read( pReadBuffer + nRead1, 12 ); in TEST_F() 812 sal_Int32 nRead3 = ssConnectionSocket.read( pReadBuffer + nRead1 + nRead2, 12 ); in TEST_F() 813 … printf("after read 2, nRead1 is %d, nRead2 is %d, nRead3 is %d \n", nRead1, nRead2, nRead3 ); in TEST_F() 824 …ASSERT_TRUE(nRead1 > 0 && nRead3 == 0) << "test for shutdown read direction: the socket can not r… in TEST_F() 826 …ASSERT_TRUE(nRead1 > 0 && nRead2 == 0 && nRead3 == 0) << "test for shutdown read direction: the s… in TEST_F() 853 sal_Int32 nRead1 = ssConnectionSocket.read( pReadBuffer, 11 ); in TEST_F() local 857 sal_Int32 nRead3 = ssConnectionSocket.read( pReadBuffer + nRead1 , 12 ); in TEST_F() 858 … printf("after read 2, nRead1 is %d, nWrite is %d, nRead3 is %d\n", nRead1, nWrite, nRead3 ); in TEST_F() 863 …ASSERT_TRUE(nRead1 > 0 && nWrite == 0 && nRead3 > 0) << "test for shutdown read direction: the s… in TEST_F()
|
H A D | osl_Socket.cxx | 2702 sal_Int32 nRead1 = ssConnectionSocket.read( pReadBuffer, 11 ); in TEST_F() local 2707 sal_Int32 nRead2 = ssConnectionSocket.read( pReadBuffer + nRead1, 12 ); in TEST_F() 2708 sal_Int32 nRead3 = ssConnectionSocket.read( pReadBuffer + nRead1 + nRead2, 12 ); in TEST_F() 2709 … printf("after read 2, nRead1 is %d, nRead2 is %d, nRead3 is %d \n", nRead1, nRead2, nRead3 ); in TEST_F() 2720 …ASSERT_TRUE(nRead1 > 0 && nRead3 == 0) << "test for shutdown read direction: the socket can not r… in TEST_F() 2722 …ASSERT_TRUE(nRead1 > 0 && nRead2 == 0 && nRead3 == 0) << "test for shutdown read direction: the s… in TEST_F() 2748 sal_Int32 nRead1 = ssConnectionSocket.read( pReadBuffer, 11 ); in TEST_F() local 2752 sal_Int32 nRead3 = ssConnectionSocket.read( pReadBuffer + nRead1 , 12 ); in TEST_F() 2753 printf("after read 2, nRead1 is %d, nWrite is %d, nRead3 is %d\n", nRead1, nWrite, nRead3 ); in TEST_F() 2758 …ASSERT_TRUE(nRead1 > 0 && nWrite == 0 && nRead3 > 0) << "test for shutdown read direction: the s… in TEST_F()
|
/trunk/main/package/qa/storages/ |
H A D | TestHelper.java | 1481 int nRead1 = 0; in compareRawMethodsOnEncrStream() local 1486 nRead1 = xHeadRawStream.readBytes( pRawData1, 32000 ); in compareRawMethodsOnEncrStream() 1489 if ( nRead1 != nRead2 ) in compareRawMethodsOnEncrStream() 1491 …epresentations have different size! nRead1 - nRead2 = " + ( new Integer( nRead1 - nRead2 ) ).toStr… in compareRawMethodsOnEncrStream() 1495 for ( int nInd = 0; nInd < nRead1; nInd++ ) in compareRawMethodsOnEncrStream() 1502 while( nRead1 == 32000 ); in compareRawMethodsOnEncrStream()
|
Completed in 52 milliseconds