- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 833 for _infop (0.39 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/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.idl
[string] wchar_t *dfs_name; } DfsInfo300; typedef struct { uint32_t count; [size_is(count)] DfsInfo300 *s; } DfsEnumArray300; typedef union { [case(1)] DfsEnumArray1 *info1; [case(3)] DfsEnumArray3 *info3; [case(200)] DfsEnumArray200 *info200; [case(300)] DfsEnumArray300 *info300; } DfsEnumInfo; typedef struct { uint32_t level, [switch_is(level)] DfsEnumInfo e; } DfsEnumStruct;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 1.7K 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)