Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOutputLength (0.14 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

         * @return the outputData
         */
        public Decodable getOutputData () {
            return this.outputData;
        }
    
    
        /**
         * @return the outputLength
         */
        public int getOutputLength () {
            return this.outputLength;
        }
    
    
        /**
         * @return the inputData
         */
        public Decodable getInputData () {
            return this.inputData;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

                    req.setMaxOutputResponse(maxRecvSize);
                    Smb2IoctlResponse resp = th.send(req, RequestParam.NO_RETRY);
                    return resp.getOutputLength();
                }
                else if ( this.transact ) {
                    TransTransactNamedPipe req = new TransTransactNamedPipe(th.getConfig(), fh.getFid(), buf, off, length);
    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)
Back to top