- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 174 for writeInt (0.07 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComWrite.java
int start = dstIndex; SMBUtil.writeInt2(this.fid, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.count, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt4(this.offset, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt2(this.remaining, dst, dstIndex); dstIndex += 2; return dstIndex - start; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java
int start = dstIndex; writeInt2( sid, dst, dstIndex ); dstIndex += 2; writeInt2( Trans2FindFirst2.LIST_COUNT, dst, dstIndex ); dstIndex += 2; writeInt2( informationLevel, dst, dstIndex ); dstIndex += 2; writeInt4( resumeKey, dst, dstIndex ); dstIndex += 4; writeInt2( flags, dst, dstIndex ); dstIndex += 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java
int start = dstIndex; SMBUtil.writeInt2(this.fid, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(Trans2QueryPathInformation.mapInformationLevel(this.info.getFileInformationLevel()), dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(0, dst, dstIndex); dstIndex += 2; return dstIndex - start; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
int start = dstIndex; SMBUtil.writeInt2(this.sid, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.maxItems, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.informationLevel, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt4(this.resumeKey, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt2(this.tflags, dst, dstIndex); dstIndex += 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NetServerEnum2.java
return 0; } writeInt2( subCommand & 0xFF, dst, dstIndex ); dstIndex += 2; System.arraycopy( descr, 0, dst, dstIndex, descr.length ); dstIndex += descr.length; writeInt2( 0x0001, dst, dstIndex ); dstIndex += 2; writeInt2( maxDataCount, dst, dstIndex ); dstIndex += 2; writeInt4( serverTypes, dst, dstIndex ); dstIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSeek.java
@Override protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; SMBUtil.writeInt2(this.fid, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.mode, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt4(this.offset, dst, dstIndex); dstIndex += 4; return dstIndex - start; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunk.java
*/ @Override public int encode ( byte[] dst, int dstIndex ) { int start = dstIndex; SMBUtil.writeInt8(this.sourceOffset, dst, dstIndex); dstIndex += 8; SMBUtil.writeInt8(this.targetOffset, dst, dstIndex); dstIndex += 8; SMBUtil.writeInt4(this.length, dst, dstIndex); dstIndex += 4; dstIndex += 4; // reserved return dstIndex - start; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2.java
} SMBUtil.writeInt2(getSubCommand() & 0xFF, dst, dstIndex); dstIndex += 2; System.arraycopy(descr, 0, dst, dstIndex, descr.length); dstIndex += descr.length; SMBUtil.writeInt2(0x0001, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.maxDataCount, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt4(this.serverTypes, dst, dstIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
int start = dstIndex; writeInt2( searchAttributes, dst, dstIndex ); dstIndex += 2; writeInt2( LIST_COUNT, dst, dstIndex ); dstIndex += 2; writeInt2( flags, dst, dstIndex ); dstIndex += 2; writeInt2( informationLevel, dst, dstIndex ); dstIndex += 2; writeInt4( searchStorageType, dst, dstIndex ); dstIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LockRequest.java
*/ @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; SMBUtil.writeInt2(48, dst, dstIndex); SMBUtil.writeInt2(this.locks.length, dst, dstIndex + 2); dstIndex += 4; SMBUtil.writeInt4( ( ( this.lockSequenceNumber & 0xF ) << 28 ) | ( this.lockSequenceIndex & 0x0FFFFFFF ), dst, dstIndex); dstIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0)