Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for location (0.14 sec)

  1. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

        }
    
    
        /**
         * @return
         */
        private AllocInfo createInfo () {
            AllocInfo inf;
            switch ( this.informationLevel ) {
            case FileSystemInformation.SMB_INFO_ALLOCATION:
                inf = new SmbInfoAllocation();
                break;
            case FileSystemInformation.FS_SIZE_INFO:
                inf = new FileFsSizeInformation();
                break;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java

        {
            int start = bufferIndex;
            
            SmbInfoAllocation info = new SmbInfoAllocation();
            
            // Read total allocation units.
            info.alloc = readInt8( buffer, bufferIndex );
            bufferIndex += 8;
            
            // read caller available allocation units 
            info.free = readInt8( buffer, bufferIndex );
            bufferIndex += 8;
    
            // skip actual free units
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.1K bytes
    - Viewed (0)
Back to top