Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Account (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

        }
        public final void readFully( byte b[], int off, int len ) throws SmbException {
            int n = 0, count;
    
            do {    
                count = this.read( b, off + n, len - n );
                if( count < 0 ) throw new SmbException( "EOF" );
                n += count;
                fp += count;
            } while( n < len );
        }
        public int skipBytes( int n ) throws SmbException {
            if (n > 0) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbRandomAccessFile.java

    
        @Override
        public final void readFully ( byte b[], int off, int len ) throws SmbException {
            int n = 0, count;
    
            do {
                count = this.read(b, off + n, len - n);
                if ( count < 0 )
                    throw new SmbEndOfFileException();
                n += count;
            }
            while ( n < len );
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
Back to top