- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 174 for writeInt (0.17 sec)
-
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java
dstIndex += 4; SMBUtil.writeInt4(this.additionalInformation, dst, dstIndex); dstIndex += 4; SMBUtil.writeInt4(this.queryFlags, dst, dstIndex); dstIndex += 4; System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; if ( this.inputBuffer == null ) { SMBUtil.writeInt2(0, dst, inBufferOffsetOffset);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 10:41:31 UTC 2021 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/MapMakerInternalMap.java
} @Override protected ConcurrentMap<K, V> delegate() { return delegate; } void writeMapTo(ObjectOutputStream out) throws IOException { out.writeInt(delegate.size()); for (Entry<K, V> entry : delegate.entrySet()) { out.writeObject(entry.getKey()); out.writeObject(entry.getValue()); } out.writeObject(null); // terminate entries
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 90.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
dst[dstIndex + CMD_OFFSET] = command; dst[dstIndex + FLAGS_OFFSET] = flags; writeInt2( flags2, dst, dstIndex + FLAGS_OFFSET + 1 ); dstIndex += TID_OFFSET; writeInt2( tid, dst, dstIndex ); writeInt2( pid, dst, dstIndex + 2 ); writeInt2( uid, dst, dstIndex + 4 ); writeInt2( mid, dst, dstIndex + 6 ); return HEADER_LENGTH; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 21K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
int start = dstIndex; writeInt2( flags, dst, dstIndex ); dstIndex += 2; writeInt2( desiredAccess, dst, dstIndex ); dstIndex += 2; writeInt2( searchAttributes, dst, dstIndex ); dstIndex += 2; writeInt2( fileAttributes, dst, dstIndex ); dstIndex += 2; creationTime = 0; writeInt4( creationTime, dst, dstIndex ); dstIndex += 4;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
} @Override protected ConcurrentMap<K, V> delegate() { return delegate; } void writeMapTo(ObjectOutputStream out) throws IOException { out.writeInt(delegate.size()); for (Entry<K, V> entry : delegate.entrySet()) { out.writeObject(entry.getKey()); out.writeObject(entry.getValue()); } out.writeObject(null); // terminate entries
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 90.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java
SMBUtil.writeInt2(this.fid, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt4(this.offset, dst, dstIndex); dstIndex += 4; for ( int i = 0; i < 4; i++ ) { dst[ dstIndex++ ] = (byte) 0xFF; } SMBUtil.writeInt2(this.writeMode, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.remaining, dst, dstIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java
writeInt8( 0L, dst, dstIndex ); dstIndex += 8; writeTime( lastWriteTime, dst, dstIndex ); dstIndex += 8; writeInt8( 0L, dst, dstIndex ); dstIndex += 8; /* Samba 2.2.7 needs ATTR_NORMAL */ writeInt2( 0x80 | attributes, dst, dstIndex ); dstIndex += 2; /* 6 zeros observed with NT */ writeInt8( 0L, dst, dstIndex ); dstIndex += 6;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
int start = dstIndex; SMBUtil.writeInt2(this.tflags, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.desiredAccess, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.searchAttributes, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(this.fileAttributes, dst, dstIndex); dstIndex += 2; this.creationTime = 0;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComReadAndX.java
int start = dstIndex; writeInt2( fid, dst, dstIndex ); dstIndex += 2; writeInt4( offset, dst, dstIndex ); dstIndex += 4; writeInt2( maxCount, dst, dstIndex ); dstIndex += 2; writeInt2( minCount, dst, dstIndex ); dstIndex += 2; writeInt4( openTimeout, dst, dstIndex ); dstIndex += 4; writeInt2( remaining, dst, dstIndex );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2Lock.java
*/ @Override public int encode ( byte[] dst, int dstIndex ) { int start = dstIndex; SMBUtil.writeInt8(this.offset, dst, dstIndex); dstIndex += 8; SMBUtil.writeInt8(this.length, dst, dstIndex); dstIndex += 8; SMBUtil.writeInt4(this.flags, 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 - 2.2K bytes - Viewed (0)