- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 5,663 for THIS (0.02 sec)
-
src/main/java/jcifs/dcerpc/msrpc/samr.java
this.handle = handle; this.access_mask = access_mask; this.sid = sid; this.domain_handle = domain_handle; } @Override public void encode_in(final NdrBuffer _dst) throws NdrException { this.handle.encode(_dst); _dst.enc_ndr_long(this.access_mask); this.sid.encode(_dst); }
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/dcerpc/rpc.java
this.type = _src.dec_ndr_long(); _src.align(4); if (this.uuid == null) { this.uuid = new uuid_t(); } this.uuid.time_low = _src.dec_ndr_long(); this.uuid.time_mid = (short) _src.dec_ndr_short(); this.uuid.time_hi_and_version = (short) _src.dec_ndr_short(); this.uuid.clock_seq_hi_and_reserved = (byte) _src.dec_ndr_small();
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/smb/SmbFileInputStream.java
if (this.handle == null || !this.handle.isValid()) { // one extra acquire to keep this open till the stream is released if (this.file instanceof SmbNamedPipe) { this.handle = this.file.openUnshared(SmbConstants.O_EXCL, ((SmbNamedPipe) this.file).getPipeType() & 0xFF0000, this.sharing, SmbConstants.ATTR_NORMAL, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
this.time_hi_and_version = S(hex_to_bin(arr, 14, 4)); this.clock_seq_hi_and_reserved = B(hex_to_bin(arr, 19, 2)); this.clock_seq_low = B(hex_to_bin(arr, 21, 2)); this.node = new byte[6]; this.node[0] = B(hex_to_bin(arr, 24, 2)); this.node[1] = B(hex_to_bin(arr, 26, 2)); this.node[2] = B(hex_to_bin(arr, 28, 2)); this.node[3] = B(hex_to_bin(arr, 30, 2));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
+ ",createAction=0x" + Hexdump.toHexString(this.createAction, 4) + ",creationTime=" + new Date(this.creationTime) + ",lastAccessTime=" + new Date(this.lastAccessTime) + ",lastWriteTime=" + new Date(this.lastWriteTime) + ",changeTime="
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
dstIndex++; dstIndex += this.wordCount; this.wordCount /= 2; this.byteCount = writeBytesWireFormat(dst, dstIndex + 2); dst[dstIndex++] = (byte) (this.byteCount & 0xFF); dst[dstIndex++] = (byte) (this.byteCount >> 8 & 0xFF); dstIndex += this.byteCount; this.length = dstIndex - start; if (this.digest != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
this.password = pwAuth.getAnsiHash(this.ctx, this.server.encryptionKey); } catch (final GeneralSecurityException e) { throw new RuntimeCIFSException("Failed to encrypt password", e); } this.passwordLength = this.password.length; } else if (this.ctx.getConfig().isDisablePlainTextPasswords()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
*/ @Override public void replaceCache() { if (this.map != null && this.key != null) { this.map.put(this.key, this); } } @Override public DfsReferralDataImpl next() { return this.next; } /** * Append another referral to this referral chain * * @param dr the referral to append */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComWrite.java
final int len) { super(config, SMB_COM_WRITE); this.fid = fid; this.count = len; this.offset = offset; this.remaining = remaining; this.b = b; this.off = off; } /** * Sets the parameters for this write request. * * @param fid the file identifier * @param offset the file offset at which to write
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
if (log.isDebugEnabled()) { log.debug("Connecting " + this.name); } this.state = 1; this.te = null; final Thread t = new Thread(this, this.name); t.setDaemon(true); this.thread = t; synchronized (this.thread) { t.start(); t.wait(timeout); /* wait for doConnect */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0)