Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Lord (0.15 sec)

  1. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

        }
        int writeString( String str, byte[] dst, int dstIndex, boolean useUnicode ) {
            int start = dstIndex;
    
            try {
                if( useUnicode ) {
                    // Unicode requires word alignment
                    if((( dstIndex - headerStart ) % 2 ) != 0 ) {
                        dst[dstIndex++] = (byte)'\0';
                    }
                    System.arraycopy( str.getBytes( UNI_ENCODING ), 0,
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        }
    
    
        protected int writeString ( String str, byte[] dst, int dstIndex, boolean unicode ) {
            int start = dstIndex;
            if ( unicode ) {
                // Unicode requires word alignment
                if ( ( ( dstIndex - this.headerStart ) % 2 ) != 0 ) {
                    dst[ dstIndex++ ] = (byte) '\0';
                }
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
Back to top