/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/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:
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/net/ |
HttpHelperFuncTest.java | 115 public static final String RESPONSE = "HTTP/1.1 200 OK\r\n" + 153 oStream.write(RESPONSE.getBytes());
|
/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/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 | 479 SM_STATE(SUPP_BE, RESPONSE) 481 SM_ENTRY(SUPP_BE, RESPONSE); 588 * Skipping RESPONSE and/or RECEIVE states in these cases can 600 SM_ENTER(SUPP_BE, RESPONSE); 871 /* Get EAP Response from EAP Proxy */ 875 "response data not available"); 883 wpa_printf(MSG_WARNING, "EAPOL: txSuppRsp - EAP response data " 1035 return "RESPONSE"; [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/ |
SapMessage.java | 91 public static final int ID_RIL_SIM_ACCESS_TEST_RESP = 0x202; /* response for 844 case SapApi.RESPONSE: [all...] |
/prebuilts/tools/common/m2/repository/javax/servlet/servlet-api/2.3/ |
servlet-api-2.3.jar | |
/prebuilts/tools/common/m2/repository/io/netty/netty-codec-socks/4.1.6.Final/ |
netty-codec-socks-4.1.6.Final.jar | |
/prebuilts/misc/common/robolectric/android-all/ |
android-all-6.0.1_r3-robolectric-0.jar | |
android-all-7.0.0_r1-robolectric-r1.jar | |
android-all-7.1.0_r7-robolectric-0.jar | |
android-all-7.1.0_r7-robolectric-r1.jar | |