Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for fetchMore (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

            return this.response.getResults();
        }
    
        /**
         * {@inheritDoc}
         *
         * @throws CIFSException
         *
         * @see jcifs.smb.DirFileEntryEnumIteratorBase#fetchMore()
         */
        @Override
        protected boolean fetchMore() throws CIFSException {
            this.nextRequest.reset(this.response.getResumeKey(), this.response.getLastName());
            this.response.reset();
            try {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

                doClose();
            }
            return n;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.DirFileEntryEnumIteratorBase#fetchMore()
         */
        @SuppressWarnings("resource")
        @Override
        protected boolean fetchMore() throws CIFSException {
            final FileEntry[] results = this.response.getResults();
            final SmbTreeHandleImpl th = getTreeHandle();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

                this.ridx++;
                if (filter(itm)) {
                    return itm;
                }
            }
    
            if (!last && !isDone()) {
                if (!fetchMore()) {
                    doClose();
                    return null;
                }
                this.ridx = 0;
                return advance(true);
            }
            return null;
        }
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 7.7K bytes
    - Click Count (0)
Back to Top