Searched refs:seqRead (Results 1 – 5 of 5) sorted by relevance
/aoo41x/main/io/test/stm/ |
H A D | marktest.cxx | 221 Sequence<sal_Int8> seqRead( seqWrite.getLength() ); in testSimple() local 227 rInput->readBytes( seqRead , rInput->available() ); in testSimple() 239 rInput->readBytes( seqRead , seqWrite.getLength() ); in testSimple() 350 rInput->readBytes( seqRead , 4 ); in testSimple() 352 ERROR_ASSERT( 3 == seqRead.getArray()[0] , "rewrite didn't work" ); in testSimple() 581 Sequence<sal_Int8> seqRead(10); in testSimple() local 591 rInput->readBytes( seqRead , 10 ); in testSimple() 603 rInput->readBytes( seqRead , 10 ); in testSimple() 604 ERROR_ASSERT( 10 == seqRead.getArray()[0] , "marking error" ); in testSimple() 612 rInput->readBytes( seqRead , 10 ); in testSimple() [all …]
|
H A D | pipetest.cxx | 258 Sequence<sal_Int8> seqRead; in testSimple() local 261 input->readBytes( seqRead , input->available() ); in testSimple() 276 input->readBytes( seqRead , 5 ); in testSimple() 277 ERROR_ASSERT( ! strcmp( (char*) seqRead.getArray() , in testSimple() 300 ERROR_ASSERT(! input->readBytes( seqRead , 1 ), "eof not found !" ); in testSimple() 305 input->readBytes( seqRead , 1 ); in testSimple() 341 Sequence<sal_Int8> seqRead; in testBufferResizing() local 354 input->readBytes( seqRead, createIntSeq(i).getLength() ); in testBufferResizing() 355 ERROR_ASSERT( ! strcmp( (char*) seqRead.getArray() , in testBufferResizing() 379 Sequence<sal_Int8> seqRead; in testMultithreading() local [all …]
|
/aoo41x/main/extensions/test/stm/ |
H A D | marktest.cxx | 222 Sequence<BYTE> seqRead( seqWrite.getLen() ); in testSimple() local 228 rInput->readBytes( seqRead , rInput->available() ); in testSimple() 240 rInput->readBytes( seqRead , seqWrite.getLen() ); in testSimple() 350 rInput->readBytes( seqRead , 4 ); in testSimple() 352 ERROR_ASSERT( 3 == seqRead.getArray()[0] , "rewrite didn't work" ); in testSimple() 582 Sequence<BYTE> seqRead(10); in testSimple() local 592 rInput->readBytes( seqRead , 10 ); in testSimple() 604 rInput->readBytes( seqRead , 10 ); in testSimple() 605 ERROR_ASSERT( 10 == seqRead.getArray()[0] , "marking error" ); in testSimple() 613 rInput->readBytes( seqRead , 10 ); in testSimple() [all …]
|
H A D | pipetest.cxx | 261 Sequence<BYTE> seqRead; in testSimple() local 264 input->readBytes( seqRead , input->available() ); in testSimple() 279 input->readBytes( seqRead , 5 ); in testSimple() 280 ERROR_ASSERT( ! strcmp( (char*) seqRead.getArray() , in testSimple() 307 input->readBytes( seqRead , 1 ); in testSimple() 326 Sequence<BYTE> seqRead; in testBufferResizing() local 338 input->readBytes( seqRead, createIntSeq(i).getLen() ); in testBufferResizing() 339 ERROR_ASSERT( ! strcmp( (char*) seqRead.getArray() , in testBufferResizing() 363 Sequence<BYTE> seqRead; in testMultithreading() local 373 if( 0 == input->readBytes( seqRead, createIntSeq(i).getLen() ) ) { in testMultithreading() [all …]
|
/aoo41x/main/odk/examples/cpp/remoteclient/ |
H A D | remoteclient.cxx | 92 Sequence< sal_Int8> seqRead; in testPipe() local 93 if( rInputStream->readBytes( seqRead ,3 ) != 3 ) in testPipe() 99 if( seqRead.getConstArray()[0] != 5 || in testPipe() 100 seqRead.getConstArray()[1] != 4 || in testPipe() 101 seqRead.getConstArray()[2] != 3 ) in testPipe() 108 if( rInputStream->readBytes( seqRead , 4 ) != 3 ) in testPipe() 114 if( seqRead.getConstArray()[0] != 2 || in testPipe() 115 seqRead.getConstArray()[1] != 1 || in testPipe() 116 seqRead.getConstArray()[2] != 0 ) in testPipe()
|
Completed in 49 milliseconds