Searched defs:Request (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/location/
H A DRecentLocationApps.java60 public List<Request> getAppList() {
69 ArrayList<Request> requests = new ArrayList<>(appOpsCount);
86 Request request = getRequestFromOps(now, ops);
96 * Creates a Request entry for the given PackageOps.
100 * When the PackageOps is fresh enough, this method returns a Request object for the package
102 private Request getRequestFromOps(long now,
137 Request request = null;
158 request = new Request(packageName, userHandle, icon, appLabel, highBattery,
168 public static class Request { class in class:RecentLocationApps
176 private Request(Strin method in class:RecentLocationApps.Request
[all...]
/frameworks/base/libs/hwui/
H A DAnimator.h151 enum class Request { class in class:android::uirenderer::BaseRenderNodeAnimator
162 void resolveStagingRequest(Request request);
164 std::vector<Request> mStagingRequests;
/frameworks/base/core/java/android/app/
H A DVoiceInteractor.java50 * {@link Request} subclass describing the type of operation to perform -- currently the
60 * {@link Request#getActivity() Request.getActivity} to get back to the activity of a
68 static final Request[] NO_REQUESTS = new Request[0];
81 Request request;
198 final ArrayMap<IBinder, Request> mActiveRequests = new ArrayMap<>();
211 public static abstract class Request { class in class:VoiceInteractor
217 Request() { method in class:VoiceInteractor.Request
222 * {@link #submitRequest(android.app.VoiceInteractor.Request, Strin
[all...]
H A DDownloadManager.java359 public static class Request { class in class:DownloadManager
439 public Request(Uri uri) { method in class:DownloadManager.Request
450 Request(String uriString) { method in class:DownloadManager.Request
467 public Request setDestinationUri(Uri uri) {
485 public Request setDestinationToSystemCache() {
508 public Request setDestinationInExternalFilesDir(Context context, String dirType,
543 public Request setDestinationInExternalPublicDir(String dirType, String subPath) {
571 * should be called before {@link DownloadManager#enqueue(Request)} is called.
586 public Request addRequestHeader(String header, String value) {
606 public Request setTitl
[all...]
/frameworks/volley/src/main/java/com/android/volley/
H A DRequest.java38 public abstract class Request<T> implements Comparable<Request<T>> { class in inherits:Comparable
64 * Request method of this request. Currently supports GET, POST, PUT, DELETE, HEAD, OPTIONS,
112 * @deprecated Use {@link #Request(int, String, com.android.volley.Response.ErrorListener)}.
115 public Request(String url, Response.ErrorListener listener) { method in class:Request
125 public Request(int method, String url, Response.ErrorListener listener) { method in class:Request
145 * @return This Request object to allow for chaining.
147 public Request<?> setTag(Object tag) {
154 * @see Request#setTag(Object)
193 * @return This Request objec
[all...]
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java144 final ArrayMap<IBinder, Request> mActiveRequests = new ArrayMap<IBinder, Request>();
307 public static class Request { class in class:VoiceInteractionSession
314 session.mHandlerCaller.obtainMessageO(MSG_CANCEL, Request.this));
324 Request(String packageName, int uid, IVoiceInteractorCallback callback, method in class:VoiceInteractionSession.Request
375 Request req = session.removeRequest(mInterface.asBinder());
377 throw new IllegalStateException("Request not active: " + this);
431 public static final class ConfirmationRequest extends Request {
489 public static final class PickOptionRequest extends Request {
600 public static final class CompleteVoiceRequest extends Request {
[all...]

Completed in 891 milliseconds