Searched defs:response (Results 26 - 50 of 334) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/regress/
H A Dregress-1081309.js48 ParsedResponse.prototype.response = function() {
77 var response = new ParsedResponse(dcp.processDebugJSONRequest(json));
78 var backtrace = response.body();
82 assertEquals("g", response.lookup(backtrace.frames[0].func.ref).name);
83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Dchap.c16 size_t challenge_len, u8 *response)
27 return md5_vector(3, addr, len, response);
15 chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, size_t challenge_len, u8 *response) argument
/external/wpa_supplicant_8/src/eap_common/
H A Dchap.c16 size_t challenge_len, u8 *response)
27 return md5_vector(3, addr, len, response);
15 chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, size_t challenge_len, u8 *response) argument
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Dchap.c16 size_t challenge_len, u8 *response)
27 return md5_vector(3, addr, len, response);
15 chap_md5(u8 id, const u8 *secret, size_t secret_len, const u8 *challenge, size_t challenge_len, u8 *response) argument
/external/apache-http/src/org/apache/http/
H A DHttpClientConnection.java56 * Checks if response data is available from the connection. May wait for
87 * Receives the request line and headers of the next response available from
89 * find out if it should try to receive a response entity as well.
100 * Receives the next response entity available from this connection and
103 * @param response the response to attach the entity to
107 void receiveResponseEntity(HttpResponse response) argument
H A DHttpServerConnection.java77 * Sends the response line and headers of a response over this connection.
78 * @param response the response whose headers to send.
82 void sendResponseHeader(HttpResponse response) argument
86 * Sends the response entity of a response over this connection.
87 * @param response the response whose entity to send.
91 void sendResponseEntity(HttpResponse response) argument
[all...]
/external/apache-http/src/org/apache/http/client/
H A DAuthenticationHandler.java54 HttpResponse response,
58 HttpResponse response,
63 HttpResponse response,
53 isAuthenticationRequested( HttpResponse response, HttpContext context) argument
57 getChallenges( HttpResponse response, HttpContext context) argument
61 selectScheme( Map<String, Header> challenges, HttpResponse response, HttpContext context) argument
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpOptions.java50 * communication options available on the request/response chain
93 public Set<String> getAllowedMethods(final HttpResponse response) { argument
94 if (response == null) {
95 throw new IllegalArgumentException("HTTP response may not be null");
98 HeaderIterator it = response.headerIterator("Allow");
/external/apache-http/src/org/apache/http/impl/client/
H A DAbstractAuthenticationHandler.java116 final HttpResponse response,
146 authScheme = registry.getAuthScheme(id, response.getParams());
114 selectScheme( final Map<String, Header> challenges, final HttpResponse response, final HttpContext context) argument
H A DDefaultRedirectHandler.java81 final HttpResponse response,
83 if (response == null) {
84 throw new IllegalArgumentException("HTTP response may not be null");
86 int statusCode = response.getStatusLine().getStatusCode();
99 final HttpResponse response,
101 if (response == null) {
102 throw new IllegalArgumentException("HTTP response may not be null");
105 Header locationHeader = response.getFirstHeader("location");
107 // got a redirect response, but no location header
109 "Received redirect response "
80 isRedirectRequested( final HttpResponse response, final HttpContext context) argument
98 getLocationURI( final HttpResponse response, final HttpContext context) argument
[all...]
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestExecutor.java49 * Takes care of request preprocessing and response postprocessing
73 * Decide whether a response comes with an entity.
75 * Unknown methods and response codes are supposed to
79 * methods and response codes not specified in RFC 2616.
82 * @param response the response, to obtain the status code
85 final HttpResponse response) {
90 int status = response.getStatusLine().getStatusCode();
98 * Synchronously send a request and obtain the response.
103 * @return the response t
84 canResponseHaveBody(final HttpRequest request, final HttpResponse response) argument
310 postProcess( final HttpResponse response, final HttpProcessor processor, final HttpContext context) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/continuation/
H A DContinuationSupport.java155 * @param response the servlet response
160 public static Continuation getContinuation(final ServletRequest request, final ServletResponse response) argument
/external/jetty/src/java/org/eclipse/jetty/security/
H A DCrossContextPsuedoSession.java32 void store(T data, HttpServletResponse response); argument
/external/jetty/src/java/org/eclipse/jetty/security/authentication/
H A DSpnegoAuthenticator.java65 public Authentication validateRequest(ServletRequest request, ServletResponse response, boolean mandatory) throws ServerAuthException argument
68 HttpServletResponse res = (HttpServletResponse)response;
112 public boolean secureResponse(ServletRequest request, ServletResponse response, boolean mandatory, User validatedUser) throws ServerAuthException argument
/external/jetty/src/java/org/eclipse/jetty/server/
H A DHandler.java42 * Handlers are passed the servlet API request and response object, but are
57 * @param response The response as the {@link Response}
63 public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) argument
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DHandlerList.java33 * each contained handler in turn until either an exception is thrown, the response
34 * is committed or a positive response status is set.
43 public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) argument
52 handlers[i].handle(target,baseRequest, request, response);
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DWelcomeFilter.java57 ServletResponse response,
63 request.getRequestDispatcher(path+welcome).forward(request,response);
65 chain.doFilter(request, response);
56 doFilter(ServletRequest request, ServletResponse response, FilterChain chain) argument
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketHandler.java41 public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException argument
43 if (_webSocketFactory.acceptWebSocket(request,response) || response.isCommitted())
48 super.handle(target,baseRequest,request,response);
H A DWebSocketServlet.java102 protected void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException argument
104 if (_webSocketFactory.acceptWebSocket(request, response) || response.isCommitted())
106 super.service(request, response);
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
H A DHelpCommandHandler.java64 public void setHelpMessage(String response) { argument
65 this.helpMessage = response;
H A DPwdCommandHandler.java57 public void setDirectory(String response) { argument
58 this.directory = response;
/external/mockftpserver/tags/1.0/src/main/java/org/mockftpserver/stub/command/
H A DHelpCommandHandler.java64 public void setHelpMessage(String response) { argument
65 this.helpMessage = response;
H A DPwdCommandHandler.java57 public void setDirectory(String response) { argument
58 this.directory = response;
/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/stub/command/
H A DHelpCommandHandler.java64 public void setHelpMessage(String response) { argument
65 this.helpMessage = response;
H A DPwdCommandHandler.java57 public void setDirectory(String response) { argument
58 this.directory = response;

Completed in 421 milliseconds

1234567891011>>