/external/apache-http/src/org/apache/http/protocol/ |
HttpExpectationVerifier.java | 39 * Defines an interface to verify whether an incoming HTTP request meets 42 * The Expect request-header field is used to indicate that particular 55 * the expectation values in the Expect field of a request MUST respond 58 * or, if there are other problems with the request, some other 4xx 75 void verify(HttpRequest request, HttpResponse response, HttpContext context)
|
HttpRequestHandler.java | 55 void handle(HttpRequest request, HttpResponse response, HttpContext context)
|
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/ |
__init__.py | 2 from webob.request import * 7 'Request', 'LegacyRequest', 'Response', 'UTC', 'day', 'week', 'hour',
|
/external/glide/library/src/main/java/com/bumptech/glide/request/animation/ |
GlideAnimation.java | 1 package com.bumptech.glide.request.animation; 8 * {@link com.bumptech.glide.request.target.Target}s in across resource types. Targets that wrap views will be able to 19 * ({@link com.bumptech.glide.request.animation.ViewAnimation}, 20 * {@link com.bumptech.glide.request.animation.ViewPropertyAnimation} and animated 48 * @param adapter The {@link com.bumptech.glide.request.animation.GlideAnimation.ViewAdapter} wrapping a view that 50 * {@link com.bumptech.glide.request.animation.GlideAnimation.ViewAdapter#getView()}.
|
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
BitmapImageViewTarget.java | 1 package com.bumptech.glide.request.target; 7 * A {@link com.bumptech.glide.request.target.Target} that can display an {@link android.graphics.Bitmap} in an
|
DrawableImageViewTarget.java | 1 package com.bumptech.glide.request.target;
|
SimpleTarget.java | 1 package com.bumptech.glide.request.target; 4 * A simple {@link com.bumptech.glide.request.target.Target} base class with default (usually noop) implementations 32 * {@link com.bumptech.glide.GenericRequestBuilder#override(int, int)} on the request builder this target is given 37 * {@link com.bumptech.glide.GenericRequestBuilder#override(int, int)} was not called on the request builder.
|
/external/jetty/src/java/org/eclipse/jetty/websocket/ |
WebSocketServletConnection.java | 27 void handshake(HttpServletRequest request, HttpServletResponse response, String subprotocol) throws IOException;
|
/external/libnl/include/netlink/fib_lookup/ |
lookup.h | 18 #include <netlink/fib_lookup/request.h>
|
/external/oauth/core/src/main/java/net/oauth/http/ |
HttpClient.java | 28 * Send an HTTP request and return the response. 33 HttpResponseMessage execute(HttpMessage request) throws IOException;
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
BlockingService.java | 53 Message request) throws ServiceException;
|
Service.java | 62 * <li>{@code request} is of the exact same class as the object returned by 86 Message request, 90 * <p>{@code callMethod()} requires that the request passed in is of a 101 * Message request = 104 * service.callMethod(method, request, callback);
|
/external/v8/samples/ |
count-hosts.js | 30 function Process(request) { 32 log("Processing " + request.host + request.path + 33 " from " + request.referrer + "@" + request.userAgent); 35 if (!output[request.host]) { 36 output[request.host] = 1; 38 output[request.host]++
|
/frameworks/av/media/mtp/ |
MtpEventPacket.h | 37 // read our buffer with the given request 38 int read(struct usb_request *request);
|
MtpRequestPacket.h | 40 int write(struct usb_request *request);
|
MtpResponsePacket.h | 37 // read our buffer with the given request 38 int read(struct usb_request *request);
|
/frameworks/base/core/java/android/hardware/camera2/ |
CameraConstrainedHighSpeedCaptureSession.java | 37 * accepts request lists created via {@link #createHighSpeedRequestList}, and the request list can 83 * session) and a {@link CaptureRequest request}, and generates a request list that has the same 84 * controls for each request. The input {@link CaptureRequest request} must contain the target 88 * <p>If both preview and recording Surfaces are specified in the {@code request}, the 90 * {@link CaptureRequest request} must be a fixed frame rate FPS range, where the 92 * {@link android.util.Range#getUpper() maximum FPS}. The created request list will contain 93 * a interleaved request pattern such that the preview output FPS is at least 30fps, th [all...] |
/frameworks/base/telecomm/java/android/telecom/ |
RemoteConnectionManager.java | 55 ConnectionRequest request, 57 PhoneAccountHandle accountHandle = request.getAccountHandle(); 62 ComponentName componentName = request.getAccountHandle().getComponentName(); 71 connectionManagerPhoneAccount, request, isIncoming); 83 Log.w(this, "Request to conference incompatible remote connections (%s,%s) (%s,%s)",
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
TestDriver.java | 55 ByteBuffer request = ByteBuffer.allocate(8192); local 56 request.order(ByteOrder.LITTLE_ENDIAN); 57 int lenPos = request.position(); 58 request.putShort((short) 0); 59 ANQPFactory.buildQueryRequest(elements, request); 61 byte[] requestBytes = prepRequest(lenPos, request); 117 ByteBuffer request = ByteBuffer.allocate(1024).order(ByteOrder.LITTLE_ENDIAN); local 118 int iconPos = request.position(); 119 request.putShort((short) 0); 120 ANQPFactory.buildHomeRealmRequest(Arrays.asList(realms), request); local [all...] |
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/ |
ISeqStepAction.java | 10 void execute(SeqStep step, HeaderSet request, Operation op)
|
SeqStep.java | 23 /* The headers to send in the request - and validate on server side */ 33 /* The offset into the data where the Abort request is to be sent */ 48 /* Arrays to hold expected sequence of request/response packets. */ 66 public void serverPreAction(HeaderSet request, Operation op) throws IOException { 68 mServerPreAction.execute(this, request, op); 84 public void addObexPacketSet(ObexPacket request, ObexPacket response) { 85 mRequestPackets.add(request);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/ |
BlockingHttpClient.java | 41 * Interface that handles processing the response for a request. 45 * Called when the HTTP request finishes successfully. 59 * Executes the request on the underlying {@link HttpURLConnection}. 61 * @param request The request payload, if any, or null. 64 public <T> T execute(@Nullable byte[] request, @Nonnull ResponseProcessor<T> responseProcessor) 70 if (request != null) { 72 Log.d(TAG, "request size: " + request.length); 75 out.write(request); [all...] |
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/ |
ptrace.h | 41 extern long ptrace(int request, pid_t pid, void *addr, void *data);
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/ |
ptrace.h | 41 extern long ptrace(int request, pid_t pid, void *addr, void *data);
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/sys/ |
ptrace.h | 41 extern long ptrace(int request, pid_t pid, void *addr, void *data);
|