/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/chromium_org/components/devtools_bridge/android/javatests/src/org/chromium/components/devtools_bridge/ |
LocalTunnelBridgeTest.java | 22 private static final String RESPONSE = "Response"; 68 Future<String> response = TestUtils.asyncRequest(CLIENT_SOCKET_NAME, REQUEST); local 72 TestUtils.writeAndShutdown(socket, RESPONSE); 76 Assert.assertEquals(RESPONSE, response.get()); 86 Future<String> response = TestUtils.asyncRequest(CLIENT_SOCKET_NAME, REQUEST); local 94 Assert.assertEquals("", response.get()); 104 Future<String> response = TestUtils.asyncRequest(CLIENT_SOCKET_NAME, REQUEST); local 106 Assert.assertEquals("", response.get()) [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_service.h | 78 enum RequestOrResponse { REQUEST, RESPONSE }; 102 // 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/chromium_org/third_party/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 | 87 GenerateGetPrototype(RESPONSE, printer); 157 GenerateGetPrototype(RESPONSE, printer); 278 "request_or_response", (which == REQUEST) ? "Request" : "Response");
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/ |
HuffmanTest.java | 47 assertRoundTrip(Huffman.Codec.RESPONSE, buf);
|
/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/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
HpackDraft05.java | 123 this.huffmanCodec = client ? Huffman.Codec.RESPONSE : Huffman.Codec.REQUEST;
|
Huffman.java | 35 RESPONSE(RESPONSE_CODES, RESPONSE_CODE_LENGTHS);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
javax.servlet.jsp_2.0.0.v200806031607.jar | |