- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for nextEntryOffset (0.15 sec)
-
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
} @Override public long length () { return this.endOfFile; } /** * @return the nextEntryOffset */ public int getNextEntryOffset () { return this.nextEntryOffset; } /** * {@inheritDoc} * * @see jcifs.Decodable#decode(byte[], int, int) */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java
// nothing to do return 0; } int start = bufferIndex; this.nextEntryOffset = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; if ( ( this.nextEntryOffset % 4 ) != 0 ) { throw new SMBProtocolDecodingException("Non aligned nextEntryOffset"); } this.action = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 17 08:55:32 UTC 2018 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
if( lastNameBufferIndex >= bufferIndex && ( e.nextEntryOffset == 0 || lastNameBufferIndex < ( bufferIndex + e.nextEntryOffset ))) { lastName = e.filename; resumeKey = e.fileIndex; } bufferIndex += e.nextEntryOffset; } /* last nextEntryOffset for NT 4(but not 98) is 0 so we must
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java
break; } cur.decode(buffer, bufferIndex, bufferLength); infos.add(cur); int nextEntryOffset = cur.getNextEntryOffset(); if ( nextEntryOffset > 0 ) { bufferIndex += nextEntryOffset; } else { break; } } while ( bufferIndex < bufferOffset + bufferLength );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
this.resumeKey = e.getFileIndex(); } bufferIndex += e.getNextEntryOffset(); } setResults(results); /* * last nextEntryOffset for NT 4(but not 98) is 0 so we must * use dataCount or our accounting will report an error for NT :~( */ return getDataCount(); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.7K bytes - Viewed (0) -
api/go1.txt
pkg syscall (windows-386), type FileNotifyInformation struct, FileName uint16 pkg syscall (windows-386), type FileNotifyInformation struct, FileNameLength uint32 pkg syscall (windows-386), type FileNotifyInformation struct, NextEntryOffset uint32 pkg syscall (windows-386), type Filetime struct pkg syscall (windows-386), type Filetime struct, HighDateTime uint32 pkg syscall (windows-386), type Filetime struct, LowDateTime uint32
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)