Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NT_STATUS_MESSAGES (0.11 sec)

  1. src/test/java/jcifs/smb/NtStatusTest.java

        }
    
        @Test
        @DisplayName("Should have status messages array")
        void testStatusMessagesArray() {
            // When
            String[] messages = NtStatus.NT_STATUS_MESSAGES;
    
            // Then
            assertNotNull(messages);
            assertTrue(messages.length > 0);
            // Should have same length as codes array
            assertEquals(NtStatus.NT_STATUS_CODES.length, messages.length);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbException.java

                        min = mid + 1;
                    } else if (errcode < NT_STATUS_CODES[mid]) {
                        max = mid - 1;
                    } else {
                        return NT_STATUS_MESSAGES[mid];
                    }
                }
            } else {
                int min = 0;
                int max = DOS_ERROR_CODES.length - 1;
    
                while (max >= min) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbException.java

        static {
            final Map<Integer, String> errorCodeMessagesTmp = new HashMap<>();
            for (int i = 0; i < NT_STATUS_CODES.length; i++) {
                errorCodeMessagesTmp.put(NT_STATUS_CODES[i], NT_STATUS_MESSAGES[i]);
            }
    
            final Map<Integer, Integer> dosErrorCodeStatusesTmp = new HashMap<>();
            for (final int[] element : DOS_ERROR_CODES) {
                dosErrorCodeStatusesTmp.put(element[0], element[1]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtStatus.java

                NT_STATUS_IO_REPARSE_TAG_NOT_HANDLED, NT_STATUS_NO_MORE_FILES, };
    
        /** Array of human-readable messages corresponding to NT_STATUS_CODES */
        String[] NT_STATUS_MESSAGES = { "The operation completed successfully.", "Request is pending",
                "A notify change request is being completed.", "The data was too large to fit into the specified buffer.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/NtStatus.java

        /**
         * Array of NT status message strings corresponding to NT status codes.
         * These messages provide human-readable descriptions for various NT status values.
         */
        String[] NT_STATUS_MESSAGES = { "The operation completed successfully.", "A device attached to the system is not functioning.",
                "Incorrect function.", "The parameter is incorrect.", "Invalid access to memory location.", "The handle is invalid.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
Back to top