Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for inputs (0.15 sec)

  1. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

                throw new SmbException("Already closed");
            }
    
            if ( this.input != null ) {
                return this.input;
            }
    
            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                this.input = new SmbPipeInputStream(this, th);
            }
            return this.input;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

    public abstract class Transport implements Runnable, AutoCloseable {
    
        private static int id = 0;
        private static final Logger log = LoggerFactory.getLogger(Transport.class);
    
    
        /**
         * Read bytes from the input stream into a buffer
         * 
         * @param in
         * @param b
         * @param off
         * @param len
         * @return number of bytes read
         * @throws IOException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ntlmssp/Type2Message.java

            if ( !allZeros8(input, pos) ) {
                byte[] challengeBytes = new byte[8];
                System.arraycopy(input, pos, challengeBytes, 0, challengeBytes.length);
                setChallenge(challengeBytes);
            }
            pos += 8;
    
            if ( targetNameOff < pos + 8 || input.length < pos + 8 ) {
                // no room for Context/Reserved
                return;
            }
    
            if ( !allZeros8(input, pos) ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFileInputStream.java

        /**
         * Reads up to b.length bytes of data from this input stream into an array of bytes.
         *
         * @throws IOException
         *             if a network error occurs
         */
    
        @Override
        public int read ( byte[] b ) throws IOException {
            return read(b, 0, b.length);
        }
    
    
        /**
         * Reads up to len bytes of data from this input stream into an array of bytes.
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 08:55:14 GMT 2020
    - 13.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbResource.java

    
        /**
         * Opens an input stream reading the file (read only)
         * 
         * @param flags
         *            open flags
         * @param access
         *            desired access flags
         * @param sharing
         *            flags indicating for which operations others may open the file (FILE_SHARING_*)
         * @return input stream, needs to be closed when finished
         * @throws CIFSException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbRandomAccessFile.java

                        this.fp = cur;
                    }
                    break;
                default:
                    input.append((char) c);
                    break;
                }
            }
    
            if ( ( c == -1 ) && ( input.length() == 0 ) ) {
                return null;
            }
    
            return input.toString();
        }
    
    
        @Override
        public final String readUTF () throws SmbException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

         * actually purer. However, in the case of smb we know the
         * wordCount and byteCount. And since every subclass of
         * ServerMessageBlock would have to perform the same read
         * operation on the input stream, we might as will pull that
         * common functionality into the superclass and read wordCount
         * and byteCount worth of data.
         * 
         * We will still use the readXxxWireFormat return values to
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         * actually purer. However, in the case of smb we know the
         * wordCount and byteCount. And since every subclass of
         * ServerMessageBlock would have to perform the same read
         * operation on the input stream, we might as will pull that
         * common functionality into the superclass and read wordCount
         * and byteCount worth of data.
         * 
         * We will still use the readXxxWireFormat return values to
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

    
        /**
         * Update digest with data
         * 
         * @param input
         * @param offset
         * @param len
         */
        public void update ( byte[] input, int offset, int len ) {
            if ( log.isTraceEnabled() ) {
                log.trace("update: " + this.updates + " " + offset + ":" + len);
                log.trace(Hexdump.toHexString(input, offset, Math.min(len, 256)));
            }
            if ( len == 0 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 10.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

                        }
                        break;
                    default:
                        input.append( (char)c );
                        break;
                }
            }
    
            if ((c == -1) && (input.length() == 0)) {
                return null;
            }
    
            return input.toString();
        }
    
        public final String readUTF() throws SmbException {
            int size = readUnsignedShort();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.9K bytes
    - Viewed (0)
Back to top