Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Case (0.17 sec)

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

            AllocInfo inf;
            switch ( this.informationLevel ) {
            case FileSystemInformation.SMB_INFO_ALLOCATION:
                inf = new SmbInfoAllocation();
                break;
            case FileSystemInformation.FS_SIZE_INFO:
                inf = new FileFsSizeInformation();
                break;
            case FileSystemInformation.FS_FULL_SIZE_INFO:
                inf = new FileFsFullSizeInformation();
    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

            switch( informationLevel ) {
                case SMB_INFO_ALLOCATION:
                    return readSmbInfoAllocationWireFormat( buffer, bufferIndex );
                case SMB_QUERY_FS_SIZE_INFO:
                    return readSmbQueryFSSizeInfoWireFormat( buffer, bufferIndex );
                case SMB_FS_FULL_SIZE_INFORMATION:
                    return readFsFullSizeInformationWireFormat( buffer, bufferIndex );
    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