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

12 3

  /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;
32 * This is a mock Transport that is used to test protocols that use MailTransport.
34 public class MockTransport implements Transport {
132 * Tell the Mock Transport that we expect it to be closed. This will preserve
170 return (mConnectionSecurity == Transport.CONNECTION_SECURITY_TLS);
234 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/chromium_org/third_party/libjingle/source/talk/p2p/base/
rawtransportchannel.h 61 RawTransport* transport,
72 virtual Transport* GetTransport() { return raw_transport_; }
rawtransport.cc 47 : Transport(signaling_thread, worker_thread,
session.cc 39 #include "talk/p2p/base/transport.h"
76 // We always create a proxy in case we need to change out the transport later.
122 // TODO(juberti): Right now Transport::ConnectChannels doesn't work if we
124 // multiple times. Once we fix Transport, we can move this call inside the
209 // |target|'s transport and setting our TransportChannelProxies
217 // Run through all channels and remove any non-rtp transport channels before
218 // setting target transport channels.
226 // from |target|'s transport. Fail if there's not an exact match.
232 // Now replace our transport. Must happen afterwards because
271 // Ensure the transport is negotiated before handling candidates
    [all...]
p2ptransportchannel.h 47 #include "talk/p2p/base/transport.h"
72 P2PTransport* transport,
77 virtual Transport* GetTransport() { return transport_; }
transport_unittest.cc 42 using cricket::Transport;
83 void OnConnecting(Transport* transport) {
167 // Changing the transport role from CONTROLLING to CONTROLLED.
  /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() {}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 678 p("transport").close() #same as above, really.
697 class Transport(xmlrpclib.Transport):
698 #custom transport, stores the response length for our perusal
702 return xmlrpclib.Transport.parse_response(self, response)
708 return xmlrpclib.Transport.send_content(self, connection, body)
714 t = self.Transport()
716 p = xmlrpclib.ServerProxy(URL, transport=t)
725 t = self.Transport()
728 p = xmlrpclib.ServerProxy(URL, transport=t
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xmlrpc.py 678 p("transport").close() #same as above, really.
697 class Transport(xmlrpclib.Transport):
698 #custom transport, stores the response length for our perusal
702 return xmlrpclib.Transport.parse_response(self, response)
708 return xmlrpclib.Transport.send_content(self, connection, body)
714 t = self.Transport()
716 p = xmlrpclib.ServerProxy(URL, transport=t)
725 t = self.Transport()
728 p = xmlrpclib.ServerProxy(URL, transport=t
    [all...]
  /external/chromium_org/remoting/protocol/
jingle_session.cc 30 // Delay after candidate creation before sending transport-info
32 // into one transport-info messages. The value needs to be greater
38 // for all requests except |transport-info|.
41 // Timeout for the transport-info messages.
229 void JingleSession::AddPendingRemoteCandidates(Transport* channel,
281 void JingleSession::OnTransportCandidate(Transport* transport,
284 transport->name(), candidate));
295 void JingleSession::OnTransportRouteChange(Transport* transport,
    [all...]
libjingle_transport_factory.cc 55 Transport::EventHandler* event_handler,
138 Transport::EventHandler* event_handler,
316 // The connection socket is being deleted, so delete the transport too.
328 // terminate Jingle connection (i.e. the transport will be destroyed).
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
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...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
SpdyTransport.java 28 public final class SpdyTransport implements Transport {
HttpEngine.java 102 private Transport transport; field in class:HttpEngine
258 if (transport != null) {
262 transport = (Transport) connection.newTransport(this);
267 requestBodyOut = transport.createRequestBody();
317 * Called immediately before the transport transmits HTTP request headers.
445 if (transport == null || !transport.makeReusable(streamCancelled, requestBodyOut,
548 * it needs to be set even if the transport is SPDY
    [all...]
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Transport.java 28 * A simple message transport.
31 * are always delivered on the {@link Looper} thread on which the transport
35 public abstract class Transport {
40 // The transport thread looper and handler.
46 // The output buffer. Set to null when the transport is closed.
58 public Transport(Logger logger, int maxPacketSize) {
74 * Gets the handler on the transport's thread.
81 * Closes the transport.
115 mLogger.logError("Send message failed because transport was closed.");
165 throw new IllegalStateException("Transport has been closed")
    [all...]
  /frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
DisplaySinkService.java 21 import com.android.accessorydisplay.common.Transport;
44 // happens on the transport thread, we are not allowed to access the surface after
54 public DisplaySinkService(Context context, Transport transport, int densityDpi) {
55 super(context, transport, Protocol.DisplaySinkService.ID);
56 mTransportHandler = transport.getHandler();
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
DisplaySourceService.java 21 import com.android.accessorydisplay.common.Transport;
57 public DisplaySourceService(Context context, Transport transport, Callbacks callbacks) {
58 super(context, transport, Protocol.DisplaySourceService.ID);
  /frameworks/base/core/java/android/content/
ContentProvider.java 106 private Transport mTransport = new Transport();
165 if (abstractInterface instanceof Transport) {
166 return ((Transport)abstractInterface).getContentProvider();
176 class Transport extends ContentProviderNative {
    [all...]
  /frameworks/base/core/java/android/accounts/
AbstractAccountAuthenticator.java 117 private class Transport extends IAccountAuthenticator.Stub {
346 private Transport mTransport = new Transport();
  /external/chromium_org/content/test/
webrtc_audio_device_test.h 197 // A very basic implementation of webrtc::Transport that acts as a transport
200 class WebRTCTransportImpl : public webrtc::Transport {
  /external/chromium/chrome/browser/resources/net_internals/
hstsview.js 6 * HSTS is HTTPS Strict Transport Security: a way for sites to elect to always

Completed in 717 milliseconds

12 3