Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for WriteUint8 (0.13 sec)

  1. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

            // if SMB 3.11 support negotiateContextOffset/negotiateContextCount
            int negotitateContextOffsetOffset = 0;
            if ( this.negotiateContexts == null || this.negotiateContexts.length == 0 ) {
                SMBUtil.writeInt8(0, dst, dstIndex);
            }
            else {
                negotitateContextOffsetOffset = dstIndex;
                SMBUtil.writeInt2(this.negotiateContexts.length, dst, dstIndex + 4);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

            dstIndex += 4;
            SMBUtil.writeInt4(this.rootDirectoryFid, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt4(this.desiredAccess, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt8(this.allocationSize, dst, dstIndex);
            dstIndex += 8;
            SMBUtil.writeInt4(this.extFileAttributes, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt4(this.shareAccess, dst, dstIndex);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

        }
        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 ) {
            dst[dstIndex] = (byte)(val);
            dst[++dstIndex] = (byte)(val >>= 8);
            dst[++dstIndex] = (byte)(val >>= 8);
            dst[++dstIndex] = (byte)(val >>= 8);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 21K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            dst[ dstIndex + 3 ] = this.requestedOplockLevel;
            dstIndex += 4;
    
            SMBUtil.writeInt4(this.impersonationLevel, dst, dstIndex);
            dstIndex += 4;
            SMBUtil.writeInt8(this.smbCreateFlags, dst, dstIndex);
            dstIndex += 8;
            dstIndex += 8; // Reserved
    
            SMBUtil.writeInt4(this.desiredAccess, dst, dstIndex);
            dstIndex += 4;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jun 01 09:52:11 UTC 2019
    - 14.3K bytes
    - Viewed (0)
Back to top