Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for 0X (0.02 sec)

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

                        + Hexdump.toHexString(this.desiredAccess, 4) + ",searchAttributes=0x" + Hexdump.toHexString(this.searchAttributes, 4)
                        + ",fileAttributes=0x" + Hexdump.toHexString(this.fileAttributes, 4) + ",creationTime=" + new Date(this.creationTime)
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java

                super.toString() +
                ",flags=0x" + Hexdump.toHexString( flags0, 2 ) +
                ",rootDirectoryFid=" + rootDirectoryFid +
                ",desiredAccess=0x" + Hexdump.toHexString( desiredAccess, 4 ) +
                ",allocationSize=" + allocationSize +
                ",extFileAttributes=0x" + Hexdump.toHexString( extFileAttributes, 4 ) +
                ",shareAccess=0x" + Hexdump.toHexString( shareAccess, 4 ) +
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java

                super.toString() +
                ",flags=0x" + Hexdump.toHexString( flags, 2 ) +
                ",desiredAccess=0x" + Hexdump.toHexString( desiredAccess, 4 ) +
                ",searchAttributes=0x" + Hexdump.toHexString( searchAttributes, 4 ) +
                ",fileAttributes=0x" + Hexdump.toHexString( fileAttributes, 4 ) +
                ",creationTime=" + new Date( creationTime ) +
                ",openFunction=0x" + Hexdump.toHexString( openFunction, 2 ) +
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java

                "SmbComNTCreateAndX[" + super.toString() + ",flags=0x" + Hexdump.toHexString(this.flags0, 2) + ",rootDirectoryFid="
                        + this.rootDirectoryFid + ",desiredAccess=0x" + Hexdump.toHexString(this.desiredAccess, 4) + ",allocationSize="
                        + this.allocationSize + ",extFileAttributes=0x" + Hexdump.toHexString(this.extFileAttributes, 4) + ",shareAccess=0x"
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java

        public String toString () {
            return new String(
                "Trans2FindFirst2[" + super.toString() + ",searchAttributes=0x" + Hexdump.toHexString(this.searchAttributes, 2) + ",searchCount="
                        + this.maxItems + ",flags=0x" + Hexdump.toHexString(this.tflags, 2) + ",informationLevel=0x"
                        + Hexdump.toHexString(this.informationLevel, 3) + ",searchStorageType=" + this.searchStorageType + ",filename=" + this.path
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java

                ",sid=" + sid +
                ",searchCount=" + Trans2FindFirst2.LIST_SIZE +
                ",informationLevel=0x" + Hexdump.toHexString( informationLevel, 3 ) +
                ",resumeKey=0x" + Hexdump.toHexString( resumeKey, 4 ) +
                ",flags=0x" + Hexdump.toHexString( flags, 2 ) +
                ",filename=" + filename + "]" );
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

        public String toString() {
            return new String( "Trans2FindFirst2[" + super.toString() +
                ",searchAttributes=0x" + Hexdump.toHexString( searchAttributes, 2 ) +
                ",searchCount=" + LIST_COUNT +
                ",flags=0x" + Hexdump.toHexString( flags, 2 ) +
                ",informationLevel=0x" + Hexdump.toHexString( informationLevel, 3 ) +
                ",searchStorageType=" + searchStorageType +
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/netbios/NameServicePacket.java

            default:
                resultCodeString = "0x" + Hexdump.toHexString(this.resultCode, 1);
                break;
            }
            switch ( this.questionType ) {
            case NB:
                questionTypeString = "NB";
                break;
            case NBSTAT:
                questionTypeString = "NBSTAT";
                break;
            default:
                questionTypeString = "0x" + Hexdump.toHexString(this.questionType, 4);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NameServicePacket.java

                    ",questionClass=" + ( questionClass == IN ? "IN" :
                                "0x" + Hexdump.toHexString( questionClass, 4 )) +
                    ",recordName=" + recordName +
                    ",recordType=" + recordTypeString +
                    ",recordClass=" + ( recordClass == IN ? "IN" :
                                "0x" + Hexdump.toHexString( recordClass, 4 )) +
                    ",ttl=" + ttl +
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java

                ",maxBufferSize="       + server.maxBufferSize +
                ",maxRawSize="          + server.maxRawSize +
                ",sessionKey=0x"        + Hexdump.toHexString( server.sessionKey, 8 ) +
                ",capabilities=0x"      + Hexdump.toHexString( server.capabilities, 8 ) +
                ",serverTime="          + new Date( server.serverTime ) +
                ",serverTimeZone="      + server.serverTimeZone +
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.1K bytes
    - Viewed (0)
Back to top