HomeSort by relevance Sort by last modified time
    Searched refs:RESPONSE (Results 1 - 22 of 22) 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/libese/libese-teq1/
teq1.c 72 case S(RESYNC, RESPONSE):
73 return "S(RESYNC, RESPONSE)";
76 case S(IFS, RESPONSE):
77 return "S(IFS, RESPONSE)";
80 case S(ABORT, RESPONSE):
81 return "S(ABORT, RESPONSE)";
84 case S(WTX, RESPONSE):
85 return "S(WTX, RESPONSE)";
281 if (rx_frame->header.PCB != S(RESYNC, RESPONSE) &&
357 /* Card begins chained response. *
    [all...]
  /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 65 enum RequestOrResponse { REQUEST, RESPONSE };
106 // Generate the implementations of Service.get{Request,Response}Prototype().
java_service.cc 98 GenerateGetPrototype(RESPONSE, printer);
169 GenerateGetPrototype(RESPONSE, printer);
295 "request_or_response", (which == REQUEST) ? "Request" : "Response");
  /external/grpc-grpc/src/csharp/Grpc.Core.Tests/
MarshallingErrorsTest.cs 109 return Task.FromResult("RESPONSE");
131 return "RESPONSE";
137 Assert.AreEqual("RESPONSE", await call);
158 return "RESPONSE";
166 Assert.AreEqual("RESPONSE", await call);
  /external/scapy/scapy/layers/
eap.py 180 2: "Response",
202 lambda pkt:pkt.code == EAP.RESPONSE and pkt.type == 3),
205 lambda pkt: pkt.code == EAP.RESPONSE and hasattr(pkt, 'type') and pkt.type == 1),
219 RESPONSE = 2
257 elif self.code == self.RESPONSE:
261 elif other.code == self.RESPONSE:
269 if self.type == 1 and self.code == EAP.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/ltp/
ltpmenu 187 7 70 || RESPONSE=$?
188 case $RESPONSE in
  /external/grpc-grpc/src/python/grpcio_tests/tests/unit/_cython/
cygrpc_test.py 180 RESPONSE = b'his name is robert paulson'
248 cygrpc.SendMessageOperation(RESPONSE, _EMPTY_FLAGS),
272 self.assertEqual(RESPONSE, client_result.message())
  /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_8/src/eapol_auth/
eapol_auth_sm.c 476 * EAP response would not be valid anymore after the new EAP request
480 * sending out EAP-Response/Identity as a response to the first
488 SM_STATE(BE_AUTH, RESPONSE)
490 SM_ENTRY_MA(BE_AUTH, RESPONSE, be_auth);
558 SM_ENTER(BE_AUTH, RESPONSE);
599 SM_ENTER(BE_AUTH, RESPONSE);
    [all...]
  /external/wpa_supplicant_8/src/eapol_supp/
eapol_supp_sm.c 480 SM_STATE(SUPP_BE, RESPONSE)
482 SM_ENTRY(SUPP_BE, RESPONSE);
593 * Skipping RESPONSE and/or RECEIVE states in these cases can
605 SM_ENTER(SUPP_BE, RESPONSE);
876 /* Get EAP Response from EAP Proxy */
880 "response data not available");
888 wpa_printf(MSG_WARNING, "EAPOL: txSuppRsp - EAP response data "
1040 return "RESPONSE";
    [all...]
  /external/python/google-api-python-client/tests/
test_http.py 126 return httplib2.Response(self.success_json), self.success_data
163 return httplib2.Response(self.success_json), self.success_data
376 model.response,
404 model.response,
665 RESPONSE = """HTTP/1.1 200 OK
827 def f(self, request_id, response, exception):
828 self.responses[request_id] = response
840 model.response,
869 model.response,
874 response = request.execute(num_retries=3
    [all...]
  /external/guice/extensions/struts2/lib/
jsp-api-2.1.jar 
struts2-core-2.2.1.jar 

Completed in 1039 milliseconds