- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 109 for 0xffff (0.04 sec)
-
src/main/java/jcifs/smb1/smb1/SmbShareInfo.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
- checkArgument(
- (port >= 0) && (port <= 0xffff), "port '%s' is out of range (0 <= port <= 0xffff)", port);
- checkArgument(
- (flags >= 0) && (flags <= 0xffff),
- "flags '%s' is out of range (0 <= flags <= 0xffff)",
- flags);
- this.server = MoreObjects.firstNonNull(server, ANY4);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
- }
- SmbFileInputStream( SmbFile file, int openFlags ) throws SmbException, MalformedURLException, UnknownHostException {
- this.file = file;
- this.openFlags = openFlags & 0xFFFF;
- this.access = (openFlags >>> 16) & 0xFFFF;
- if (file.type != SmbFile.TYPE_NAMED_PIPE) {
- file.open( openFlags, access, SmbFile.ATTR_NORMAL, 0 );
- this.openFlags &= ~(SmbFile.O_CREAT | SmbFile.O_TRUNC);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Feb 17 09:30:57 UTC 2019 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
- this.name = pipeName;
- this.pipeData = data;
- this.pipeDataOff = off;
- this.pipeDataLen = len;
- this.timeout = 0xFFFFFFFF;
- this.maxParameterCount = 0;
- this.maxDataCount = 0xFFFF;
- this.maxSetupCount = (byte) 0x00;
- this.setupCount = 2;
- }
- @Override
- protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
- dst[ dstIndex++ ] = this.getSubCommand();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipe.java
- this.pipeFid = fid;
- this.pipeData = data;
- this.pipeDataOff = off;
- this.pipeDataLen = len;
- this.maxParameterCount = 0;
- this.maxDataCount = 0xFFFF;
- this.maxSetupCount = (byte) 0x00;
- this.setupCount = 2;
- this.name = "\\PIPE\\";
- }
- @Override
- protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java
- bufferIndex += 16;
- e.versionMajor = buffer[ bufferIndex++ ] & 0xFF;
- e.versionMinor = buffer[ bufferIndex++ ] & 0xFF;
- e.type = SMBUtil.readInt4(buffer, bufferIndex);
- bufferIndex += 4;
- int off = SMBUtil.readInt4(buffer, bufferIndex);
- bufferIndex += 4;
- off = ( off & 0xFFFF ) - this.converter;
- off = start + off;
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/smb1/dcerpc/msrpc/samr.java
- int _name_bufferi = _src.index;
- _src.advance(2 * _name_bufferl);
- if (name.buffer == null) {
- if (_name_buffers < 0 || _name_buffers > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
- name.buffer = new short[_name_buffers];
- }
- _src = _src.derive(_name_bufferi);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 14K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Aug 19 16:21:24 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
- try {
- System.arraycopy(this.sbuf, 0, buffer, 0, 4 + SMB1_HEADER_LENGTH);
- int size = ( Encdec.dec_uint16be(buffer, 2) & 0xFFFF );
- if ( size < ( SMB1_HEADER_LENGTH + 1 ) || ( 4 + size ) > Math.min(0xFFFF, getContext().getConfig().getMaximumBufferSize()) ) {
- throw new IOException("Invalid payload size: " + size);
- }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)