OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:postResponse
(Results
1 - 7
of
7
) sorted by null
/frameworks/volley/src/com/android/volley/
ResponseDelivery.java
23
public void
postResponse
(Request<?> request, Response<?> response);
29
public void
postResponse
(Request<?> request, Response<?> response, Runnable runnable);
ExecutorDelivery.java
54
public void
postResponse
(Request<?> request, Response<?> response) {
55
postResponse
(request, response, null);
59
public void
postResponse
(Request<?> request, Response<?> response, Runnable runnable) {
CacheDispatcher.java
125
mDelivery.
postResponse
(request, response);
138
mDelivery.
postResponse
(request, response, new Runnable() {
NetworkDispatcher.java
128
mDelivery.
postResponse
(request, response);
/frameworks/volley/tests/src/com/android/volley/mock/
MockResponseDelivery.java
35
public void
postResponse
(Request<?> request, Response<?> response) {
41
public void
postResponse
(Request<?> request, Response<?> response, Runnable runnable) {
/frameworks/volley/tests/src/com/android/volley/
ResponseDeliveryTest.java
48
mDelivery.
postResponse
(mRequest, mSuccessResponse);
55
mDelivery.
postResponse
(mRequest, mSuccessResponse);
63
mDelivery.
postResponse
(mRequest, errorResponse);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DefaultRequestDirectorTest.java
120
HttpResponse
postResponse
= requestDirector.execute(null, new HttpPost("http://some.uri"), null);
121
assertNotNull(
postResponse
);
122
assertThat(
postResponse
.getStatusLine().getStatusCode(), equalTo(200));
123
assertThat(Strings.fromStream(
postResponse
.getEntity().getContent()), equalTo("a cheery response body"));
138
HttpResponse
postResponse
= requestDirector.execute(null, new HttpPost("http://some.uri"), null);
139
InputStream postResponseStream =
postResponse
.getEntity().getContent();
Completed in 749 milliseconds