Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 13 of 13 for parameterDisplacement (0.11 seconds)

  1. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

                this.parameterOffset = value;
            }
    
            public int getParameterDisplacement() {
                return parameterDisplacement;
            }
    
            public void setParameterDisplacement(int value) {
                this.parameterDisplacement = value;
            }
    
            public int getDataCount() {
                return dataCount;
            }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 18.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java

            this.parameterCount = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterOffset = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterDisplacement = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            setDataCount(SMBUtil.readInt4(buffer, bufferIndex));
            bufferIndex += 4;
            this.dataOffset = SMBUtil.readInt4(buffer, bufferIndex);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java

            SMBUtil.writeInt4(this.parameterCount == 0 ? 0 : this.parameterOffset, dst, dstIndex);
            dstIndex += 4;
            if (this.getCommand() == SMB_COM_NT_TRANSACT_SECONDARY) {
                SMBUtil.writeInt4(this.parameterDisplacement, dst, dstIndex);
                dstIndex += 4;
            }
            SMBUtil.writeInt4(this.dataCount, dst, dstIndex);
            dstIndex += 4;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 4.5K bytes
    - Click Count (0)
Back to Top