- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getNamedPipeOutputStream (0.08 seconds)
-
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
* @return the output stream for writing to this pipe * @throws IOException if an I/O error occurs */ public OutputStream getNamedPipeOutputStream() throws IOException { if (pipeOut == 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 (in == null) { in = (SmbFileInputStream) pipe.getNamedPipeInputStream(); } if (out == null) { out = (SmbFileOutputStream) pipe.getNamedPipeOutputStream(); } if (isDirect) { out.writeDirect(buf, off, length, 1); return; } out.write(buf, off, length); } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.5K bytes - Click Count (0)