Home | History | Annotate | Download | only in os

Lines Matching refs:transport

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.
165 * Creates a transport that can be returned back to the caller of
168 * @return The new cancellation signal transport.
173 return new Transport();
177 * Given a locally created transport, returns its associated cancellation signal.
179 * @param transport The locally created transport, or null if none.
184 public static CancellationSignal fromTransport(ICancellationSignal transport) {
185 if (transport instanceof Transport) {
186 return ((Transport)transport).mCancellationSignal;
201 private static final class Transport extends ICancellationSignal.Stub {