- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for NT_STATUS_MESSAGES (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6K bytes - Click Count (0) -
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]);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.7K bytes - Click Count (0) -
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.",Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 14.9K bytes - Click Count (0) -
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.",Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 13.2K bytes - Click Count (0)