Lines Matching refs:sal_Int8

82     virtual sal_Int32 SAL_CALL readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead)
86 virtual sal_Int32 SAL_CALL readSomeBytes(Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead)
99 virtual sal_Int8 SAL_CALL readBoolean(void) throw (IOException, RuntimeException);
100 virtual sal_Int8 SAL_CALL readByte(void) throw (IOException, RuntimeException);
142 sal_Int32 ODataInputStream::readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead) in readBytes()
161 sal_Int32 ODataInputStream::readSomeBytes(Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead) in readSomeBytes()
231 sal_Int8 ODataInputStream::readBoolean(void) throw (IOException, RuntimeException) in readBoolean()
236 sal_Int8 ODataInputStream::readByte(void) throw (IOException, RuntimeException) in readByte()
238 Sequence<sal_Int8> aTmp(1); in readByte()
248 Sequence<sal_Int8> aTmp(2); in readChar()
260 Sequence<sal_Int8> aTmp(2); in readShort()
273 Sequence<sal_Int8> aTmp(4); in readLong()
286 Sequence<sal_Int8> aTmp(8); in readHyper()
540 virtual void SAL_CALL writeBytes(const Sequence< sal_Int8 >& aData)
555 virtual void SAL_CALL writeByte(sal_Int8 Value) throw (IOException, RuntimeException);
598 void ODataOutputStream::writeBytes(const Sequence< sal_Int8 >& aData) in writeBytes()
663 void ODataOutputStream::writeByte(sal_Int8 Value) in writeByte()
667 Sequence<sal_Int8> aTmp( 1 ); in writeByte()
676 Sequence<sal_Int8> aTmp( 2 ); in writeChar()
677 sal_Int8 * pBytes = ( sal_Int8 * ) aTmp.getArray(); in writeChar()
678 pBytes[0] = sal_Int8(Value >> 8); in writeChar()
679 pBytes[1] = sal_Int8(Value); in writeChar()
688 Sequence<sal_Int8> aTmp( 2 ); in writeShort()
689 sal_Int8 * pBytes = aTmp.getArray(); in writeShort()
690 pBytes[0] = sal_Int8(Value >> 8); in writeShort()
691 pBytes[1] = sal_Int8(Value); in writeShort()
699 Sequence<sal_Int8> aTmp( 4 ); in writeLong()
700 sal_Int8 * pBytes = aTmp.getArray(); in writeLong()
701 pBytes[0] = sal_Int8(Value >> 24); in writeLong()
702 pBytes[1] = sal_Int8(Value >> 16); in writeLong()
703 pBytes[2] = sal_Int8(Value >> 8); in writeLong()
704 pBytes[3] = sal_Int8(Value); in writeLong()
712 Sequence<sal_Int8> aTmp( 8 ); in writeHyper()
713 sal_Int8 * pBytes = aTmp.getArray(); in writeHyper()
714 pBytes[0] = sal_Int8(Value >> 56); in writeHyper()
715 pBytes[1] = sal_Int8(Value >> 48); in writeHyper()
716 pBytes[2] = sal_Int8(Value >> 40); in writeHyper()
717 pBytes[3] = sal_Int8(Value >> 32); in writeHyper()
718 pBytes[4] = sal_Int8(Value >> 24); in writeHyper()
719 pBytes[5] = sal_Int8(Value >> 16); in writeHyper()
720 pBytes[6] = sal_Int8(Value >> 8); in writeHyper()
721 pBytes[7] = sal_Int8(Value); in writeHyper()
742 if( *(sal_Int8 *)&n == 1 ) in writeDouble()
799 writeByte(sal_Int8(c)); in writeUTF()
803 writeByte(sal_Int8(0xE0 | ((c >> 12) & 0x0F))); in writeUTF()
804 writeByte(sal_Int8(0x80 | ((c >> 6) & 0x3F))); in writeUTF()
805 writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); in writeUTF()
810 writeByte(sal_Int8(0xC0 | ((c >> 6) & 0x1F))); in writeUTF()
811 writeByte(sal_Int8(0x80 | ((c >> 0) & 0x3F))); in writeUTF()
985 virtual void SAL_CALL writeBytes(const Sequence< sal_Int8 >& aData) in writeBytes()
1007 virtual void SAL_CALL writeByte(sal_Int8 Value) throw (IOException, RuntimeException) in writeByte()
1038 virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL
1256 Sequence< sal_Int8 > SAL_CALL OObjectOutputStream::getImplementationId( ) throw( RuntimeException) in getImplementationId()
1322 virtual sal_Int32 SAL_CALL readBytes(Sequence< sal_Int8 >& aData, sal_Int32 nBytesToRead) in readBytes()
1328 virtual sal_Int32 SAL_CALL readSomeBytes(Sequence< sal_Int8 >& aData, sal_Int32 nMaxBytesToRead) in readSomeBytes()
1351 virtual sal_Int8 SAL_CALL readBoolean(void) throw (IOException, RuntimeException) in readBoolean()
1353 virtual sal_Int8 SAL_CALL readByte(void) throw (IOException, RuntimeException) in readByte()
1385 virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL
1598 Sequence< sal_Int8 > SAL_CALL OObjectInputStream::getImplementationId( ) throw( RuntimeException) in getImplementationId()