Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ERROR_SUCCESS (0.5 sec)

  1. src/main/java/jcifs/smb/WinError.java

    public interface WinError {
    
        /*
         * Don't bother to edit this. Everything within the interface
         * block is automatically generated from the ntstatus package.
         */
    
        public static final int ERROR_SUCCESS = 0;
        public static final int ERROR_ACCESS_DENIED = 5;
        public static final int ERROR_REQ_NOT_ACCEP = 71;
        public static final int ERROR_BAD_PIPE = 230;
        public static final int ERROR_PIPE_BUSY = 231;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/WinError.java

    public interface WinError {
    
        /* Don't bother to edit this. Everthing within the interface
         * block is automatically generated from the ntstatus package.
         */
    
        public static final int ERROR_SUCCESS = 0;
        public static final int ERROR_ACCESS_DENIED = 5;
        public static final int ERROR_REQ_NOT_ACCEP = 71;
        public static final int ERROR_BAD_PIPE = 230;
        public static final int ERROR_PIPE_BUSY = 231;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NetServerEnumIterator.java

            int status = this.response.getStatus();
            if ( status == WinError.ERROR_SERVICE_NOT_INSTALLED ) {
                throw new SmbUnsupportedOperationException();
            }
            if ( status != WinError.ERROR_SUCCESS && status != WinError.ERROR_MORE_DATA ) {
                throw new SmbException(status, true);
            }
        }
    
    
        private FileEntry advance () throws CIFSException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbEnumerationUtil.java

            SmbComTransaction req = new NetShareEnum(th.getConfig());
            SmbComTransactionResponse resp = new NetShareEnumResponse(th.getConfig());
            th.send(req, resp);
            if ( resp.getStatus() != WinError.ERROR_SUCCESS )
                throw new SmbException(resp.getStatus(), true);
    
            return resp.getResults();
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbFile.java

            SmbComTransaction req = new NetShareEnum();
            SmbComTransactionResponse resp = new NetShareEnumResponse();
    
            send(req, resp);
    
            if (resp.status != SmbException.ERROR_SUCCESS)
                throw new SmbException(resp.status, true);
    
            return resp.results;
        }
        void doNetServerEnum(ArrayList list,
                    boolean files,
                    String wildcard,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top