Searched refs:postBody (Results 1 – 6 of 6) sorted by relevance
32 String postBody = "" in run() local42 .post(RequestBody.create(MEDIA_TYPE_MARKDOWN, postBody)) in run()
151 NSMutableData *postBody = [NSMutableData data];163 [postBody appendData:[self formDataForKey:key182 [postBody appendData:fileData];186 [postBody appendData:[epilogue dataUsingEncoding:NSUTF8StringEncoding]];188 [req setHTTPBody:postBody];
101 byte[] postBody = request.getPostBody(); in createHttpRequest()102 if (postBody != null) { in createHttpRequest()106 entity = new ByteArrayEntity(postBody); in createHttpRequest()
210 byte[] postBody = request.getPostBody(); in setConnectionParametersForRequest()211 if (postBody != null) { in setConnectionParametersForRequest()220 out.write(postBody); in setConnectionParametersForRequest()
79 requestMatcherBuilder.postBody(new FakeHttpLayer.RequestMatcherBuilder.PostBodyMatcher() { in matches__shouldMatchPostBody()
308 public RequestMatcherBuilder postBody(PostBodyMatcher postBodyMatcher) { in postBody() method in FakeHttpLayer.RequestMatcherBuilder