- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getDataCount (0.1 sec)
-
src/main/java/jcifs/internal/smb1/trans/TransTransactNamedPipeResponse.java
return new String("TransTransactNamedPipeResponse[" + super.toString() + "]"); } /** * * @return response data length */ public int getResponseLength () { return getDataCount(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java
return new String("TransCallNamedPipeResponse[" + super.toString() + "]"); } /** * * @return response data length */ public int getResponseLength () { return getDataCount(); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java
int start = bufferIndex; FileInformation inf = createFileInformation(); if ( inf != null ) { bufferIndex += inf.decode(buffer, bufferIndex, getDataCount()); this.info = inf; } return bufferIndex - start; } private FileInformation createFileInformation () { FileInformation inf;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
int start = bufferIndex; AllocInfo inf = createInfo(); if ( inf != null ) { bufferIndex += inf.decode(buffer, bufferIndex, getDataCount()); this.info = inf; } return bufferIndex - start; } /** * @return */ private AllocInfo createInfo () { AllocInfo inf;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
setResults(results); /* * last nextEntryOffset for NT 4(but not 98) is 0 so we must * use dataCount or our accounting will report an error for NT :~( */ return getDataCount(); } @Override public String toString () { String c; if ( this.getSubCommand() == SmbComTransaction.TRANS2_FIND_FIRST2 ) { c = "Trans2FindFirst2Response[";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
super(config, command); this.subCommand = subcommand; } /** * @return the dataCount */ protected final int getDataCount () { return this.dataCount; } /** * @param dataCount * the dataCount to set */ public final void setDataCount ( int dataCount ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 9.2K bytes - Viewed (0)