Home | History | Annotate | Download | only in os

Lines Matching refs:remote

65         final ICancellationSignal remote;
73 remote = mRemote;
80 if (remote != null) {
82 remote.cancel();
126 * Sets the remote transport.
129 * remote transport is canceled immediately.
131 * This method is guaranteed that the remote transport will not be called after it
134 * @param remote The remote transport, or null to remove.
138 public void setRemote(ICancellationSignal remote) {
142 if (mRemote == remote) {
145 mRemote = remote;
146 if (!mIsCanceled || remote == null) {
151 remote.cancel();