- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 23 for fileId3 (1.11 sec)
-
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java
* @param fileId * the file ID to query information for */ public Smb2QueryInfoRequest(final Configuration config, final byte[] fileId) { super(config, SMB2_QUERY_INFO); this.outputBufferLength = Math.min(config.getMaximumBufferSize(), config.getListSize()) - Smb2QueryInfoResponse.OVERHEAD & ~0x7; this.fileId = fileId; } /** * {@inheritDoc}
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java
*/ @Override public void setFileId(final byte[] fileId) { this.fileId = fileId; } /** * Sets the padding for the read request * * @param padding * the padding to set */ public void setPadding(final byte padding) { this.padding = padding; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
* @param path the file path * @param guid the create GUID * @param fileId the 16-byte file ID * @param type the handle type * @param timeout the timeout in milliseconds * @param leaseKey the associated lease key (can be null) */ public HandleInfo(String path, HandleGuid guid, byte[] fileId, HandleType type, long timeout, Smb2LeaseKey leaseKey) { this.path = path;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseRequest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java
try { @SuppressWarnings("resource") final SmbTreeHandleImpl th = getTreeHandle(); if (this.fileId != null && th.isConnected()) { th.send(new Smb2CloseRequest(th.getConfig(), this.fileId)); } } finally { this.fileId = null; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
* @param controlCode the IOCTL control code * @param fileId the file identifier */ public Smb2IoctlRequest(final Configuration config, final int controlCode, final byte[] fileId) { super(config, SMB2_IOCTL); this.controlCode = controlCode; this.fileId = fileId; this.maxOutputResponse = config.getTransactionBufferSize() & ~0x7;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2FlushRequest.java
private byte[] fileId; /** * Constructs an SMB2 flush request * @param config the client configuration * @param fileId the file identifier to flush */ public Smb2FlushRequest(final Configuration config, final byte[] fileId) { super(config, SMB2_FLUSH); this.fileId = fileId; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LockRequest.java
super(config, SMB2_LOCK); this.fileId = fileId; this.locks = locks; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2Request#createResponse(jcifs.CIFSContext, * jcifs.internal.smb2.ServerMessageBlock2Request) */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0)