Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for doFindFirstNext (0.07 sec)

  1. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

        protected int bufDataStart;
    
        int dataCount;
        byte subCommand;
        volatile boolean hasMore = true;
        volatile boolean isPrimary = true;
        byte[] txn_buf;
    
        /* for doNetEnum and doFindFirstNext */
        private int status;
        private int numEntries;
        private FileEntry[] results;
    
    
        protected SmbComTransactionResponse ( Configuration config ) {
            super(config);
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 9.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java

        protected int bufDataStart;
    
        int dataCount;
        byte subCommand;
        boolean hasMore = true;
        boolean isPrimary = true;
        byte[] txn_buf;
    
        /* for doNetEnum and doFindFirstNext */
        int status;
        int numEntries;
        FileEntry[] results;
    
        SmbComTransactionResponse() {
            txn_buf = null;
        }
    
        void reset() {
            super.reset();
            bufDataStart = 0;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                } else if (share == null) {
                    doShareEnum(list, files, wildcard, searchAttributes, fnf, ff);
                } else {
                    doFindFirstNext(list, files, wildcard, searchAttributes, fnf, ff);
                }
            } catch (UnknownHostException uhe) {
                throw new SmbException(url.toString(), uhe);
            } catch (MalformedURLException mue) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top