Home
last modified time | relevance | path

Searched refs:postBody (Results 1 – 6 of 6) sorted by relevance

/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
DPostString.java32 String postBody = "" in run() local
42 .post(RequestBody.create(MEDIA_TYPE_MARKDOWN, postBody)) in run()
/external/google-breakpad/src/common/mac/
DHTTPMultipartUpload.m151 NSMutableData *postBody = [NSMutableData data];
163 [postBody appendData:[self formDataForKey:key
182 [postBody appendData:fileData];
186 [postBody appendData:[epilogue dataUsingEncoding:NSUTF8StringEncoding]];
188 [req setHTTPBody:postBody];
/external/volley/src/main/java/com/android/volley/toolbox/
DHttpClientStack.java101 byte[] postBody = request.getPostBody(); in createHttpRequest()
102 if (postBody != null) { in createHttpRequest()
106 entity = new ByteArrayEntity(postBody); in createHttpRequest()
DHurlStack.java210 byte[] postBody = request.getPostBody(); in setConnectionParametersForRequest()
211 if (postBody != null) { in setConnectionParametersForRequest()
220 out.write(postBody); in setConnectionParametersForRequest()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
DFakeHttpLayerTest.java79 requestMatcherBuilder.postBody(new FakeHttpLayer.RequestMatcherBuilder.PostBodyMatcher() { in matches__shouldMatchPostBody()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
DFakeHttpLayer.java308 public RequestMatcherBuilder postBody(PostBodyMatcher postBodyMatcher) { in postBody() method in FakeHttpLayer.RequestMatcherBuilder