| /trunk/main/io/source/stm/ |
| H A D | opipe.cxx | 70 virtual void SAL_CALL skipBytes(sal_Int32 nBytesToSkip); 208 void OPipeImpl::skipBytes(sal_Int32 nBytesToSkip) in skipBytes() argument 218 if( nBytesToSkip < 0 in skipBytes() 219 || (nBytesToSkip in skipBytes() 226 m_nBytesToSkip += nBytesToSkip; in skipBytes() 228 nBytesToSkip = Min( m_pFIFO->getSize() , m_nBytesToSkip ); in skipBytes() 229 m_pFIFO->skip( nBytesToSkip ); in skipBytes() 230 m_nBytesToSkip -= nBytesToSkip; in skipBytes()
|
| H A D | omark.cxx | 463 virtual void SAL_CALL skipBytes(sal_Int32 nBytesToSkip); 644 void OMarkableInputStream::skipBytes(sal_Int32 nBytesToSkip) in skipBytes() argument 646 if ( nBytesToSkip < 0 ) in skipBytes() 654 Sequence<sal_Int8> seqDummy( nBytesToSkip ); in skipBytes() 656 nRead = readBytes( seqDummy , nBytesToSkip ); in skipBytes()
|
| H A D | streamhelper.hxx | 56 virtual void skip( sal_Int32 nBytesToSkip )=0; 132 virtual void skip( sal_Int32 nBytesToSkip );
|
| H A D | odata.cxx | 84 virtual void SAL_CALL skipBytes(sal_Int32 nBytesToSkip); 159 void ODataInputStream::skipBytes(sal_Int32 nBytesToSkip) in skipBytes() argument 162 m_input->skipBytes( nBytesToSkip ); in skipBytes() 1242 virtual void SAL_CALL skipBytes(sal_Int32 nBytesToSkip) in skipBytes() argument 1243 { ODataInputStream::skipBytes( nBytesToSkip ); } in skipBytes()
|
| /trunk/main/package/source/package/zippackage/ |
| H A D | ZipPackageBuffer.cxx | 63 void SAL_CALL ZipPackageBuffer::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 65 if (nBytesToSkip < 0) in skipBytes() 68 if (nBytesToSkip + m_nCurrent > m_nEnd) in skipBytes() 69 nBytesToSkip = static_cast < sal_Int32 > (m_nEnd - m_nCurrent); in skipBytes() 71 m_nCurrent+=nBytesToSkip; in skipBytes()
|
| /trunk/main/comphelper/source/streaming/ |
| H A D | seqstream.cxx | 87 void SAL_CALL SequenceInputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 93 if (nBytesToSkip < 0) in skipBytes() 96 if (nAvail < nBytesToSkip) in skipBytes() 97 nBytesToSkip = nAvail; in skipBytes() 99 m_nPos += nBytesToSkip; in skipBytes()
|
| H A D | memorystream.cxx | 62 virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip ); 135 void SAL_CALL UNOMemoryStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 137 if( nBytesToSkip < 0 ) in skipBytes() 140 mnCursor += std::min( nBytesToSkip, available() ); in skipBytes()
|
| H A D | seqinputstreamserv.cxx | 68 virtual void SAL_CALL skipBytes( ::sal_Int32 nBytesToSkip ); 156 void SAL_CALL SequenceInputStreamService::skipBytes( ::sal_Int32 nBytesToSkip ) in skipBytes() argument 162 return m_xInputStream->skipBytes( nBytesToSkip ); in skipBytes()
|
| /trunk/main/oox/source/vml/ |
| H A D | vmlinputstream.cxx | 314 void SAL_CALL InputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 316 if( nBytesToSkip < 0 ) in skipBytes() 319 while( (nBytesToSkip > 0) && !mxTextStrm->isEOF() ) in skipBytes() 322 sal_Int32 nSkipSize = ::std::min( nBytesToSkip, maBuffer.getLength() - mnBufferPos ); in skipBytes() 324 nBytesToSkip -= nSkipSize; in skipBytes()
|
| /trunk/main/package/qa/storages/ |
| H A D | BorderedStream.java | 111 public synchronized void skipBytes( int nBytesToSkip ) in skipBytes() argument 114 if ( nBytesToSkip < 0 ) in skipBytes() 117 if ( m_nCurSize - m_nCurPos > nBytesToSkip ) in skipBytes() 118 m_nCurPos += nBytesToSkip; in skipBytes()
|
| /trunk/main/package/source/package/zipapi/ |
| H A D | XUnbufferedStream.cxx | 333 void SAL_CALL XUnbufferedStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 335 if ( nBytesToSkip ) in skipBytes() 337 Sequence < sal_Int8 > aSequence ( nBytesToSkip ); in skipBytes() 338 readBytes ( aSequence, nBytesToSkip ); in skipBytes()
|
| /trunk/main/extensions/workben/ |
| H A D | testpgp.cxx | 99 virtual void SAL_CALL skipBytes (sal_Int32 nBytesToSkip); 284 void SAL_CALL DataSource_Impl::skipBytes (sal_Int32 nBytesToSkip) in skipBytes() argument 286 if (nBytesToSkip < 0) in skipBytes() 289 m_position += nBytesToSkip; in skipBytes()
|
| /trunk/main/oox/source/helper/ |
| H A D | textinputstream.cxx | 57 virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip ); 87 void SAL_CALL UnoBinaryInputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 90 mpInStrm->skip( nBytesToSkip, 1 ); in skipBytes()
|
| /trunk/main/unotools/source/streaming/ |
| H A D | streamhelper.cxx | 104 void SAL_CALL OInputStreamHelper::skipBytes(sal_Int32 nBytesToSkip) in skipBytes() argument 110 if (nBytesToSkip < 0) in skipBytes() 113 m_nActPos += nBytesToSkip; in skipBytes()
|
| /trunk/main/io/source/TextInputStream/ |
| H A D | TextInputStream.cxx | 107 virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip ); 390 void OTextInputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 392 mxStream->skipBytes( nBytesToSkip ); in skipBytes()
|
| /trunk/main/svl/source/misc/ |
| H A D | strmadpt.cxx | 364 void SAL_CALL SvLockBytesInputStream::skipBytes(sal_Int32 nBytesToSkip) in skipBytes() argument 368 if (nBytesToSkip < 0) in skipBytes() 370 if (nBytesToSkip > SAL_MAX_INT64 - m_nPosition) in skipBytes() 372 m_nPosition += nBytesToSkip; in skipBytes()
|
| /trunk/main/automation/source/server/ |
| H A D | XMLParser.cxx | 62 virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip ); 81 void SAL_CALL SVInputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 83 if ( nBytesToSkip > 0 ) in skipBytes() 84 pStream->SeekRel( nBytesToSkip ); in skipBytes()
|
| /trunk/main/package/source/xstor/ |
| H A D | selfterminatefilestream.cxx | 90 void SAL_CALL OSelfTerminateFileStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 92 return m_xInputStream->skipBytes( nBytesToSkip ); in skipBytes()
|
| /trunk/main/ucb/source/ucp/gio/ |
| H A D | gio_inputstream.cxx | 59 void SAL_CALL InputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 69 if (!g_seekable_seek(G_SEEKABLE(mpStream), nBytesToSkip, G_SEEK_CUR, NULL, &pError)) in skipBytes()
|
| /trunk/main/connectivity/source/drivers/jdbc/ |
| H A D | InputStream.cxx | 61 void SAL_CALL java_io_InputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 64 callIntMethodWithIntArg("skip",mID,nBytesToSkip); in skipBytes()
|
| H A D | Reader.cxx | 60 void SAL_CALL java_io_Reader::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 63 callIntMethodWithIntArg("skip",mID,nBytesToSkip); in skipBytes()
|
| /trunk/main/toolkit/source/helper/ |
| H A D | unomemorystream.cxx | 79 void UnoMemoryStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 83 SeekRel( nBytesToSkip ); in skipBytes()
|
| /trunk/main/udkapi/com/sun/star/io/ |
| H A D | XInputStream.idl | 122 /** skips the next <var>nBytesToSkip</var> bytes (must be positive). 126 @param nBytesToSkip 129 void skipBytes( [in] long nBytesToSkip )
|
| /trunk/main/ucb/source/ucp/ftp/ |
| H A D | ftpinpstr.cxx | 102 void SAL_CALL FTPInputStream::skipBytes(sal_Int32 nBytesToSkip) in skipBytes() argument 108 osl_setFilePos( m_tmpfl, osl_Pos_Current, nBytesToSkip ); in skipBytes()
|
| /trunk/main/ucb/source/ucp/webdav/ |
| H A D | CurlInputStream.cxx | 122 void SAL_CALL CurlInputStream::skipBytes( sal_Int32 nBytesToSkip ) in skipBytes() argument 124 mPos += nBytesToSkip; in skipBytes()
|