Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parametersDone (0.42 sec)

  1. 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) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. 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;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top