- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for O_RDWR (0.03 sec)
-
src/test/java/jcifs/SmbPipeResourceTest.java
} /** * Test if the PIPE_TYPE_RDWR constant has the correct value. */ @Test void testPipeTypeRdwr() { assertEquals(SmbConstants.O_RDWR, SmbPipeResource.PIPE_TYPE_RDWR, "PIPE_TYPE_RDWR should match SmbConstants.O_RDWR"); } /** * Test if the PIPE_TYPE_CALL constant has the correct value. */ @Test void testPipeTypeCall() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/SmbPipeResource.java
*/ int PIPE_TYPE_WRONLY = SmbConstants.O_WRONLY; /** * The pipe should be opened for both reading and writing. */ int PIPE_TYPE_RDWR = SmbConstants.O_RDWR; /** * Pipe operations should behave like the <code>CallNamedPipe</code> Win32 Named Pipe function. */ int PIPE_TYPE_CALL = 0x0100; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
*/ public static final int PIPE_TYPE_WRONLY = O_WRONLY; /** * The pipe should be opened for both reading and writing. */ public static final int PIPE_TYPE_RDWR = O_RDWR; /** * Pipe operations should behave like the <code>CallNamedPipe</code> Win32 Named Pipe function. */ public static final int PIPE_TYPE_CALL = 0x0100; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.5K bytes - Viewed (0)