- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 681 for _infop (0.03 sec)
-
src/main/java/jcifs/dcerpc/msrpc/srvsvc.java
_src.dec_ndr_long(); /* union discriminant */ final int _infop = _src.dec_ndr_long(); if (_infop != 0) { if (this.info == null) { /* YOYOYO */ this.info = new ShareInfoCtr0(); } _src = _src.deferred; this.info.decode(_src); } this.totalentries = _src.dec_ndr_long();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
_src.dec_ndr_long(); /* union discriminant */ final int _infop = _src.dec_ndr_long(); if (_infop != 0) { if (info == null) { /* YOYOYO */ info = new ShareInfoCtr0(); } _src = _src.deferred; info.decode(_src); } totalentries = _src.dec_ndr_long();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
final int _infop = _src.dec_ndr_long(); if (_infop != 0) { _src.dec_ndr_short(); /* union discriminant */ this.info.decode(_src); } this.retval = _src.dec_ndr_long(); } } /** * LSA lookup SIDs message. */ public static class LsarLookupSids extends DcerpcMessage { @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
} _dst.enc_ndr_referent(this.totalentries, 1); if (this.totalentries != null) { this.totalentries.encode(_dst); } } @Override public void decode_out(final NdrBuffer _src) throws NdrException { final int _infop = _src.dec_ndr_long(); if (_infop != 0) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
if (_infop != 0) { _src.dec_ndr_short(); /* union discriminant */ info.decode(_src); } retval = _src.dec_ndr_long(); } } /** * LSA lookup SIDs message. */ public static class LsarLookupSids extends DcerpcMessage { @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
@Override public void decode_out(final NdrBuffer _src) throws NdrException { final int _infop = _src.dec_ndr_long(); if (_infop != 0) { if (info == null) { /* YOYOYO */ info = new DfsEnumStruct(); } info.decode(_src); } final int _totalentriesp = _src.dec_ndr_long();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
lsarpc.LsarQueryInformationPolicy queryInfoPolicy = new lsarpc.LsarQueryInformationPolicy(mockHandle, (short) 1, mockInfo); when(mockNdrBuffer.dec_ndr_long()).thenReturn(1, 123); // _infop, retval when(mockNdrBuffer.dec_ndr_short()).thenReturn((int) (short) 0); // union discriminant queryInfoPolicy.decode_out(mockNdrBuffer); verify(mockInfo).decode(mockNdrBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfoTest.java
NetworkInterfaceInfo info1 = new NetworkInterfaceInfo(testAddress, 1000); info1.setInterfaceIndex(1); NetworkInterfaceInfo info2 = new NetworkInterfaceInfo(testAddress, 1000); info2.setInterfaceIndex(1); NetworkInterfaceInfo info3 = new NetworkInterfaceInfo(testAddress, 1000); info3.setInterfaceIndex(2); assertEquals(info1, info2);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponseTest.java
assertEquals(20, bytesRead); assertNotNull(response.getInfo()); // The info should be created with zero values SmbInfoAllocation info = (SmbInfoAllocation) response.getInfo(); assertEquals(0, info.getCapacity()); assertEquals(0, info.getFree()); } @Test void testReadDataWireFormat_BufferTooSmall() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
FileNotifyInformation info1 = notifications.get(0); assertEquals(FileNotifyInformation.FILE_ACTION_ADDED, info1.getAction()); assertEquals("test1.txt", info1.getFileName()); // Verify second notification FileNotifyInformation info2 = notifications.get(1); assertEquals(FileNotifyInformation.FILE_ACTION_MODIFIED, info2.getAction());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0)