Home
last modified time | relevance | path

Searched refs:readBytes (Results 1 – 25 of 208) sorted by relevance

123456789

/trunk/main/registry/source/
H A Dkeyimpl.cxx262 sal_uInt32 readBytes; in getValueInfo() local
268 if (readBytes != VALUE_HEADERSIZE) in getValueInfo()
599 sal_uInt32 readBytes; in getValue() local
605 if (readBytes != VALUE_HEADERSIZE) in getValue()
629 if (readBytes != valueSize) in getValue()
694 sal_uInt32 readBytes; in getLongListValue() local
734 if (readBytes != valueSize) in getLongListValue()
791 sal_uInt32 readBytes; in getStringListValue() local
831 if (readBytes != valueSize) in getStringListValue()
897 sal_uInt32 readBytes; in getUnicodeListValue() local
[all …]
/trunk/main/package/source/package/zipapi/
H A DByteGrabber.cxx56 sal_Int32 SAL_CALL ByteGrabber::readBytes( uno::Sequence< sal_Int8 >& aData, in readBytes() function in ByteGrabber
61 return xStream->readBytes(aData, nBytesToRead ); in readBytes()
106 if (xStream->readBytes(aSequence,1) != 1) in operator >>()
116 if (xStream->readBytes ( aSequence, 2) != 2) in operator >>()
132 if (xStream->readBytes(aSequence, 4) != 4) in operator >>()
150 if (xStream->readBytes(aSequence,1) != 1) in operator >>()
160 if (xStream->readBytes(aSequence, 2) != 2) in operator >>()
175 if (xStream->readBytes(aSequence, 4) != 4) in operator >>()
H A DZipFile.cxx307 if ( nHeaderSize == rStream->readBytes ( aBuffer, nHeaderSize ) ) in StaticFillData()
356 if ( nSaltLength == rStream->readBytes ( aBuffer, nSaltLength ) ) in StaticFillData()
360 if ( nIVLength == rStream->readBytes ( aBuffer, nIVLength ) ) in StaticFillData()
364 if ( nDigestLength == rStream->readBytes ( aBuffer, nDigestLength ) ) in StaticFillData()
417 xStream->readBytes( aReadBuffer, nSize ); in StaticGetDataFromRawStream()
510 xStream->readBytes( aReadBuffer, nSize ); in hasValidPassword()
668 sal_Int32 nRead = aGrabber.readBytes( aNameBuffer, nPathLen ); in readLOC()
711 aGrabber.readBytes ( aBuffer, nLength - nEnd ); in findEND()
772 sal_Int64 nRead = aGrabber.readBytes ( aCENBuffer, nCenLen ); in readCEN()
922 aGrabber.readBytes( aFileName, aEntry.nPathLen ); in recover()
[all …]
H A DXUnbufferedStream.cxx167 sal_Int32 SAL_CALL XUnbufferedStream::readBytes( Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRea… in readBytes() function in XUnbufferedStream
199 nRead = mxZipStream->readBytes ( aPureData, nToRead ); in readBytes()
220 nRead = mxZipStream->readBytes ( in readBytes()
261 sal_Int32 nZipRead = mxZipStream->readBytes( maCompBuffer, nToRead ); in readBytes()
333 return readBytes ( aData, nMaxBytesToRead ); in readSomeBytes()
341 readBytes ( aSequence, nBytesToSkip ); in skipBytes()
/trunk/main/extensions/test/stm/
H A Dpipetest.cxx264 input->readBytes( seqRead , input->available() ); in testSimple()
279 input->readBytes( seqRead , 5 ); in testSimple()
303 ERROR_ASSERT(! input->readBytes( seqRead , 1 ), "eof not found !" ); in testSimple()
307 input->readBytes( seqRead , 1 ); in testSimple()
331 input->readBytes( Sequence<BYTE>() , 100); in testBufferResizing()
338 input->readBytes( seqRead, createIntSeq(i).getLen() ); in testBufferResizing()
345 ERROR_ASSERT( ! input->readBytes( seqRead , 1 ) , "eof not reached !" ); in testBufferResizing()
373 if( 0 == input->readBytes( seqRead, createIntSeq(i).getLen() ) ) { in testMultithreading()
H A Dmarktest.cxx228 rInput->readBytes( seqRead , rInput->available() ); in testSimple()
240 rInput->readBytes( seqRead , seqWrite.getLen() ); in testSimple()
303 rInput->readBytes( aByte ,256); in testSimple()
350 rInput->readBytes( seqRead , 4 ); in testSimple()
592 rInput->readBytes( seqRead , 10 ); in testSimple()
604 rInput->readBytes( seqRead , 10 ); in testSimple()
613 rInput->readBytes( seqRead , 10 ); in testSimple()
620 rInput->readBytes( seqRead , 10 ); in testSimple()
/trunk/main/io/test/stm/
H A Dpipetest.cxx261 input->readBytes( seqRead , input->available() ); in testSimple()
276 input->readBytes( seqRead , 5 ); in testSimple()
300 ERROR_ASSERT(! input->readBytes( seqRead , 1 ), "eof not found !" ); in testSimple()
305 input->readBytes( seqRead , 1 ); in testSimple()
347 input->readBytes( dummy , 100); in testBufferResizing()
354 input->readBytes( seqRead, createIntSeq(i).getLength() ); in testBufferResizing()
361 ERROR_ASSERT( ! input->readBytes( seqRead , 1 ) , "eof not reached !" ); in testBufferResizing()
389 if( 0 == input->readBytes( seqRead, createIntSeq(i).getLength() ) ) { in testMultithreading()
H A Dmarktest.cxx227 rInput->readBytes( seqRead , rInput->available() ); in testSimple()
239 rInput->readBytes( seqRead , seqWrite.getLength() ); in testSimple()
303 rInput->readBytes( aByte ,256); in testSimple()
350 rInput->readBytes( seqRead , 4 ); in testSimple()
591 rInput->readBytes( seqRead , 10 ); in testSimple()
603 rInput->readBytes( seqRead , 10 ); in testSimple()
612 rInput->readBytes( seqRead , 10 ); in testSimple()
619 rInput->readBytes( seqRead , 10 ); in testSimple()
/trunk/main/xmlscript/test/
H A Dimexp.cxx140 sal_Int32 nRead = xStream->readBytes( bytes, xStream->available() ); in exportToFile()
143 Sequence< sal_Int8 > readBytes; in exportToFile() local
144 nRead = xStream->readBytes( readBytes, 1024 ); in exportToFile()
147 OSL_ASSERT( readBytes.getLength() >= nRead ); in exportToFile()
151 ::rtl_copyMemory( bytes.getArray() + nPos, readBytes.getConstArray(), (sal_uInt32)nRead ); in exportToFile()
/trunk/main/embeddedobj/source/msole/
H A Downview.cxx300 if ( xInStream->readBytes( aReadSeq, 4 ) != 4 ) in ReadContentsAndGenerateTempFile()
309 if ( xInStream->readBytes( aReadSeq, 2 ) != 2 || aReadSeq[0] != 2 || aReadSeq[1] != 0 ) in ReadContentsAndGenerateTempFile()
316 if ( xInStream->readBytes( aReadSeq, 1 ) != 1 ) in ReadContentsAndGenerateTempFile()
334 if ( xInStream->readBytes( aReadSeq, 1 ) != 1 ) in ReadContentsAndGenerateTempFile()
339 if ( xInStream->readBytes( aReadSeq, 4 ) != 4 in ReadContentsAndGenerateTempFile()
344 if ( xInStream->readBytes( aReadSeq, 4 ) != 4 ) in ReadContentsAndGenerateTempFile()
356 if ( xInStream->readBytes( aReadSeq, 4 ) != 4 ) in ReadContentsAndGenerateTempFile()
369 sal_uInt32 nLocalRead = xInStream->readBytes( aReadSeq, nToRead ); in ReadContentsAndGenerateTempFile()
392 if ( xInStream->readBytes( aData, 8 ) == 8 in ReadContentsAndGenerateTempFile()
/trunk/main/javaunohelper/com/sun/star/lib/uno/adapter/
H A DXInputStreamToInputStreamAdapter.java79 long bytesRead = xin.readBytes(tmp, 1); in read()
102 bytesRead = xin.readBytes(tmp, b.length); in read()
124 bytesRead = xin.readBytes(tmp, av); in read()
127 bytesRead = xin.readBytes(tmp,len); in read()
/trunk/main/io/source/stm/
H A Dodata.cxx82 virtual sal_Int32 SAL_CALL readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead)
142 sal_Int32 ODataInputStream::readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead) in readBytes() function in io_stm::ODataInputStream
151 nRead = m_input->readBytes( aData , nBytesToRead ); in readBytes()
239 if( 1 != readBytes( aTmp, 1 ) ) in readByte()
249 if( 2 != readBytes( aTmp, 2 ) ) in readChar()
261 if( 2 != readBytes( aTmp, 2 ) ) in readShort()
274 if( 4 != readBytes( aTmp, 4 ) ) in readLong()
287 if( 8 != readBytes( aTmp, 8 ) ) in readHyper()
1322 virtual sal_Int32 SAL_CALL readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead) in readBytes() function in io_stm::OObjectInputStream
1326 { return ODataInputStream::readBytes( aData , nBytesToRead ); } in readBytes()
H A Domark.cxx511 virtual sal_Int32 SAL_CALL readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead)
600 sal_Int32 OMarkableInputStream::readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead) in readBytes() function in io_stm::OMarkableInputStream
611 nBytesRead = m_input->readBytes( aData, nBytesToRead ); in readBytes()
620 nRead = m_input->readBytes( aData , nToRead ); in readBytes()
682 nRead = m_input->readBytes( aData , nAdditionalBytesToRead ); in readSomeBytes()
736 nRead = readBytes( seqDummy , nBytesToSkip ); in skipBytes()
/trunk/main/udkapi/com/sun/star/io/
H A DXInputStream.idl55 // DocMerge from xml: method com::sun::star::io::XInputStream::readBytes
69 calls, using the same sequence for repetive readBytes()-calls
91 long readBytes( [out] sequence<byte> aData,
103 <p>This method is very similar to the readBytes method, except that
113 @see com::sun::star::io::XInputStream::readBytes
/trunk/main/toolkit/source/helper/
H A Dunomemorystream.cxx49 sal_Int32 UnoMemoryStream::readBytes( ::com::sun::star::uno::Sequence< sal_Int8 >& rData, sal_Int32… in readBytes() function in UnoMemoryStream
70 return readBytes( rData, std::min( nMaxBytesToRead , nAvailable ) ); in readSomeBytes()
75 return readBytes( rData, 1 ); in readSomeBytes()
/trunk/main/xmlhelp/source/cxxhelp/provider/
H A Dbufferedinputstream.cxx64 num = xInputStream->readBytes(aData,4096); in BufferedInputStream()
125 sal_Int32 SAL_CALL BufferedInputStream::readBytes( Sequence< sal_Int8 >& aData,sal_Int32 nBytesToRe… in readBytes() function in BufferedInputStream
157 return readBytes(aData,nMaxBytesToRead); in readSomeBytes()
H A Ddb.cxx93 sal_Int32 nRead = xIn->readBytes( aData, nSize ); in createHashMap()
180 sal_Int32 nRead = xIn->readBytes( aData, nValueLen ); in getValueForKey()
224 m_nItRead = xIn->readBytes( m_aItData, nSize ); in startIteration()
H A Durlparameter.cxx365 virtual sal_Int32 SAL_CALL readBytes( Sequence< sal_Int8 >& aData,sal_Int32 nBytesToRead )
457 ret = xStream->readBytes( aSeq,4096 ); in open()
828 len = (*pRef)->readBytes( aSeq,len); in helpRead()
1129 sal_Int32 SAL_CALL InputStreamTransformer::readBytes( Sequence< sal_Int8 >& aData,sal_Int32 nBytesT… in readBytes() function in InputStreamTransformer
1159 return readBytes( aData,nMaxBytesToRead ); in readSomeBytes()
/trunk/main/xmlscript/source/xml_helper/
H A Dxml_byteseq.cxx56 virtual sal_Int32 SAL_CALL readBytes(
71 sal_Int32 BSeqInputStream::readBytes( in readBytes() function in xmlscript::BSeqInputStream
89 return readBytes( rData, nMaxBytesToRead ); in readSomeBytes()
/trunk/main/xmlsecurity/source/xmlsec/
H A Dxmlstreamio.cxx134 numbers = xInputStream->readBytes( outSeqs, len ) ; in xmlStreamRead()
135 const sal_Int8* readBytes = ( const sal_Int8* )outSeqs.getArray() ; in xmlStreamRead() local
137 *( buffer + i ) = *( readBytes + i ) ; in xmlStreamRead()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/
H A DUnmarshal.java94 readBytes(data); in readThreadId()
275 readBytes(data); in readStringValue()
386 readBytes(data); in readSequenceValue()
459 private void readBytes(byte[] data) { in readBytes() method in Unmarshal
/trunk/main/comphelper/source/streaming/
H A Dseekableinput.cxx47 nRead = xIn->readBytes( aSequence, nConstBufferSize ); in copyInputToOutput_Impl()
125 sal_Int32 SAL_CALL OSeekableInputWrapper::readBytes( uno::Sequence< sal_Int8 >& aData, sal_Int32 nB… in readBytes() function in comphelper::OSeekableInputWrapper
138 return m_xCopyInput->readBytes( aData, nBytesToRead ); in readBytes()
H A Dmemorystream.cxx60 …virtual sal_Int32 SAL_CALL readBytes( Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead ) throw …
110 sal_Int32 SAL_CALL UNOMemoryStream::readBytes( Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead … in readBytes() function in comphelper::UNOMemoryStream
132 return readBytes( aData, nMaxBytesToRead ); in readSomeBytes()
H A Dseqinputstreamserv.cxx66 …virtual ::sal_Int32 SAL_CALL readBytes( uno::Sequence< ::sal_Int8 > & aData, ::sal_Int32 nBytesToR…
138 ::sal_Int32 SAL_CALL SequenceInputStreamService::readBytes( uno::Sequence< ::sal_Int8 > & aData, ::… in readBytes() function in __anon1d52cc2b0111::SequenceInputStreamService
144 return m_xInputStream->readBytes( aData, nBytesToRead ); in readBytes()
/trunk/main/ucb/source/ucp/odma/
H A Dodma_inputstream.cxx101 sal_Int32 SAL_CALL OOdmaStream::readBytes( uno::Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead… in readBytes() function in OOdmaStream
109 return m_xInput->readBytes(aData,nBytesToRead); in readBytes()
118 return readBytes( aData,nMaxBytesToRead ); in readSomeBytes()

Completed in 122 milliseconds

123456789