Home | History | Annotate | Download | only in os

Lines Matching defs:remote

64         final ICancellationSignal remote;
72 remote = mRemote;
79 if (remote != null) {
81 remote.cancel();
125 * Sets the remote transport.
128 * remote transport is canceled immediately.
130 * This method is guaranteed that the remote transport will not be called after it
133 * @param remote The remote transport, or null to remove.
137 public void setRemote(ICancellationSignal remote) {
141 if (mRemote == remote) {
144 mRemote = remote;
145 if (!mIsCanceled || remote == null) {
150 remote.cancel();