Lines Matching refs:n
738 SbError SbiStream::Read( ByteString& rBuf, sal_uInt16 n, bool bForceReadingPerByte ) in Read() argument
748 if( !n ) n = nLen; in Read()
749 if( !n ) in Read()
751 rBuf.Fill( n, ' ' ); in Read()
752 pStrm->Read( (void*)rBuf.GetBuffer(), n ); in Read()
793 SbError SbiStream::Write( const ByteString& rBuf, sal_uInt16 n ) in Write() argument
816 if( !n ) n = nLen; in Write()
817 if( !n ) in Write()
819 pStrm->Write( rBuf.GetBuffer(), n ); in Write()
852 SbError n = nError; nError = 0; in GetError() local
853 return n; in GetError()
899 SbError n = pChan[ i ]->Close(); in Shutdown() local
902 if( n && !nError ) in Shutdown()
903 nError = n; in Shutdown()
923 void SbiIoSystem::Read( ByteString& rBuf, short n ) in Read() argument
930 nError = pChan[ nChan ]->Read( rBuf, n ); in Read()
953 void SbiIoSystem::Write( const ByteString& rBuf, short n ) in Write() argument
960 nError = pChan[ nChan ]->Write( rBuf, n ); in Write()
990 SbError n = pChan[ i ]->Close(); in CloseAll() local
993 if( n && !nError ) in CloseAll()
994 nError = n; in CloseAll()