OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bodyStream
(Results
1 - 2
of
2
) sorted by null
/external/mockwebserver/src/main/java/com/google/mockwebserver/
MockResponse.java
40
/** The response body content, or null if {@code
bodyStream
} is set. */
43
private InputStream
bodyStream
;
154
return
bodyStream
!= null ?
bodyStream
: new ByteArrayInputStream(body);
160
this.
bodyStream
= null;
164
public MockResponse setBody(InputStream
bodyStream
, long bodyLength) {
167
this.
bodyStream
=
bodyStream
;
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java
36
/** The response body content, or null if {@code
bodyStream
} is set. */
39
private InputStream
bodyStream
;
141
return
bodyStream
!= null ?
bodyStream
: new ByteArrayInputStream(body);
147
this.
bodyStream
= null;
151
public MockResponse setBody(InputStream
bodyStream
, long bodyLength) {
154
this.
bodyStream
=
bodyStream
;
Completed in 156 milliseconds