Searched defs:reasonPhrase (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/webkit/
H A DWebResourceResponse.java66 * @param reasonPhrase the phrase describing the status code, for example "OK". Must be non-null
74 String reasonPhrase, Map<String, String> responseHeaders, InputStream data) {
76 setStatusCodeAndReasonPhrase(statusCode, reasonPhrase);
124 * @param reasonPhrase the phrase describing the status code, for example "OK". Must be non-null
127 public void setStatusCodeAndReasonPhrase(int statusCode, String reasonPhrase) { argument
135 if (reasonPhrase == null)
136 throw new IllegalArgumentException("reasonPhrase can't be null.");
137 if (reasonPhrase.trim().isEmpty())
138 throw new IllegalArgumentException("reasonPhrase can't be empty.");
139 for (int i = 0; i < reasonPhrase
73 WebResourceResponse(String mimeType, String encoding, int statusCode, String reasonPhrase, Map<String, String> responseHeaders, InputStream data) argument
218 WebResourceResponse(boolean immutable, String mimeType, String encoding, int statusCode, String reasonPhrase, Map<String, String> responseHeaders, InputStream data) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java38 private String reasonPhrase; field in class:TestEventHandler
175 reasonPhrase = reason_phrase;

Completed in 554 milliseconds