Home
last modified time | relevance | path

Searched refs:cancellation (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/services/autofill/java/com/android/server/autofill/
DRemoteFillService.java522 public void onCancellable(ICancellationSignal cancellation) { in PendingFillRequest()
526 mCancellation = cancellation; in PendingFillRequest()
531 cancellation.cancel(); in PendingFillRequest()
567 final ICancellationSignal cancellation; in onTimeout() local
569 cancellation = mCancellation; in onTimeout()
571 if (cancellation != null) { in onTimeout()
572 remoteService.dispatchOnFillTimeout(cancellation); in onTimeout()
601 final ICancellationSignal cancellation; in cancel()
603 cancellation = mCancellation; in cancel()
605 if (cancellation != null) { in cancel()
[all …]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
DRemotePrintDocument.java765 private void handleOnLayoutStarted(ICancellationSignal cancellation, int sequence) { in handleOnLayoutStarted() argument
776 cancellation.cancel(); in handleOnLayoutStarted()
782 mCancellation = cancellation; in handleOnLayoutStarted()
937 ICancellationSignal cancellation = (ICancellationSignal) message.obj; in handleMessage() local
938 handleOnLayoutStarted(cancellation, sequence); in handleMessage()
966 public void onLayoutStarted(ICancellationSignal cancellation, int sequence) { in onLayoutStarted() argument
970 sequence, 0, cancellation).sendToTarget(); in onLayoutStarted()
1087 private void handleOnWriteStarted(ICancellationSignal cancellation, int sequence) { in handleOnWriteStarted() argument
1098 cancellation.cancel(); in handleOnWriteStarted()
1104 mCancellation = cancellation; in handleOnWriteStarted()
[all …]
/frameworks/base/core/java/android/service/autofill/
DIFillCallback.aidl29 void onCancellable(in ICancellationSignal cancellation); in onCancellable() argument
DAutofillService.java513 final CancellationSignal cancellation = (CancellationSignal) args.arg2;
517 onFillRequest(request, cancellation, fillCallback);
/frameworks/base/core/java/android/print/
DIWriteResultCallback.aidl28 void onWriteStarted(ICancellationSignal cancellation, int sequence); in onWriteStarted() argument
DILayoutResultCallback.aidl28 void onLayoutStarted(ICancellationSignal cancellation, int sequence); in onLayoutStarted() argument
DPrintManager.java1038 CancellationSignal cancellation = (CancellationSignal) args.arg4; in handleMessage() local
1054 adapter.onLayout(oldAttributes, newAttributes, cancellation, in handleMessage()
1063 CancellationSignal cancellation = (CancellationSignal) args.arg4; in handleMessage() local
1075 adapter.onWrite(pages, fd, cancellation, callback); in handleMessage()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarWindowView.java311 MotionEvent cancellation = MotionEvent.obtain(ev); in onInterceptTouchEvent() local
312 cancellation.setAction(MotionEvent.ACTION_CANCEL); in onInterceptTouchEvent()
313 mStackScrollLayout.onInterceptTouchEvent(cancellation); in onInterceptTouchEvent()
314 mNotificationPanel.onInterceptTouchEvent(cancellation); in onInterceptTouchEvent()
315 cancellation.recycle(); in onInterceptTouchEvent()