- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getStatusByCode (0.1 sec)
-
src/main/java/jcifs/smb1/smb1/SmbException.java
} else { return DOS_ERROR_MESSAGES[mid]; } } } return "0x" + Hexdump.toHexString( errcode, 8 ); } static int getStatusByCode( int errcode ) { if(( errcode & 0xC0000000 ) != 0 ) { return errcode; } else { int min = 0; int max = DOS_ERROR_CODES.length - 1;
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
if (message == null) { message = "0x" + Hexdump.toHexString(errcode, 8); } return message; } static int getStatusByCode ( int errcode ) { int statusCode; if ( ( errcode & 0xC0000000 ) != 0 ) { statusCode = errcode; } else if (dosErrorCodeStatuses.containsKey(errcode)) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 07:16:55 UTC 2018 - 5.9K bytes - Viewed (0)