- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getNamedPipeInputStream (0.08 seconds)
-
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
* write to a Named Pipe. * @return the input stream for reading from this pipe * @throws IOException if an I/O error occurs */ public InputStream getNamedPipeInputStream() throws IOException { if (pipeIn == null) { if ((pipeType & PIPE_TYPE_CALL) == PIPE_TYPE_CALL || (pipeType & PIPE_TYPE_TRANSACT) == PIPE_TYPE_TRANSACT) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 8.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
if (out != null && !out.isOpen()) { throw new IOException("DCERPC pipe is no longer open"); } if (in == null) { in = (SmbFileInputStream) pipe.getNamedPipeInputStream(); } if (out == null) { out = (SmbFileOutputStream) pipe.getNamedPipeOutputStream(); } if (isDirect) { out.writeDirect(buf, off, length, 1);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0)