Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WINERR_MESSAGES (0.34 sec)

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

                if( errcode > WINERR_CODES[mid] ) {
                    min = mid + 1;
                } else if( errcode < WINERR_CODES[mid] ) {
                    max = mid - 1;
                } else {
                    return WINERR_MESSAGES[mid];
                }
            }
    
            return errcode + "";
        }
    
    
        private int status;
        private Throwable rootCause;
    
        SmbException() {
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/WinError.java

            ERROR_BAD_PIPE,
            ERROR_PIPE_BUSY,
            ERROR_NO_DATA,
            ERROR_PIPE_NOT_CONNECTED,
            ERROR_MORE_DATA,
            ERROR_NO_BROWSER_SERVERS_FOUND,
        };
    
        static final String[] WINERR_MESSAGES = {
            "The operation completed successfully.",
            "Access is denied.",
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/WinError.java

            ERROR_MORE_DATA, ERROR_SERVICE_NOT_INSTALLED, ERROR_NO_BROWSER_SERVERS_FOUND,
        };
    
        static final String[] WINERR_MESSAGES = {
            "The operation completed successfully.", "Access is denied.",
            "No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.",
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbException.java

            Map<Integer, String> winErrorCodeMessagesTmp = new HashMap<>();
            for (int i = 0; i < WINERR_CODES.length; i++) {
                winErrorCodeMessagesTmp.put(WINERR_CODES[i], WINERR_MESSAGES[i]);
            }
    
            winErrorCodeMessages = Collections.unmodifiableMap(winErrorCodeMessagesTmp);
    
        }
    
    
    
    
    
        /**
         * 
         * @param 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)
Back to top