Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getTailSpace (0.21 sec)

  1. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

            return index;
        }
        public void setIndex(int index) {
            this.index = index;
        }
        public int getCapacity() {
            return buf.length - start;
        }
        public int getTailSpace() {
            return buf.length - index;
        }
        public byte[] getBuffer() {
            return buf;
        }
        public int align(int boundary, byte value) {
            int n = align(boundary);
            int i = n;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

        }
    
    
        public void setIndex ( int index ) {
            this.index = index;
        }
    
    
        public int getCapacity () {
            return this.buf.length - this.start;
        }
    
    
        public int getTailSpace () {
            return this.buf.length - this.index;
        }
    
    
        public byte[] getBuffer () {
            return this.buf;
        }
    
    
        public int align ( int boundary, byte value ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
Back to top