- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 108 for readInt4 (0.11 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
next = SMBUtil.readInt4(buffer, cci); cci += 4; int nameOffset = SMBUtil.readInt2(buffer, cci); int nameLength = SMBUtil.readInt2(buffer, cci + 2); cci += 4; int dataOffset = SMBUtil.readInt2(buffer, cci + 2); cci += 4; int dataLength = SMBUtil.readInt4(buffer, cci); cci += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java
bufferIndex += 4; // skip idFileSystem info.sectPerAlloc = readInt4( buffer, bufferIndex ); bufferIndex += 4; info.alloc = readInt4( buffer, bufferIndex ); bufferIndex += 4; info.free = readInt4( buffer, bufferIndex ); bufferIndex += 4; info.bytesPerSect = readInt2( buffer, bufferIndex ); bufferIndex += 4; this.info = info;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SecurityDescriptor.java
type = ServerMessageBlock.readInt2(buffer, bufferIndex); bufferIndex += 2; int ownerUOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to owner sid bufferIndex += 4; int ownerGOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to group sid bufferIndex += 4; int saclOffset = ServerMessageBlock.readInt4(buffer, bufferIndex); // offset to sacl
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java
bufferIndex++; this.type = SMBUtil.readInt2(buffer, bufferIndex); bufferIndex += 2; int ownerUOffset = SMBUtil.readInt4(buffer, bufferIndex); // offset to owner sid bufferIndex += 4; int ownerGOffset = SMBUtil.readInt4(buffer, bufferIndex); // offset to group sid bufferIndex += 4; SMBUtil.readInt4(buffer, bufferIndex); // offset to sacl bufferIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/LockingAndXRange.java
if ( this.largeFile ) { this.pid = SMBUtil.readInt2(buffer, bufferIndex); int boHigh = SMBUtil.readInt4(buffer, bufferIndex + 4); int boLow = SMBUtil.readInt4(buffer, bufferIndex + 8); this.byteOffset = ( boHigh << 32 ) | boLow; int lHigh = SMBUtil.readInt4(buffer, bufferIndex + 12); int lLow = SMBUtil.readInt4(buffer, bufferIndex + 16);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/SMBUtil.java
+ ( ( src[ srcIndex + 3 ] & 0xFF ) << 24 ); } public static long readInt8 ( byte[] src, int srcIndex ) { return ( readInt4(src, srcIndex) & 0xFFFFFFFFL ) + ( (long) ( readInt4(src, srcIndex + 4) ) << 32 ); } public static void writeInt8 ( long val, byte[] dst, int dstIndex ) { dst[ dstIndex ] = (byte) ( val ); dst[ ++dstIndex ] = (byte) ( val >>= 8 );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java
int start = bufferIndex; this.namedPipeState = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.readDataAvailable = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.numberOfMessages = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; this.messageLength = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
bufferIndex += 8; this.endOfFile = SMBUtil.readInt8(buffer, bufferIndex); bufferIndex += 8; this.allocationSize = SMBUtil.readInt8(buffer, bufferIndex); bufferIndex += 8; this.extFileAttributes = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; int fileNameLength = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
int inputOffset = SMBUtil.readInt4(buffer, bufferIndex) + getHeaderStart(); bufferIndex += 4; int inputCount = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4; int outputOffset = SMBUtil.readInt4(buffer, bufferIndex) + getHeaderStart(); bufferIndex += 4; int outputCount = SMBUtil.readInt4(buffer, bufferIndex); bufferIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 7.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
// e.changeTime = readTime( buffer, bufferIndex + 32 ); e.endOfFile = readInt8( buffer, bufferIndex + 40 ); // e.allocationSize = readInt8( buffer, bufferIndex + 48 ); e.extFileAttributes = readInt4( buffer, bufferIndex + 56 ); e.fileNameLength = readInt4( buffer, bufferIndex + 60 ); // e.eaSize = readInt4( buffer, bufferIndex + 64 ); // e.shortNameLength = buffer[bufferIndex + 68] & 0xFF;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.5K bytes - Viewed (0)