HomeSort by relevance Sort by last modified time
    Searched refs:Transport (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/remoting/protocol/
transport.h 5 // This file defines the interface for peer-to-peer transport. There
6 // are two types of transport: StreamTransport and DatagramTransport.
10 // datagram connection. The Transport interface itself doesn't provide
13 // channel. After a new transport is Initialize()'ed the Connect()
17 // specified in the Connect() call. The Transport object must exist
20 // Transport object.
66 class Transport : public base::NonThreadSafe {
73 // Called when the transport generates a new candidate that needs
76 virtual void OnTransportCandidate(Transport* transport,
    [all...]
jingle_session.h 23 #include "remoting/protocol/transport.h"
41 public Transport::EventHandler {
65 // Transport::EventHandler interface.
67 Transport* transport,
69 virtual void OnTransportRouteChange(Transport* transport,
71 virtual void OnTransportReady(Transport* transport,
73 virtual void OnTransportFailed(Transport* transport) OVERRIDE
    [all...]
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Service.java 19 import com.android.accessorydisplay.common.Transport;
27 * Base implementation of a service that communicates over a transport.
30 * accessed from the {@link Looper} thread on which the transport was created.
33 public abstract class Service implements Transport.Callback {
35 private final Transport mTransport;
38 public Service(Context context, Transport transport, int serviceId) {
40 mTransport = transport;
52 public Transport getTransport() {
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannelimpl.h 38 class Transport;
42 // methods called only by Transport, which do not need to be exposed to the
49 // Returns the transport that created this channel.
50 virtual Transport* GetTransport() = 0;
60 // send their own transport-info stanzas.
64 // Handles sending and receiving of candidates. The Transport
70 // It is assumed that the Transport will have checked validity
transport.cc 28 #include "talk/p2p/base/transport.h"
81 Transport::Transport(talk_base::Thread* signaling_thread,
91 Transport::~Transport() {
96 TransportChannelImpl* Transport::CreateChannel(
104 TransportChannelImpl* Transport::CreateChannel_w(
109 impl->SignalReadableState.connect(this, &Transport::OnChannelReadableState);
110 impl->SignalWritableState.connect(this, &Transport::OnChannelWritableState);
112 this, &Transport::OnChannelRequestSignaling)
    [all...]
transport.h 28 // A Transport manages a set of named channels of the same type.
35 // On Threading: Transport performs work on both the signaling and worker
80 // Used to parse and serialize (write) transport candidates. For
107 class Transport : public talk_base::MessageHandler,
110 Transport(talk_base::Thread* signaling_thread,
114 virtual ~Transport();
116 // Returns the signaling thread. The app talks to Transport on this thread.
121 // Returns the type of this transport.
124 // Returns the port allocator object for this transport.
132 sigslot::signal1<Transport*> SignalReadableState
    [all...]
session.h 48 class Transport;
74 // Bundles a Transport and ChannelMap together. ChannelMap is used to
75 // create transport channels before receiving or sending a session
77 // session had one ChannelMap and transport. Now, with multiple
81 TransportProxy(const std::string& content_name, Transport* transport)
83 transport_(transport),
89 Transport* impl() const { return transport_; }
118 Transport* transport_;
135 // network-level protocol is represented by a Transport object. Each Transpor
    [all...]
p2ptransport.h 33 #include "talk/p2p/base/transport.h"
37 class P2PTransport: public Transport {
rawtransport.h 32 #include "talk/p2p/base/transport.h"
37 // Implements a transport that only sends raw packets, no STUN. As a result,
40 class RawTransport: public Transport, public TransportParser {
rawtransportchannel.h 61 RawTransport* transport,
71 // Returns the raw transport that created this channel.
72 virtual Transport* GetTransport() { return raw_transport_; }
  /frameworks/base/core/java/android/database/
ContentObserver.java 28 private Transport mTransport; // guarded by mLock
42 * Gets access to the binder transport object. Not for public consumption.
49 mTransport = new Transport(this);
56 * Gets access to the binder transport object, and unlinks the transport object
63 final Transport oldTransport = mTransport;
184 private static final class Transport extends IContentObserver.Stub {
187 public Transport(ContentObserver contentObserver) {
  /frameworks/base/core/java/android/os/
CancellationSignal.java 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
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transport.cc 28 #include "talk/p2p/base/transport.h"
113 Transport::Transport(talk_base::Thread* signaling_thread,
134 Transport::~Transport() {
139 void Transport::SetIceRole(IceRole role) {
144 void Transport::SetIdentity(talk_base::SSLIdentity* identity) {
149 bool Transport::SetLocalTransportDescription(
156 bool Transport::SetRemoteTransportDescription(
163 TransportChannelImpl* Transport::CreateChannel(int component)
    [all...]
transport.h 28 // A Transport manages a set of named channels of the same type.
35 // On Threading: Transport performs work on both the signaling and worker
83 // Used to parse and serialize (write) transport candidates. For
95 // Parse or write a transport description, including ICE credentials and
96 // any DTLS fingerprint. Since only Jingle has transport descriptions, these
109 // candidates, since there is no enclosing transport description.
139 // Stats that we can return about the connections for a transport channel.
179 // Information about all the channels of a transport.
183 // Information about the stats of a transport.
189 class Transport : public talk_base::MessageHandler
    [all...]
session.h 45 #include "talk/p2p/base/transport.h"
53 class Transport;
58 typedef talk_base::RefCountedObject<talk_base::scoped_ptr<Transport> >
82 // Bundles a Transport and ChannelMap together. ChannelMap is used to
83 // create transport channels before receiving or sending a session
85 // session had one ChannelMap and transport. Now, with multiple
96 TransportWrapper* transport)
99 transport_(transport),
111 // since callers can mutate it. Can we make this return a const Transport*?
112 Transport* impl() const { return transport_->get();
    [all...]
rawtransport.h 32 #include "talk/p2p/base/transport.h"
37 // Implements a transport that only sends raw packets, no STUN. As a result,
40 class RawTransport : public Transport, public TransportParser {
dtlstransportchannel.h 118 // transport -- the DtlsTransport that created us
120 DtlsTransportChannelWrapper(Transport* transport,
125 // Returns current transport role of the channel.
139 // TransportChannel calls that we forward to the wrapped transport.
179 virtual Transport* GetTransport() {
229 Transport* transport_; // The transport_ that created us.
fakesession.h 40 #include "talk/p2p/base/transport.h"
54 // Fake transport channel class, which can be passed to anything that needs a
55 // transport channel. Can be informed of another FakeTransportChannel via
60 explicit FakeTransportChannel(Transport* transport,
64 transport_(transport),
95 virtual Transport* GetTransport() {
261 Transport* transport_;
280 // Fake transport class, which can be passed to anything that needs a Transport
    [all...]
p2ptransport.h 33 #include "talk/p2p/base/transport.h"
37 class P2PTransport : public Transport {
transportchannelimpl.h 32 #include "talk/p2p/base/transport.h"
42 // methods called only by Transport, which do not need to be exposed to the
49 // Returns the transport that created this channel.
50 virtual Transport* GetTransport() = 0;
58 // transport channels. Non-ICE transport channels can just ignore.
63 // transport channels. Non-ICE transport channels can just ignore.
67 // SetRemoteIceMode must be implemented only by the ICE transport channels.
78 // send their own transport-info stanzas
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
Transport.java 24 interface Transport {
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbAccessoryBulkTransport.java 20 import com.android.accessorydisplay.common.Transport;
32 public class UsbAccessoryBulkTransport extends Transport {
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
UsbAccessoryStreamTransport.java 20 import com.android.accessorydisplay.common.Transport;
32 public class UsbAccessoryStreamTransport extends Transport {
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession.h 49 class Transport;
209 // Invokes ConnectChannels() on transport proxies, which initiates ice
217 // Transport related callbacks, override from cricket::BaseSession.
218 virtual void OnTransportRequestSignaling(cricket::Transport* transport);
219 virtual void OnTransportConnecting(cricket::Transport* transport);
220 virtual void OnTransportWritable(cricket::Transport* transport);
  /external/chromium_org/third_party/tlslite/tlslite/integration/
XMLRPCTransport.py 9 class XMLRPCTransport(xmlrpclib.Transport, ClientHelper):
27 transport = XMLRPCTransport(user="alice", password="abra123")
28 server = ServerProxy("https://localhost", transport)

Completed in 456 milliseconds

1 2 3