- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for fh (0.02 sec)
-
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
try (SmbFileHandleImpl fh = ensureOpen(); SmbTreeHandleImpl th = fh.getTree()) { if (th.isSMB2()) { final Smb2IoctlRequest req = new Smb2IoctlRequest(th.getConfig(), Smb2IoctlRequest.FSCTL_PIPE_TRANSCEIVE, fh.getFileId(), inB); req.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
} } /** * @throws SmbException * */ SmbFileInputStream(final SmbFile file, final SmbTreeHandleImpl th, final SmbFileHandleImpl fh) throws SmbException { this.file = file; this.handle = fh; this.unsharedFile = false; this.smb2 = th.isSMB2(); try { init(th); } catch (final CIFSException e) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
} SmbFileHandleImpl openUnshared(final String uncPath, final int flags, final int access, final int sharing, final int attrs, final int options) throws CIFSException { SmbFileHandleImpl fh = null; try (SmbTreeHandleImpl h = ensureTreeConnected()) { if (log.isDebugEnabled()) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)