OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPrivateInput
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/obex/javax/obex/
ClientOperation.java
53
private PrivateInputStream
mPrivateInput
;
96
mPrivateInput
= null;
238
if (
mPrivateInput
== null) {
239
mPrivateInput
= new PrivateInputStream(this);
245
return
mPrivateInput
;
385
if (
mPrivateInput
== null) {
430
if (
mPrivateInput
!= null) {
431
mPrivateInput
.close();
442
if (!mParent.sendRequest(opCode, sendHeader, mReplyHeader,
mPrivateInput
)) {
514
if (!mParent.sendRequest(opCode, null, mReplyHeader,
mPrivateInput
)) {
[
all
...]
ServerOperation.java
77
private PrivateInputStream
mPrivateInput
;
111
mPrivateInput
= new PrivateInputStream(this);
209
mPrivateInput
.writeBytes(body, 1);
213
if (
mPrivateInput
.available() > 0) {
220
while ((!mGetOperation) && (!finalBitSet) && (
mPrivateInput
.available() == 0)) {
222
if (
mPrivateInput
.available() > 0) {
315
if (
mPrivateInput
!= null) {
316
mPrivateInput
.close();
483
mPrivateInput
.writeBytes(body, 1);
623
return
mPrivateInput
;
[
all
...]
Completed in 17 milliseconds