Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

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

             * read. If so call the read methods.
             */
    
            if (!parametersDone && parameterDisplacement + parameterCount == totalParameterCount) {
                parametersDone = true;
            }
    
            if (!dataDone && dataDisplacement + dataCount == totalDataCount) {
                dataDone = true;
            }
    
            if (parametersDone && dataDone) {
                hasMore = false;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 5.9K 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