- Sort Score
- Num 10 results
- Language All
Results 11 - 12 of 12 for dec_uint16le (0.31 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
// Verify content (simplified check, full verification would involve decoding) assertEquals(testString.length() + 1, Encdec.dec_uint32le(buffer, 0)); // Actual count assertEquals(0, Encdec.dec_uint32le(buffer, 4)); // Offset assertEquals(testString.length() + 1, Encdec.dec_uint32le(buffer, 8)); // Max count ndrBuffer.setIndex(0); String decodedString = ndrBuffer.dec_ndr_string();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
throw new SmbEndOfFileException(); } return Encdec.dec_uint16be(this.tmp, 0); } @Override public final int readUnsignedShort() throws SmbException { if (read(this.tmp, 0, 2) < 0) { throw new SmbEndOfFileException(); } return Encdec.dec_uint16be(this.tmp, 0) & 0xFFFF; } @Override
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 18.8K bytes - Click Count (0)