Searched defs:requestId (Results 1 - 25 of 46) sorted by relevance

12

/frameworks/base/core/java/android/service/autofill/
H A DFillCallback.java33 public FillCallback(IFillCallback callback, int requestId) { argument
35 mRequestId = requestId;
H A DFillContext.java61 public FillContext(int requestId, @NonNull AssistStructure structure) { argument
62 mRequestId = requestId;
H A DFillResponse.java104 * @param requestId The id of the request to associate the response to.
108 public void setRequestId(int requestId) { argument
109 mRequestId = requestId;
/frameworks/base/core/java/android/service/restrictions/
H A DRestrictionsReceiver.java53 * to the same requestId and return the cached response.
65 String packageName, String requestType, String requestId, PersistableBundle request);
79 String requestId = intent.getStringExtra(RestrictionsManager.EXTRA_REQUEST_ID);
82 onRequestPermission(context, packageName, requestType, requestId, request);
64 onRequestPermission(Context context, String packageName, String requestType, String requestId, PersistableBundle request) argument
/frameworks/av/camera/include/camera/
H A DCaptureResult.h39 int32_t requestId; member in struct:android::hardware::camera2::impl::CaptureResultExtras
73 * Constructor initializes object as invalid by setting requestId to be -1.
76 : requestId(-1),
87 * Otherwise, returns false. It is valid only when requestId is non-negative.
/frameworks/av/include/camera/
H A DCaptureResult.h39 int32_t requestId; member in struct:android::hardware::camera2::impl::CaptureResultExtras
73 * Constructor initializes object as invalid by setting requestId to be -1.
76 : requestId(-1),
87 * Otherwise, returns false. It is valid only when requestId is non-negative.
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DBurstHolder.java36 * @param requestId id of the burst request.
41 public BurstHolder(int requestId, boolean repeating, CaptureRequest[] requests, argument
46 mRequestBuilders.add(new RequestHolder.Builder(requestId, /*subsequenceId*/i,
51 mRequestId = requestId;
H A DRequestQueue.java75 * @param requestId the id of the repeating request to cancel.
79 public synchronized long stopRepeating(int requestId) { argument
81 if (mRepeatingRequest != null && mRepeatingRequest.getRequestId() == requestId) {
88 Log.e(TAG, "cancel failed: no repeating request exists for request id: " + requestId);
120 int requestId = mCurrentRequestId++;
121 BurstHolder burst = new BurstHolder(requestId, repeating, requests, mJpegSurfaceIds);
135 SubmitInfo info = new SubmitInfo(requestId, lastFrame);
139 private long calculateLastFrame(int requestId) { argument
143 if (b.getRequestId() == requestId) {
H A DRequestHolder.java66 * @param requestId the ID to set in {@link RequestHolder} objects.
72 public Builder(int requestId, int subsequenceId, CaptureRequest request, argument
75 mRequestId = requestId;
160 private RequestHolder(int requestId, int subsequenceId, CaptureRequest request, argument
165 mRequestId = requestId;
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DSubmitInfo.java41 public SubmitInfo(int requestId, long lastFrameNumber) { argument
42 mRequestId = requestId;
/frameworks/base/core/java/android/net/
H A DDataUsageRequest.java42 public final int requestId; field in class:DataUsageRequest
54 public DataUsageRequest(int requestId, NetworkTemplate template, long thresholdInBytes) { argument
55 this.requestId = requestId;
67 dest.writeInt(requestId);
76 int requestId = in.readInt();
79 DataUsageRequest result = new DataUsageRequest(requestId, template,
92 return "DataUsageRequest [ requestId=" + requestId
101 return that.requestId
[all...]
H A DNetworkRequest.java43 public final int requestId; field in class:NetworkRequest
112 requestId = rId;
123 requestId = that.requestId;
314 dest.writeInt(requestId);
322 int requestId = in.readInt();
324 NetworkRequest result = new NetworkRequest(nc, legacyType, requestId, type);
388 return "NetworkRequest [ " + type + " id=" + requestId +
397 that.requestId == this.requestId
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCaptureResultExtras.java25 private int requestId; field in class:CaptureResultExtras
50 public CaptureResultExtras(int requestId, int subsequenceId, int afTriggerId, argument
53 this.requestId = requestId;
69 dest.writeInt(requestId);
79 requestId = in.readInt();
89 return requestId;
H A DICameraDeviceUserWrapper.java91 public long cancelRequest(int requestId) throws CameraAccessException { argument
93 return mRemoteDevice.cancelRequest(requestId);
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerFunctionalTest.java126 * @param requestId The id of the download to remove
129 private void verifyDownload(long requestId, byte[] fileData) argument
132 ParcelFileDescriptor pfd = mDownloadManager.openDownloadedFile(requestId);
133 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId));
/frameworks/base/services/restrictions/java/com/android/server/restrictions/
H A DRestrictionsManagerService.java92 final String requestId,
117 intent.putExtra(RestrictionsManager.EXTRA_REQUEST_ID, requestId);
91 requestPermission(final String packageName, final String requestType, final String requestId, final PersistableBundle requestData) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DClientWakelockTracker.java38 public void startTracking(String clientId, int requestId, int token, int numRequestsInQueue) { argument
41 client.startAttributingWakelock(requestId, token, numRequestsInQueue, uptime);
51 public void stopTracking(String clientId, int requestId, int token, int numRequestsInQueue) { argument
54 client.stopAttributingWakelock(requestId, token, uptime);
/frameworks/av/services/camera/libcameraservice/common/
H A DFrameProcessorBase.cpp185 int32_t requestId = entry.data.i32[0]; member in namespace:android::camera2
194 if (requestId >= item->minId && requestId < item->maxId &&
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattServerCallback.java56 * @param requestId The Id of the request
60 public void onCharacteristicReadRequest(BluetoothDevice device, int requestId, argument
71 * @param requestId The Id of the request
79 public void onCharacteristicWriteRequest(BluetoothDevice device, int requestId, argument
92 * @param requestId The Id of the request
96 public void onDescriptorReadRequest(BluetoothDevice device, int requestId, argument
107 * @param requestId The Id of the request
115 public void onDescriptorWriteRequest(BluetoothDevice device, int requestId, argument
128 * @param requestId The Id of the request
132 public void onExecuteWrite(BluetoothDevice device, int requestId, boolea argument
[all...]
H A DBluetoothGattServer.java609 * @param requestId The ID of the request that was received with the callback
614 public boolean sendResponse(BluetoothDevice device, int requestId, argument
620 mService.sendResponse(mServerIf, device.getAddress(), requestId,
/frameworks/base/telephony/java/android/telephony/
H A DClientRequestStats.java125 public void updateRequestHistograms(int requestId, int time) { argument
127 TelephonyHistogram entry = mRequestHistograms.get(requestId);
130 requestId, REQUEST_HISTOGRAM_BUCKET_COUNT);
131 mRequestHistograms.put(requestId, entry);
/frameworks/base/telephony/java/com/android/ims/internal/uce/options/
H A DOptionsSipResponse.java60 public void setRequestId(int requestId) { argument
61 this.mRequestId = requestId;
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DPresCmdStatus.java92 public void setRequestId(int requestId) { argument
93 this.mRequestId = requestId;
H A DPresSipResponse.java59 public void setRequestId(int requestId) { argument
60 this.mRequestId = requestId;
/frameworks/base/core/java/android/content/
H A DRestrictionsManager.java300 * the Restrictions Provider can return a cached response that has the same requestId, if
459 * @param requestId A unique id generated by the app that contains sufficient information
466 public void requestPermission(String requestType, String requestId, PersistableBundle request) { argument
470 if (requestId == null) {
471 throw new NullPointerException("requestId cannot be null");
478 mService.requestPermission(mContext.getPackageName(), requestType, requestId,

Completed in 1907 milliseconds

12