HomeSort by relevance Sort by last modified time
    Searched refs:request (Results 626 - 650 of 1957) sorted by null

<<21222324252627282930>>

  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
routes.py 100 def match(self, request):
101 # Use SERVER_NAME to ignore port number that comes with request.host?
102 # host_match = self.regex.match(request.host.split(':', 1)[0])
103 host_match = self.regex.match(request.environ['SERVER_NAME'])
107 return _match_routes(self.get_match_children, request, None,
213 def match(self, request):
214 if not self.regex.match(urllib.unquote(request.path)):
217 return _match_routes(self.get_match_children, request)
326 # Get from request because args is empty if named routes are set?
327 # args, kwargs = (handler.request.route_args
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
GlideDrawableImageViewTarget.java 1 package com.bumptech.glide.request.target;
6 import com.bumptech.glide.request.animation.GlideAnimation;
9 * A {@link com.bumptech.glide.request.target.Target} that can display an {@link android.graphics.drawable.Drawable} in
18 * Constructor for an {@link com.bumptech.glide.request.target.Target} that can display an
28 * Constructor for an {@link com.bumptech.glide.request.target.Target} that can display an
43 * If no {@link com.bumptech.glide.request.animation.GlideAnimation} is given or if the animation does not set the
  /external/jetty/src/java/org/eclipse/jetty/security/
Authenticator.java 35 * response challenges in order to authenticate a request.
58 * @param request The request
68 Authentication validateRequest(ServletRequest request, ServletResponse response, boolean mandatory) throws ServerAuthException;
72 * @param request
79 boolean secureResponse(ServletRequest request, ServletResponse response, boolean mandatory, User validatedUser) throws ServerAuthException;
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
ContextHandlerCollection.java 33 import org.eclipse.jetty.server.Request;
46 * handles the request.
181 public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
193 context.handle(target,baseRequest,request, response);
198 // data structure which maps a request to a context; first-best match wins
217 String host = normalizeHostname(request.getServerName());
224 handler.handle(target,baseRequest, request, response);
234 handler.handle(target,baseRequest, request, response);
240 // will handle any request that does not match to a specific virtual host abov
    [all...]
DefaultHandler.java 33 import org.eclipse.jetty.server.Request;
84 public void handle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException
91 String method=request.getMethod();
93 // little cheat for common request
94 if (_serveIcon && _favicon!=null && method.equals(HttpMethods.GET) && request.getRequestURI().equals("/favicon.ico"))
96 if (request.getDateHeader(HttpHeaders.IF_MODIFIED_SINCE)==_faviconModified)
111 if (!method.equals(HttpMethods.GET) || !request.getRequestURI().equals("/"))
124 writer.write("No context on this server matched or handled this request.<BR>");
140 writer.write("http://"+context.getVirtualHosts()[0]+":"+request.getLocalPort())
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/websocket/
WebSocketServletConnectionD08.java 40 public void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException
42 String key = request.getHeader("Sec-WebSocket-Key");
WebSocketServletConnectionRFC6455.java 40 public void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException
42 String key = request.getHeader("Sec-WebSocket-Key");
  /external/junit/src/org/junit/experimental/results/
PrintableResult.java 9 import org.junit.runner.Request;
27 return testResult(Request.aClass(type));
31 * The result of running JUnit on Request {@code request}
33 public static PrintableResult testResult(Request request) {
34 return new PrintableResult(new JUnitCore().run(request));
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
QueueDispatcher.java 31 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException {
33 final String requestLine = request.getRequestLine();
  /external/nanopb-c/generator/google/protobuf/
service.py 66 request, done):
77 * request is of the exact same classes as returned by
79 * After the call has started, the request must not be modified.
94 """Returns the class of the request message for the specified method.
96 CallMethod() requires that the request is of a particular subclass of
102 request = stub.GetRequestClass(method)()
103 request.ParseFromString(input)
104 service.CallMethod(method, request, callback)
196 NotifyOnCancel() must be called no more than once per request.
214 service.MyMethod(controller, request, callback
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
QueueDispatcher.java 30 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException {
32 final String requestLine = request.getRequestLine();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
RecordingOkAuthenticator.java 19 import com.squareup.okhttp.Request;
44 @Override public Request authenticate(Proxy proxy, Response response) {
47 return response.request().newBuilder()
52 @Override public Request authenticateProxy(Proxy proxy, Response response) {
55 return response.request().newBuilder()
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
PostExample.java 5 import com.squareup.okhttp.Request;
18 Request request = new Request.Builder() local
22 Response response = client.newCall(request).execute();
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CancelCall.java 20 import com.squareup.okhttp.Request;
32 Request request = new Request.Builder() local
37 final Call call = client.newCall(request);
ParseResponseWithGson.java 20 import com.squareup.okhttp.Request;
30 Request request = new Request.Builder() local
33 Response response = client.newCall(request).execute();
PostMultipart.java 21 import com.squareup.okhttp.Request;
30 * other than running these examples, please request your own client ID!
47 Request request = new Request.Builder() local
53 Response response = client.newCall(request).execute();
PostStreaming.java 20 import com.squareup.okhttp.Request;
55 Request request = new Request.Builder() local
60 Response response = client.newCall(request).execute();
  /external/okhttp/samples/simple-client/src/main/java/com/squareup/okhttp/sample/
OkHttpContributors.java 6 import com.squareup.okhttp.Request;
28 // Create request for remote resource.
29 Request request = new Request.Builder() local
33 // Execute the request and retrieve the response.
34 Response response = client.newCall(request).execute();
  /external/protobuf/python/google/protobuf/
service.py 66 request, done):
77 * request is of the exact same classes as returned by
79 * After the call has started, the request must not be modified.
94 """Returns the class of the request message for the specified method.
96 CallMethod() requires that the request is of a particular subclass of
102 request = stub.GetRequestClass(method)()
103 request.ParseFromString(input)
104 service.CallMethod(method, request, callback)
196 NotifyOnCancel() must be called no more than once per request.
214 service.MyMethod(controller, request, callback
    [all...]
  /external/protobuf/src/google/protobuf/
service.h 65 // const MyRequest* request,
68 // // ... read request and fill in response ...
81 // FooRequest request;
84 // // ... fill in request ...
86 // stub.Foo(&controller, request, &response, NewCallback(HandleResponse));
147 // * request and response are of the exact same classes as the objects
150 // * After the call has started, the request must not be modified and the
168 const Message* request,
172 // CallMethod() requires that the request and response passed in are of a
181 // Message* request = stub->GetRequestPrototype (method)->New()
    [all...]
  /external/valgrind/gdbserver_tests/
nlvgdbsigqueue.stderr.exp 11 Gdb request to kill this process
  /external/valgrind/memcheck/tests/
varinforestrict.stderr.exp 2 Uninitialised byte(s) found during client check request
  /frameworks/av/include/camera/camera2/
ICameraDeviceUser.h 49 * Request Handling
54 * of the previous repeating request.
56 * frame number of the current request.
58 virtual int submitRequest(sp<CaptureRequest> request,
65 * of the previous repeating request.
67 * frame number of the current request.
75 * Output lastFrameNumber is the last frame number of the previous repeating request.
119 // Create a request object from a template.
122 CameraMetadata* request) = 0;
132 * Output lastFrameNumber is the last frame number of the previous repeating request
    [all...]
  /frameworks/av/media/libmediaplayerservice/
StagefrightPlayer.h 59 virtual status_t invoke(const Parcel &request, Parcel *reply);
61 virtual status_t setParameter(int key, const Parcel &request);
  /frameworks/base/core/java/android/hardware/location/
IGeofenceHardware.aidl 33 in GeofenceHardwareRequestParcelable request,

Completed in 3201 milliseconds

<<21222324252627282930>>