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

<<31323334353637383940>>

  /external/e2fsprogs/lib/ss/
listen.c 115 "Unknown request \"%s\". Type \"?\" for a request list.",
152 ss_request_entry *request; local
166 request = get_request(*rqtbl, curr_rqt++);
167 name = request->command_names;
  /external/glide/library/src/main/java/com/bumptech/glide/
ListPreloader.java 5 import com.bumptech.glide.request.animation.GlideAnimation;
6 import com.bumptech.glide.request.target.BaseTarget;
7 import com.bumptech.glide.request.target.SizeReadyCallback;
83 * Returns a glide request for a given item. Must exactly match the request used to load the resource in the list.
  /external/guava/guava/src/com/google/common/primitives/
UnsignedInts.java 212 ParseRequest request = ParseRequest.fromString(stringValue); local
215 return parseUnsignedInt(request.rawValue, request.radix);
  /external/jetty/src/java/org/eclipse/jetty/server/handler/
RequestLogHandler.java 31 import org.eclipse.jetty.server.Request;
57 public void handle(String target, final Request baseRequest, HttpServletRequest request, final HttpServletResponse response)
68 super.handle(target, baseRequest, request, response);
72 if (_requestLog != null && baseRequest.getDispatcherType().equals(DispatcherType.REQUEST))
100 //are we changing the request log impl?
116 //if we're already started, then start our request log
187 public void log(Request request, Response response)
  /external/jetty/src/java/org/eclipse/jetty/server/session/
HashSessionIdManager.java 88 * @param request
91 public String getNodeId(String clusterId,HttpServletRequest request)
94 String worker=request==null?null:(String)request.getAttribute("org.eclipse.jetty.ajp.JVMRoute");
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/
URLEncodingTest.java 21 import com.squareup.okhttp.Request;
134 public Response get(Request request) throws IOException {
135 uriReference.set(request.uri());
145 public void remove(Request request) throws IOException {
  /external/okhttp/samples/crawler/src/main/java/com/squareup/okhttp/sample/
Crawler.java 20 import com.squareup.okhttp.Request;
89 Request request = new Request.Builder()
92 Response response = client.newCall(request).execute();
109 URL link = parseUrl(response.request().url(), href);
  /external/v8/samples/
process.cc 42 // These interfaces represent an existing request processing interface.
48 * A simplified http request.
61 * The abstract superclass of http request processors.
72 // Process a single request.
80 * An http request processor that is scriptable using JavaScript.
108 // Callbacks that access the individual fields of request objects.
261 bool JsHttpRequestProcessor::Process(HttpRequest* request) {
272 // Wrap the C++ request object in a JavaScript wrapper
273 Handle<Object> request_obj = WrapRequest(request);
279 // and one argument, the request
468 HttpRequest* request = UnwrapRequest(info.Holder()); local
483 HttpRequest* request = UnwrapRequest(info.Holder()); local
493 HttpRequest* request = UnwrapRequest(info.Holder()); local
504 HttpRequest* request = UnwrapRequest(info.Holder()); local
    [all...]
  /external/v8/src/
d8-debug.cc 81 // Convert the debugger command to a JSON debugger request.
82 Handle<Value> request = Shell::DebugCommandToJSONRequest( local
91 if (request->IsUndefined()) {
102 // request, invoke the JSON request and convert the JSON respose to a text
106 args[0] = request;
  /frameworks/av/services/camera/libcameraservice/common/
CameraDeviceBase.h 61 * Submit request for capture. The CameraDevice takes ownership of the
63 * Output lastFrameNumber is the expected frame number of this request.
65 virtual status_t capture(CameraMetadata &request, int64_t *lastFrameNumber = NULL) = 0;
75 * Submit request for streaming. The CameraDevice makes a copy of the
77 * Output lastFrameNumber is the last frame number of the previous streaming request.
79 virtual status_t setStreamingRequest(const CameraMetadata &request,
84 * Output lastFrameNumber is the last frame number of the previous streaming request.
90 * Clear the streaming request slot.
91 * Output lastFrameNumber is the last frame number of the previous streaming request.
96 * Wait until a request with the given ID has been dequeued by th
    [all...]
  /frameworks/base/core/java/android/webkit/
WebChromeClient.java 79 * @param callback invoke this callback to request the page to exit
108 * Request the host application to create a new window. If the host
109 * application chooses to honor this request, it should return true from
113 * honor the request, it should return false from this method. The default
115 * @param view The WebView from which the request for a new window
119 * @param isUserGesture True if the request was initiated by a user gesture,
139 * Request display and focus for this WebView. This may happen due to
230 * API for a particular origin and request a new quota. The client must
296 * Notify the host application that a request for Geolocation permissions,
311 * @param request the PermissionRequest from current web content
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
EditableInputConnection.java 153 public ExtractedText getExtractedText(ExtractedTextRequest request, int flags) {
156 if (mTextView.extractText(request, et)) {
158 mTextView.setExtracting(request);
195 // We should reject the entire request in such a case.
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 20 import android.app.DownloadManager.Request;
83 Request request = new Request(uri); local
84 request.setTitle(String.format("%s--%d", DEFAULT_FILENAME + i, i));
89 long requestID = mDownloadManager.enqueue(request);
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
SapServerTest.java 33 // Set the RIL driver in test mode, where request stubs are used instead
58 * Test that the SapServer is capable of handling a connect request with no call ongoing.
209 * This test fails if the apdu request generates a response before the reset request is handled.
313 public SeqStep(SapMessage request, SapMessage response) {
316 this.requests.add(request);
320 public void add(SapMessage request, SapMessage response) {
321 this.requests.add(request);
364 * Enable/Disable test mode during the next connect request.
376 * @param request The request to send to the SAP serve
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
MasterImage.java 687 public void available(RenderingRequest request) {
688 if (request.getBitmap() == null) {
693 if (request.getType() == RenderingRequest.GEOMETRY_RENDERING) {
695 mGeometryOnlyBitmap = request.getBitmap();
698 if (request.getType() == RenderingRequest.FILTERS_RENDERING) {
700 mFiltersOnlyBitmap = request.getBitmap();
704 if (request.getType() == RenderingRequest.PARTIAL_RENDERING
705 && request.getScaleFactor() == getScaleFactor()) {
707 mPartialBitmap = request.getBitmap();
708 mPartialBounds.set(request.getBounds())
    [all...]
  /external/mesa3d/src/gallium/winsys/radeon/drm/
radeon_drm_winsys.c 102 unsigned request, boolean enable)
111 /* Early exit if we are sure the request will fail. */
124 /* Pass through the request to the kernel. */
126 info.request = request;
150 static boolean radeon_get_drm_value(int fd, unsigned request,
159 info.request = request;
  /external/protobuf/java/src/test/java/com/google/protobuf/
ServiceTest.java 98 /** Tests Service.get{Request,Response}Prototype(). */
177 MessageWithNoOuter request = MessageWithNoOuter.getDefaultInstance(); local
187 impl.foo(EasyMock.same(controller), EasyMock.same(request),
193 service.callMethod(fooMethod, controller, request, callback);
207 MessageWithNoOuter request = MessageWithNoOuter.getDefaultInstance(); local
210 EasyMock.expect(impl.foo(EasyMock.same(controller), EasyMock.same(request)))
216 service.callBlockingMethod(fooMethod, controller, request);
  /frameworks/base/services/core/java/com/android/server/location/
GeofenceManager.java 86 * This is set true when we have an active request for {@link Location} updates via
93 * The update interval component of the current active {@link Location} update request.
119 public void addFence(LocationRequest request, Geofence geofence, PendingIntent intent,
122 Slog.d(TAG, "addFence: request=" + request + ", geofence=" + geofence
127 request.getExpireAt(), allowedResolutionLevel, uid, packageName, intent);
237 * update request with {@link LocationManager} as appropriate for any active geofences.
298 // Request or cancel location updates if needed.
300 // Request location updates.
314 LocationRequest request = new LocationRequest() local
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFObjectReader.cpp 72 pInput.memArea()->request(pInput.fileOffset(), hdr_size);
101 pInput.memArea()->request(pInput.fileOffset(), hdr_size);
136 llvm::StringRef region = pInput.memArea()->request(
292 llvm::StringRef symtab_region = pInput.memArea()->request(
294 llvm::StringRef strtab_region = pInput.memArea()->request(
313 llvm::StringRef region = mem->request(offset, size);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ExportProcessor.java 42 * Class for processing one export request from a user. Dropped after exporting requested Uri(s).
43 * {@link VCardService} will create another object when there is another export request.
100 final ExportRequest request = mExportRequest; local
106 Log.i(LOG_TAG, "Export request is cancelled before handling the request");
109 final Uri uri = request.destUri;
124 final String exportType = request.exportType;
168 Log.i(LOG_TAG, "Export request is cancelled during composing vCard");
192 Log.i(LOG_TAG, "Successfully finished exporting vCard " + request.destUri);
195 Log.d(LOG_TAG, "Ask MediaScanner to scan the file: " + request.destUri.getPath())
    [all...]
  /system/core/fastboot/
usb_osx.c 69 IOUSBFindInterfaceRequest request; local
83 request.bInterfaceClass = kIOUSBFindInterfaceDontCare;
84 request.bInterfaceSubClass = kIOUSBFindInterfaceDontCare;
85 request.bInterfaceProtocol = kIOUSBFindInterfaceDontCare;
86 request.bAlternateSetting = kIOUSBFindInterfaceDontCare;
96 kr = (*dev)->CreateInterfaceIterator(dev, &request, &iterator);
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockVideoProvider.java 82 * Handles a session modification request from the {@link MockInCallService}. Assumes the peer
85 * @param fromProfile The video properties prior to the request.
165 * Sends a mock session modify request from the provider.
167 * @param request The requested profile.
169 public void sendMockSessionModifyRequest(VideoProfile request) {
170 super.receiveSessionModifyRequest(request);
  /developers/build/prebuilts/gradle/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
DeleteQuestionService.java 78 PutDataRequest request = putDataMapRequest.asPutDataRequest(); local
79 Wearable.DataApi.putDataItem(mGoogleApiClient, request).await();
UpdateQuestionService.java 90 PutDataRequest request = putDataMapRequest.asPutDataRequest(); local
91 Wearable.DataApi.putDataItem(mGoogleApiClient, request).await();
  /developers/samples/android/wearable/wear/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
DeleteQuestionService.java 78 PutDataRequest request = putDataMapRequest.asPutDataRequest(); local
79 Wearable.DataApi.putDataItem(mGoogleApiClient, request).await();

Completed in 2147 milliseconds

<<31323334353637383940>>