Home
last modified time | relevance | path

Searched refs:aReadBytes (Results 1 – 9 of 9) sorted by relevance

/aoo42x/main/jurt/java/jurt/src/main/java/com/sun/star/comp/connections/
H A DPipedConnection.java171 …public synchronized int read(/*OUT*/byte[][] aReadBytes, int nBytesToRead) throws com.sun.star.io.… in read() argument
172 aReadBytes[0] = new byte[nBytesToRead]; in read()
192 System.arraycopy(_buffer, _in, aReadBytes[0], aReadBytes[0].length - nBytesToRead, bytes); in read()
200 System.arraycopy(_buffer, _in, aReadBytes[0], aReadBytes[0].length - nBytesToRead, bytes); in read()
210 byte tmp[] = new byte[aReadBytes[0].length - nBytesToRead]; in read()
211 System.arraycopy(aReadBytes[0], 0, tmp, 0, tmp.length); in read()
213 aReadBytes[0] = tmp; in read()
216 return aReadBytes[0].length; in read()
/aoo42x/main/io/source/acceptor/
H A Dacc_pipe.cxx53 virtual sal_Int32 SAL_CALL read( Sequence< sal_Int8 >& aReadBytes, sal_Int32 nBytesToRead )
94 sal_Int32 PipeConnection::read( Sequence < sal_Int8 > & aReadBytes , sal_Int32 nBytesToRead ) in read() argument
100 if( aReadBytes.getLength() < nBytesToRead ) in read()
102 aReadBytes.realloc( nBytesToRead ); in read()
104 sal_Int32 n = m_pipe.read( aReadBytes.getArray(), nBytesToRead ); in read()
105 OSL_ASSERT( n >= 0 && n <= aReadBytes.getLength() ); in read()
106 if( n < aReadBytes.getLength() ) in read()
108 aReadBytes.realloc( n ); in read()
H A Dacc_socket.cxx81 virtual sal_Int32 SAL_CALL read( ::com::sun::star::uno::Sequence< sal_Int8 >& aReadBytes,
201 sal_Int32 SocketConnection::read( Sequence < sal_Int8 > & aReadBytes , sal_Int32 nBytesToRead ) in read() argument
209 if( aReadBytes.getLength() != nBytesToRead ) in read()
211 aReadBytes.realloc( nBytesToRead ); in read()
215 i = m_socket.read( aReadBytes.getArray() , aReadBytes.getLength() ); in read()
/aoo42x/main/io/source/connector/
H A Dctr_pipe.cxx56 sal_Int32 PipeConnection::read( Sequence < sal_Int8 > & aReadBytes , sal_Int32 nBytesToRead ) in read() argument
62 if( aReadBytes.getLength() != nBytesToRead ) in read()
64 aReadBytes.realloc( nBytesToRead ); in read()
66 return m_pipe.read( aReadBytes.getArray() , aReadBytes.getLength() ); in read()
H A Dctr_socket.cxx127 sal_Int32 SocketConnection::read( Sequence < sal_Int8 > & aReadBytes , sal_Int32 nBytesToRead ) in read() argument
135 if( aReadBytes.getLength() != nBytesToRead ) in read()
137 aReadBytes.realloc( nBytesToRead ); in read()
139 sal_Int32 i = m_socket.read( aReadBytes.getArray() , aReadBytes.getLength() ); in read()
H A Dconnector.hxx71 virtual sal_Int32 SAL_CALL read( ::com::sun::star::uno::Sequence< sal_Int8 >& aReadBytes,
100 virtual sal_Int32 SAL_CALL read( ::com::sun::star::uno::Sequence< sal_Int8 >& aReadBytes,
/aoo42x/main/bean/java/officebean/src/main/java/com/sun/star/beans/
H A DNativeConnection.java35 public native int read(/*OUT*/byte[][] aReadBytes, /*IN*/int nBytesToRead) in read() argument
/aoo42x/main/bean/java/officebean/src/main/java/com/sun/star/comp/beans/
H A DNativeConnection.java38 public native int read(/*OUT*/byte[][] aReadBytes, /*IN*/int nBytesToRead) in read() argument
/aoo42x/main/udkapi/com/sun/star/connection/
H A DXConnection.idl56 long read( [out] sequence < byte > aReadBytes , [in] long nBytesToRead )

Completed in 39 milliseconds