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;
245
if (
mPrivateInput
== null) {
246
mPrivateInput
= new PrivateInputStream(this);
252
return
mPrivateInput
;
392
if (
mPrivateInput
== null) {
437
if (
mPrivateInput
!= null) {
438
mPrivateInput
.close();
449
if (!mParent.sendRequest(opCode, sendHeader, mReplyHeader,
mPrivateInput
)) {
521
if (!mParent.sendRequest(opCode, null, mReplyHeader,
mPrivateInput
)) {
[
all
...]
ServerOperation.java
77
private PrivateInputStream
mPrivateInput
;
113
mPrivateInput
= new PrivateInputStream(this);
211
mPrivateInput
.writeBytes(body, 1);
215
if (
mPrivateInput
.available() > 0) {
222
while ((!mGetOperation) && (!finalBitSet) && (
mPrivateInput
.available() == 0)) {
224
if (
mPrivateInput
.available() > 0) {
317
if (
mPrivateInput
!= null) {
318
mPrivateInput
.close();
496
mPrivateInput
.writeBytes(body, 1);
636
return
mPrivateInput
;
[
all
...]
Completed in 43 milliseconds