Home
last modified time | relevance | path

Searched refs:postData (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/entitlement/http/
DHttpClient.java73 JSONObject postDataJsonObject = request.postData(); in request()
74 String postData; in request() local
79 postData = request.postDataJsonArray().toString(); in request()
81 postData = postDataJsonObject.toString(); in request()
85 postData = postData.replace("\\/", "/"); in request()
88 out.write(toGzipBytes(postData)); in request()
90 out.write(postData.getBytes(UTF_8)); in request()
DHttpRequest.java47 public abstract JSONObject postData(); in postData() method in HttpRequest
86 public abstract Builder setPostData(@NonNull JSONObject postData); in setPostData() argument
/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/
DWfcWebPortalFragment.java53 public static WfcWebPortalFragment newInstance(String url, String postData) { in newInstance() argument
58 args.putString(KEY_POST_DATA_STRING, postData); in newInstance()
72 String postData = arguments.getString(KEY_POST_DATA_STRING, ""); in onCreateView() local
117 if (TextUtils.isEmpty(postData)) { in onCreateView()
120 mWebView.postUrl(url, postData.getBytes()); in onCreateView()
DWfcActivationActivity.java93 public boolean showWebview(String url, String postData) { in showWebview() argument
97 mWfcWebPortalFragment = WfcWebPortalFragment.newInstance(url, postData); in showWebview()
DWfcActivationUi.java38 boolean showWebview(String url, String postData); in showWebview() argument
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DAfcClientTest.java145 assertThat(httpRequest1.postData().getJSONArray("availableSpectrumInquiryRequests") in testHTTPRequestInitialization()
149 assertThat(httpRequest1.postData().getJSONArray("availableSpectrumInquiryRequests") in testHTTPRequestInitialization()
154 assertThat(httpRequest1.postData().getJSONArray("availableSpectrumInquiryRequests") in testHTTPRequestInitialization()
164 assertThat(httpRequest2.postData().getJSONArray("availableSpectrumInquiryRequests") in testHTTPRequestInitialization()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/entitlement/http/
DHttpClientTest.java205 String postData = "{\"key\":\"base64/base64+b\"}"; in request_postJson_doNotEscapeForwardSlash() local
210 .setPostData(new JSONObject(postData)) in request_postJson_doNotEscapeForwardSlash()
224 assertThat(connection.getBytesWrittenToOutputStream()).isEqualTo(postData.getBytes(UTF_8)); in request_postJson_doNotEscapeForwardSlash()