Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDataLength (0.2 sec)

  1. src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java

         */
        public void adjustOffset(final int n) {
            this.offset += n;
        }
    
        /**
         * Gets the data length.
         *
         * @return the dataLength
         */
        public final int getDataLength() {
            return this.dataLength;
        }
    
        /**
         * Gets the data offset.
         *
         * @return the dataOffset
         */
        public final int getDataOffset() {
            return this.dataOffset;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java

            this.outputBufferOffset = outputBufferOffset;
        }
    
        /**
         * Gets the number of bytes actually read
         *
         * @return the dataLength
         */
        public int getDataLength() {
            return this.dataLength;
        }
    
        /**
         * Gets the number of bytes remaining to be read
         *
         * @return the dataRemaining
         */
        public int getDataRemaining() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

        }
    
        public int getDataOffset() {
            return dataOffset;
        }
    
        public void setDataOffset(int dataOffset) {
            this.dataOffset = dataOffset;
        }
    
        public int getDataLength() {
            return dataLength;
        }
    
        public void setDataLength(int dataLength) {
            this.dataLength = dataLength;
        }
    
        @Override
        public String toString() {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top