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

1 2

  /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_; }
p2ptransportchannel.h 47 #include "talk/p2p/base/transport.h"
72 P2PTransport* transport,
77 virtual Transport* GetTransport() { return transport_; }
rawtransport.cc 46 : Transport(signaling_thread, worker_thread,
session.cc 36 #include "talk/p2p/base/transport.h"
83 // We always create a proxy in case we need to change out the transport later.
232 // TODO: Once we support different transport types,
258 Transport* Session::GetTransport(const std::string& content_name) {
384 TransportProxy* Session::GetTransportProxy(const Transport* transport) {
388 if (transproxy->impl() == transport) {
459 Transport* transport =
463 transport->set_allow_local_ips(allow_local_ips_)
    [all...]
  /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 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.
166 * Creates a transport that can be returned back to the caller of
169 * @return The new cancellation signal transport.
174 return new Transport();
178 * Given a locally created transport, returns its associated cancellation signal.
180 * @param transport The locally created transport, or null if none
    [all...]
  /packages/apps/Email/src/com/android/email/mail/
Transport.java 29 * This interface defines a "transport", which is defined here as being one layer below the
41 public interface Transport extends Cloneable {
44 * Connection security options for transport that supports SSL and/or TLS
51 * Get a new transport, using an existing one as a model. The new transport is configured as if
53 * @return a new Transport ready to open()
55 public Transport clone();
Store.java 53 protected Transport mTransport;
  /external/okhttp/src/main/java/libcore/net/http/
Transport.java 24 interface Transport {
SpdyTransport.java 28 final class SpdyTransport implements Transport {
  /packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java 17 package com.android.email.mail.transport;
25 import com.android.email.mail.Transport;
49 private Transport mTransport;
70 int connectionSecurity = Transport.CONNECTION_SECURITY_NONE;
75 connectionSecurity = Transport.CONNECTION_SECURITY_SSL;
78 connectionSecurity = Transport.CONNECTION_SECURITY_TLS;
98 * For testing only. Injects a different transport. The transport should already be set
100 * @param testTransport The Transport to inject and use for all future communication.
102 /* package */ void setTransport(Transport testTransport)
    [all...]
MailTransport.java 17 package com.android.email.mail.transport;
20 import com.android.email.mail.Transport;
47 * This class implements the common aspects of "transport", one layer below the
50 public class MailTransport implements Transport {
66 * One of the {@code Transport.CONNECTION_SECURITY_*} values.
91 * Returns a new transport, using the current transport as a model. The new transport is
96 public Transport clone() {
143 return mConnectionSecurity == Transport.CONNECTION_SECURITY_SSL
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 17 package com.android.email.mail.transport;
19 import com.android.email.mail.Transport;
34 * This is a mock Transport that is used to test protocols that use MailTransport.
36 public class MockTransport implements Transport {
134 * Tell the Mock Transport that we expect it to be closed. This will preserve
172 return (mConnectionSecurity == Transport.CONNECTION_SECURITY_TLS);
236 public Transport clone() {
SmtpSenderUnitTests.java 17 package com.android.email.mail.transport;
24 import com.android.email.mail.Transport;
43 * runtest -c com.android.email.mail.transport.SmtpSenderUnitTests email
250 // Create mock transport and inject it into the SmtpSender that's already set up
252 mockTransport.setSecurity(Transport.CONNECTION_SECURITY_NONE, false);
261 * @param mockTransport the mock transport we're using
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 111 Transport.send(message);
156 Transport.send(message);
227 Transport.send(message);
  /external/webrtc/src/
common_types.h 186 // External transport callback interface
187 class Transport
194 virtual ~Transport() {}
195 Transport() {}
  /frameworks/base/core/java/android/content/
ContentProvider.java 104 private Transport mTransport = new Transport();
163 if (abstractInterface instanceof Transport) {
164 return ((Transport)abstractInterface).getContentProvider();
174 class Transport extends ContentProviderNative {
    [all...]
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 31 import com.android.email.mail.Transport;
35 import com.android.email.mail.transport.MailTransport;
113 int connectionSecurity = Transport.CONNECTION_SECURITY_NONE;
118 connectionSecurity = Transport.CONNECTION_SECURITY_SSL;
121 connectionSecurity = Transport.CONNECTION_SECURITY_TLS;
150 * For testing only. Injects a different root transport (it will be copied using
151 * newInstanceWithConfiguration() each time IMAP sets up a new channel). The transport
153 * @param testTransport The Transport to inject and use for all future communication.
156 void setTransportForTest(Transport testTransport) {
484 /** Returns a clone of the transport associated with this store. *
    [all...]
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 117 private class Transport extends IAccountAuthenticator.Stub {
314 private Transport mTransport = new Transport();

Completed in 1768 milliseconds

1 2