- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getMessageByWinerrCode (0.13 sec)
-
src/main/java/jcifs/smb1/smb1/SmbException.java
} else { return DOS_ERROR_CODES[mid][1]; } } } return NT_STATUS_UNSUCCESSFUL; } static String getMessageByWinerrCode( int errcode ) { int min = 0; int max = WINERR_CODES.length - 1; while( max >= min ) { int mid = (min + max) / 2; if( errcode > WINERR_CODES[mid] ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbException.java
statusCode = dosErrorCodeStatuses.get(errcode); } else { statusCode = NT_STATUS_UNSUCCESSFUL; } return statusCode; } static String getMessageByWinerrCode ( int errcode ) { String message = winErrorCodeMessages.get(errcode); if (message == null) { message = "W" + Hexdump.toHexString(errcode, 8); } return message;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:16:55 UTC 2018 - 5.9K bytes - Viewed (0)