Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for parametersDone (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

                return dataCount;
            }
    
            int getSetupCount() {
                return setupCount;
            }
    
            boolean isParametersDone() {
                return (boolean) getFieldValue("parametersDone");
            }
    
            boolean isDataDone() {
                return (boolean) getFieldValue("dataDone");
            }
    
            boolean isHasMore() {
                return hasMore;
            }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12K bytes
    - Click Count (0)
  2. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

             */
    
            if (!this.parametersDone && this.parameterDisplacement + this.parameterCount == this.totalParameterCount) {
                this.parametersDone = true;
            }
    
            if (!this.dataDone && this.dataDisplacement + this.dataCount == this.totalDataCount) {
                this.dataDone = true;
            }
    
            if (this.parametersDone && this.dataDone) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 12.3K bytes
    - Click Count (0)
Back to Top