Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WINERR_CODES (0.07 sec)

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

        }
        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] ) {
                    min = mid + 1;
                } else if( errcode < WINERR_CODES[mid] ) {
                    max = mid - 1;
                } else {
                    return WINERR_MESSAGES[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)
  2. src/main/java/jcifs/smb/SmbException.java

            dosErrorCodeStatuses = Collections.unmodifiableMap(dosErrorCodeStatusesTmp);
    
            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);
    
        }
    
    
    
    
    
        /**
         * 
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 07:16:55 UTC 2018
    - 5.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/WinError.java

        public static final int ERROR_PIPE_NOT_CONNECTED = 233;
        public static final int ERROR_MORE_DATA = 234;
        public static final int ERROR_NO_BROWSER_SERVERS_FOUND = 6118;
    
        static final int[] WINERR_CODES = {
            ERROR_SUCCESS,
            ERROR_ACCESS_DENIED,
            ERROR_REQ_NOT_ACCEP,
            ERROR_BAD_PIPE,
            ERROR_PIPE_BUSY,
            ERROR_NO_DATA,
            ERROR_PIPE_NOT_CONNECTED,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/WinError.java

        public static final int ERROR_MORE_DATA = 234;
        public static final int ERROR_SERVICE_NOT_INSTALLED = 2184;
        public static final int ERROR_NO_BROWSER_SERVERS_FOUND = 6118;
    
        static final int[] WINERR_CODES = {
            ERROR_SUCCESS, ERROR_ACCESS_DENIED, ERROR_REQ_NOT_ACCEP, ERROR_BAD_PIPE, ERROR_PIPE_BUSY, ERROR_NO_DATA, ERROR_PIPE_NOT_CONNECTED,
            ERROR_MORE_DATA, ERROR_SERVICE_NOT_INSTALLED, ERROR_NO_BROWSER_SERVERS_FOUND,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
Back to top