Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DOS_ERROR_MESSAGES (0.17 sec)

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

            { 0x08c20002, 0xC0000071 },
        };
    
        /* These aren't really used by jCIFS -- the map above is used
         * to immediately map to NTSTATUS codes.
         */
        static final String[] DOS_ERROR_MESSAGES = {
            "The operation completed successfully.",
            "Incorrect function.",
            "Incorrect function.",
            "The system cannot find the file specified.",
            "Bad password.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DosError.java

            },
        };
    
        /*
         * These aren't really used by jCIFS -- the map above is used
         * to immediately map to NTSTATUS codes.
         */
        static final String[] DOS_ERROR_MESSAGES = {
            "The operation completed successfully.", "Incorrect function.", "Incorrect function.", "The system cannot find the file specified.",
            "Bad password.", "The system cannot find the path specified.", "reserved",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 4.8K bytes
    - Viewed (1)
  3. src/main/java/jcifs/smb1/smb1/SmbException.java

                        min = mid + 1;
                    } else if( errcode < DOS_ERROR_CODES[mid][0] ) {
                        max = mid - 1;
                    } else {
                        return DOS_ERROR_MESSAGES[mid];
                    }
                }
            }
    
            return "0x" + Hexdump.toHexString( errcode, 8 );
        }
        static int getStatusByCode( int errcode ) {
            if(( errcode & 0xC0000000 ) != 0 ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.5K bytes
    - Viewed (0)
Back to top