Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 14 of 14 for parameterOffset (0.14 seconds)

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

                this.parameterCount = value;
            }
    
            public int getParameterOffset() {
                return parameterOffset;
            }
    
            public void setParameterOffset(int value) {
                this.parameterOffset = value;
            }
    
            public int getParameterDisplacement() {
                return parameterDisplacement;
            }
    
    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.totalDataCount = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterCount = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterOffset = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
            this.parameterDisplacement = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    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

                dstIndex += 4;
            }
            SMBUtil.writeInt4(this.parameterCount, dst, dstIndex);
            dstIndex += 4;
            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;
            }
    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)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                            parametersOffset = argumentTypes.length - parameterCount
                        }
    
                        @Override
                        AnnotationVisitor visitParameterAnnotation(int parameter, String descriptor, boolean visible) {
                            int parameterIndex = parameter + parametersOffset
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 15.4K bytes
    - Click Count (0)
Back to Top