Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for ReadUint8 (0.5 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

            bufferIndex += 8;
            this.changeTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
    
            this.allocationSize = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
            this.endOfFile = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
    
            this.fileAttributes = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            bufferIndex += 4;
            this.mid = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
    
            if ( ( this.flags & SMB2_FLAGS_ASYNC_COMMAND ) == SMB2_FLAGS_ASYNC_COMMAND ) {
                // async
                this.async = true;
                this.asyncId = SMBUtil.readInt8(buffer, bufferIndex);
                bufferIndex += 8;
                this.sessionId = SMBUtil.readInt8(buffer, bufferIndex);
                bufferIndex += 8;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/util/SMBUtil.java

            return ( src[ srcIndex ] & 0xFF ) + ( ( src[ srcIndex + 1 ] & 0xFF ) << 8 ) + ( ( src[ srcIndex + 2 ] & 0xFF ) << 16 )
                    + ( ( src[ srcIndex + 3 ] & 0xFF ) << 24 );
        }
    
    
        public static long readInt8 ( byte[] src, int srcIndex ) {
            return ( readInt4(src, srcIndex) & 0xFFFFFFFFL ) + ( (long) ( readInt4(src, srcIndex + 4) ) << 32 );
        }
    
    
        public static void writeInt8 ( long val, byte[] dst, int dstIndex ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

                    (( src[srcIndex + 1] & 0xFF ) << 8 ) +
                    (( src[srcIndex + 2] & 0xFF ) << 16 ) +
                    (( src[srcIndex + 3] & 0xFF ) << 24 );
        }
        static long readInt8( byte[] src, int srcIndex ) {
            return (readInt4( src, srcIndex ) & 0xFFFFFFFFL) +
                ((long)(readInt4( src, srcIndex + 4 )) << 32);
        }
        static void writeInt8( long val, byte[] dst, int dstIndex ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

            bufferIndex += 8;
            extFileAttributes = readInt4( buffer, bufferIndex );
            bufferIndex += 4;
            allocationSize = readInt8( buffer, bufferIndex );
            bufferIndex += 8;
            endOfFile = readInt8( buffer, bufferIndex );
            bufferIndex += 8;
            fileType = readInt2( buffer, bufferIndex );
            bufferIndex += 2;
            deviceState = readInt2( buffer, bufferIndex );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

            bufferIndex += 8;
            this.changeTime = SMBUtil.readTime(buffer, bufferIndex);
            bufferIndex += 8;
            this.allocationSize = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
            this.endOfFile = SMBUtil.readInt8(buffer, bufferIndex);
            bufferIndex += 8;
            this.fileAttributes = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                e.lastWriteTime = readTime( buffer, bufferIndex + 24 );
        //      e.changeTime = readTime( buffer, bufferIndex + 32 );
                e.endOfFile = readInt8( buffer, bufferIndex + 40 );
        //      e.allocationSize = readInt8( buffer, bufferIndex + 48 );
                e.extFileAttributes = readInt4( buffer, bufferIndex + 56 );
                e.fileNameLength = readInt4( buffer, bufferIndex + 60 );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
Back to top