Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bond (0.22 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

                                        new TransWaitNamedPipeResponse() );
            }
            writeDirect( b, off, len, 0 );
        }
    /**
     * Just bypasses TransWaitNamedPipe - used by DCERPC bind.
     */
        public void writeDirect( byte[] b, int off, int len, int flags ) throws IOException {
            if( len <= 0 ) {
                return;
            }
    
            if( tmp == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 9.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFileOutputStream.java

        @Override
        public void write ( byte[] b, int off, int len ) throws IOException {
            writeDirect(b, off, len, 0);
        }
    
    
        /**
         * Just bypasses TransWaitNamedPipe - used by DCERPC bind.
         * 
         * @param b
         * @param off
         * @param len
         * @param flags
         * @throws IOException
         */
        public void writeDirect ( byte[] b, int off, int len, int flags ) throws IOException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:14:04 GMT 2021
    - 11.9K bytes
    - Viewed (0)
Back to top