Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dataDone (0.03 sec)

  1. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

                this.parametersDone = true;
            }
    
            if (!this.dataDone && this.dataDisplacement + this.dataCount == this.totalDataCount) {
                this.dataDone = true;
            }
    
            if (this.parametersDone && this.dataDone) {
                readParametersWireFormat(this.txn_buf, this.bufParameterStart, this.totalParameterCount);
    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

            }
    
            boolean isParametersDone() {
                return (boolean) getFieldValue("parametersDone");
            }
    
            boolean isDataDone() {
                return (boolean) getFieldValue("dataDone");
            }
    
            boolean isHasMore() {
                return hasMore;
            }
    
            void setErrorCode(int code) {
                errorCode = code;
            }
    
    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