Searched defs:mPrivateOutput (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/obex/javax/obex/
H A DClientOperation.java65 private PrivateOutputStream mPrivateOutput; field in class:ClientOperation
121 mPrivateOutput = null;
312 if (mPrivateOutput == null) {
314 mPrivateOutput = new PrivateOutputStream(this, getMaxPacketSize());
319 return mPrivateOutput;
446 if (mPrivateOutput != null) {
447 bodyLength = mPrivateOutput.size();
481 if (mPrivateOutput != null) {
482 mPrivateOutput.close();
529 byte[] body = mPrivateOutput
[all...]
H A DServerOperation.java86 private PrivateOutputStream mPrivateOutput; field in class:ServerOperation
339 if ((mResponseSize > 3) || (mPrivateOutput.size() > 0)) {
394 if (mPrivateOutput != null) {
395 bodyLength = mPrivateOutput.size();
415 if (mPrivateOutput != null) {
416 mPrivateOutput.close();
477 byte[] body = mPrivateOutput.readBytes(bodyLength);
484 if ((finalBitSet) || (mPrivateOutput.isClosed())) {
786 if (mPrivateOutput == null) {
787 mPrivateOutput
[all...]

Completed in 75 milliseconds