Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for lastNameBufferIndex (0.48 sec)

  1. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java

                 * lastNameOffset falls between the start of the
                 * entry and the next entry.
                 */
    
                if (lastNameBufferIndex >= bufferIndex
                        && (e.getNextEntryOffset() == 0 || lastNameBufferIndex < bufferIndex + e.getNextEntryOffset())) {
                    this.lastName = e.getFilename();
                    this.resumeKey = e.getFileIndex();
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                 * lastNameOffset falls between the start of the
                 * entry and the next entry.
                 */
    
                if (lastNameBufferIndex >= bufferIndex && (e.nextEntryOffset == 0 || lastNameBufferIndex < bufferIndex + e.nextEntryOffset)) {
                    lastName = e.filename;
                    resumeKey = e.fileIndex;
                }
    
                bufferIndex += e.nextEntryOffset;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.6K bytes
    - Viewed (0)
Back to top