HomeSort by relevance Sort by last modified time
    Searched refs:RESPONSE (Results 1 - 14 of 14) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 48 private static String RESPONSE = ParameterNames.RESPONSE;
118 else if (nameValue.getName().compareToIgnoreCase(RESPONSE) == 0)
Challenge.java 55 private static String RESPONSE = ParameterNames.RESPONSE;
169 * get the Response value.
173 return (String) authParams.getValue(RESPONSE);
AuthenticationHeader.java 66 public static final String RESPONSE = ParameterNames.RESPONSE;
118 || name.equalsIgnoreCase(ParameterNames.RESPONSE )
458 * Get the RESPONSE value (or null if it does not exist).
460 * @return String response parameter value.
463 return (String) getParameterValue(ParameterNames.RESPONSE);
467 * Set the Response.
469 * @param response
472 public void setResponse(String response) throws ParseException {
473 if (response == null
    [all...]
ParameterNames.java 54 public static final String RESPONSE = "response";
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_service.h 77 enum RequestOrResponse { REQUEST, RESPONSE };
101 // Generate the Get{Request,Response}Prototype() methods.
cpp_service.cc 96 " ::google::protobuf::Message* response,\n"
155 " $output_type$* response,\n"
193 GenerateGetPrototype(RESPONSE, printer);
239 " ::google::protobuf::Message* response,\n"
258 " ::google::protobuf::down_cast< $output_type$*>(response),\n"
323 " $output_type$* response,\n"
326 " controller, request, response, done);\n"
  /external/protobuf/src/google/protobuf/compiler/java/
java_service.h 82 // Generate the implementations of Service.get{Request,Response}Prototype().
83 enum RequestOrResponse { REQUEST, RESPONSE };
java_service.cc 85 GenerateGetPrototype(RESPONSE, printer);
149 GenerateGetPrototype(RESPONSE, printer);
269 "request_or_response", (which == REQUEST) ? "Request" : "Response");
  /external/oauth/core/src/main/java/net/oauth/
OAuthProblemException.java 28 * response that conforms to the OAuth <a
59 Object response = getParameters().get(HttpMessage.RESPONSE);
60 if (response != null) {
61 msg = response.toString();
74 response = getHttpStatusCode();
75 if (response != null) {
76 return HttpResponseMessage.STATUS_CODE + " " + response;
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionResponse.java 31 * The response part of a URLConnection, encapsulated as an OAuthMessage.
39 * Construct an OAuthMessage from the HTTP response, including parameters
41 * come first, followed by the ones from the response body.
109 StringBuilder response = new StringBuilder(); local
119 response.append(firstLine).append(EOL);
122 response.append(name).append(": ");
125 response.append(value).append(EOL);
127 response.append(EOL);
129 response.append(new String(((ExcerptInputStream) body)
132 into.put(HttpMessage.RESPONSE, response.toString())
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpMethodResponse.java 47 * Construct an OAuthMessage from the HTTP response, including parameters
49 * come first, followed by the ones from the response body.
51 public HttpMethodResponse(HttpRequestBase request, HttpResponse response, byte[] requestBody,
56 this.httpResponse = response;
121 StringBuilder response = new StringBuilder(); local
123 response.append(value).append(EOL);
127 response.append(name).append(": ").append(value).append(EOL);
129 response.append(EOL);
131 response.append(new String(((ExcerptInputStream) body).getExcerpt(),
134 into.put(HttpMessage.RESPONSE, response.toString())
    [all...]
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 31 * An HTTP request or response.
149 /** The name of a dump entry whose value is the HTTP response. */
150 public static final String RESPONSE = "HTTP response";
  /external/wpa_supplicant/
eapol_sm.c 457 SM_STATE(SUPP_BE, RESPONSE)
459 SM_ENTRY(SUPP_BE, RESPONSE);
534 * Skipping RESPONSE and/or RECEIVE states in these cases can
546 SM_ENTER(SUPP_BE, RESPONSE);
801 wpa_printf(MSG_WARNING, "EAPOL: txSuppRsp - EAP response data "
912 return "RESPONSE";
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eapol_supp/
eapol_supp_sm.c 481 SM_STATE(SUPP_BE, RESPONSE)
483 SM_ENTRY(SUPP_BE, RESPONSE);
559 * Skipping RESPONSE and/or RECEIVE states in these cases can
571 SM_ENTER(SUPP_BE, RESPONSE);
825 wpa_printf(MSG_WARNING, "EAPOL: txSuppRsp - EAP response data "
937 return "RESPONSE";
    [all...]

Completed in 238 milliseconds