- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for minimum_length (0.2 sec)
-
src/test/java/jcifs/dcerpc/msrpc/lsarpcIntegrationTest.java
// Verify the decoded data matches assertEquals(domainInfo.name.length, decodedInfo.name.length); assertEquals(domainInfo.name.maximum_length, decodedInfo.name.maximum_length); assertNotNull(decodedInfo.name.buffer); assertEquals(domainInfo.name.maximum_length / 2, decodedInfo.name.buffer.length); // Verify SID assertNotNull(decodedInfo.sid);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
samr.SamrSamEntry entry = new samr.SamrSamEntry(); entry.idx = 1; entry.name = new rpc.unicode_string(); entry.name.length = 4; entry.name.maximum_length = 6; entry.name.buffer = new short[] { 't', 'e', 's', 't' }; // When: Encoding entry entry.encode(mockNdrBuffer); // Then: Should encode all fields
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
_dst.enc_ndr_short(this.name.maximum_length); _dst.enc_ndr_referent(this.name.buffer, 1); _dst.enc_ndr_referent(this.sid, 1); if (this.name.buffer != null) { _dst = _dst.deferred; final int _name_bufferl = this.name.length / 2; final int _name_buffers = this.name.maximum_length / 2; _dst.enc_ndr_long(_name_buffers);
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/smb1/dcerpc/msrpc/lsarpc.java
_dst.enc_ndr_short(name.maximum_length); _dst.enc_ndr_referent(name.buffer, 1); _dst.enc_ndr_short(dns_domain.length); _dst.enc_ndr_short(dns_domain.maximum_length); _dst.enc_ndr_referent(dns_domain.buffer, 1); _dst.enc_ndr_short(dns_forest.length); _dst.enc_ndr_short(dns_forest.maximum_length);
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/rpc.java
*/ public short maximum_length; /** * The buffer containing the Unicode characters. */ public short[] buffer; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_short(length); _dst.enc_ndr_short(maximum_length); _dst.enc_ndr_referent(buffer, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
unicodeString.length = (short) 10; unicodeString.maximum_length = (short) 20; unicodeString.buffer = new short[] { 65, 66, 67 }; // A, B, C // Then: Values should be set correctly assertEquals((short) 10, unicodeString.length); assertEquals((short) 20, unicodeString.maximum_length); assertArrayEquals(new short[] { 65, 66, 67 }, unicodeString.buffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java
samr.SamrSamEntry entry = new samr.SamrSamEntry(); entry.idx = 1; entry.name = new rpc.unicode_string(); entry.name.length = 4; entry.name.maximum_length = 6; entry.name.buffer = new short[] { 't', 'e', 's', 't' }; // When: Encoding entry entry.encode(mockNdrBuffer); // Then: Should encode all fields
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.java
public short maximum_length; /** The Unicode character buffer */ public short[] buffer; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_short(this.length); _dst.enc_ndr_short(this.maximum_length); _dst.enc_ndr_referent(this.buffer, 1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
_dst.enc_ndr_short(this.name.maximum_length); _dst.enc_ndr_referent(this.name.buffer, 1); if (this.name.buffer != null) { _dst = _dst.deferred; final int _name_bufferl = this.name.length / 2; final int _name_buffers = this.name.maximum_length / 2; _dst.enc_ndr_long(_name_buffers);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java
_dst.enc_ndr_short(name.length); _dst.enc_ndr_short(name.maximum_length); _dst.enc_ndr_referent(name.buffer, 1); if (name.buffer != null) { _dst = _dst.deferred; final int _name_bufferl = name.length / 2; final int _name_buffers = name.maximum_length / 2; _dst.enc_ndr_long(_name_buffers);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.1K bytes - Viewed (0)