Searched refs:transport (Results 151 - 175 of 226) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Dprototype-1.7.js1453 dispatch: function(callback, request, transport, json) {
1457 responder[callback].apply(responder, [request, transport, json]);
1494 this.transport = Ajax.getTransport();
1521 this.transport.open(this.method.toUpperCase(), this.url,
1526 this.transport.onreadystatechange = this.onStateChange.bind(this);
1530 this.transport.send(this.body);
1533 if (!this.options.asynchronous && this.transport.overrideMimeType)
1543 var readyState = this.transport.readyState;
1545 this.respondToReadyState(this.transport.readyState);
1563 if (this.transport
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Ddtlstransportchannel.h118 // transport -- the DtlsTransport that created us
120 DtlsTransportChannelWrapper(Transport* transport,
146 // TransportChannel calls that we forward to the wrapped transport.
H A Dp2ptransportchannel.h47 #include "talk/p2p/base/transport.h"
73 P2PTransport* transport,
/external/chromium_org/third_party/webrtc/modules/video_coding/main/interface/
H A Dvideo_coding.h215 // Register a transport callback which will be called to deliver the encoded data and
219 // - transport : The callback object to register.
223 virtual int32_t RegisterTransportCallback(VCMPacketizationCallback* transport) = 0;
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dvideo_coding_impl.h84 int32_t RegisterTransportCallback(VCMPacketizationCallback* transport);
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dtest_callbacks.cc49 VCMPacketizationCallback* transport)
48 RegisterTransportCallback( VCMPacketizationCallback* transport) argument
H A Dtest_callbacks.h43 // Register transport callback
44 void RegisterTransportCallback(VCMPacketizationCallback* transport);
H A Dnormal_test.cc68 VCMPacketizationCallback* transport)
67 RegisterTransportCallback( VCMPacketizationCallback* transport) argument
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpTransportSE.java26 package org.ksoap2.transport;
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPServerTransaction.java408 // The server transport uses the value of the top Via header field
413 // If the "sent-protocol" is a reliable transport
430 String transport = via.getTransport();
431 if (transport == null)
432 throw new IOException("missing transport!");
438 if (transport.equalsIgnoreCase("TLS"))
478 transport));
927 // retransmissions if the transport is not
939 * transport layer for retransmission whenever a retransmission of the
966 * response and passes it to the transport
[all...]
H A DSIPTransactionStack.java811 // if ( sipProvider.getListeningPoint(transport) == null)
1358 // available for the transport.
1379 * @param encapsulatedMessageChannel Message channel of the transport layer.
1392 * @param encapsulatedMessageChannel Message channel of the transport layer.
1935 * @param transport -- transport for the listening point.
1938 String transport) throws java.io.IOException {
1939 if (transport.equalsIgnoreCase("udp")) {
1945 } else if (transport.equalsIgnoreCase("tcp")) {
1951 } else if (transport
1937 createMessageProcessor(InetAddress ipAddress, int port, String transport) argument
[all...]
H A DSIPTransaction.java729 // Use the peer address, port and transport
1122 String transport = getTransport();
1124 port, transport);
H A DSIPDialog.java405 * Issue 106. Section 13.3.1.4 RFC 3261 The 2xx response is passed to the transport
1912 * Add a via header for the outbound request based on the transport of the message
1921 "Cannot find listening point for transport "
1923 throw new SipException("Cannot find listening point for transport "
2430 String transport = uri4transport.getTransportParam();
2431 if (transport == null) {
2433 transport = uri4transport.isSecure() ? ListeningPoint.TLS : ListeningPoint.UDP;
2435 ListeningPointImpl lp = (ListeningPointImpl) sipProvider.getListeningPoint(transport);
2441 sipStack.getStackLogger().logError("No LP found for transport=" + transport);
[all...]
/external/nist-sip/java/javax/sip/header/
H A DHeaderFactory.java172 ViaHeader createViaHeader(String host, int port, String transport, argument
/external/bluetooth/bluedroid/bta/include/
H A Dbta_api.h1119 typedef void (tBTA_DM_ENCRYPT_CBACK) (BD_ADDR bd_addr, tBTA_TRANSPORT transport, tBTA_STATUS result);
1609 ** device by designated transport. The bonding procedure enables
1616 BTA_API extern void BTA_DmBondByTransport(BD_ADDR bd_addr, tBTA_TRANSPORT transport);
1954 ** transport - which transport to close
1960 BTA_API extern void BTA_DmCloseACL(BD_ADDR bd_addr, BOOLEAN remove_dev, tBTA_TRANSPORT transport);
2209 ** Description This function does service discovery on particular transport
2223 tBTA_TRANSPORT transport);
2235 ** transport - transport o
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dconcat-jquery-mootools-prototype.js9529 dispatch: function(callback, request, transport, json) {
9533 responder[callback].apply(responder, [request, transport, json]);
9574 this.transport = Ajax.getTransport();
9604 this.transport.open(this.method.toUpperCase(), this.url,
9609 this.transport.onreadystatechange = this.onStateChange.bind(this);
9613 this.transport.send(this.body);
9616 if (!this.options.asynchronous && this.transport.overrideMimeType)
9626 var readyState = this.transport.readyState;
9628 this.respondToReadyState(this.transport.readyState);
9646 if (this.transport
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstatscollector_unittest.cc448 // This creates a standard setup with a transport called "trspname"
449 // having one transport channel
520 // Instruct the session to return stats containing the transport channel.
604 // Fake transport object.
605 rtc::scoped_ptr<cricket::FakeTransport> transport(
610 transport->SetIdentity(&local_identity);
613 transport->CreateChannel(channel_stats.component));
619 .WillRepeatedly(Return(transport.get()));
856 // stats object, and that this transport stats object exists in stats.
942 // Instruct the session to return stats containing the transport channe
[all...]
/external/chromium_org/media/cast/test/
H A Dcast_benchmarks.cc102 // Takes ownership of |transport|.
103 void Init(CastTransportSender* transport, argument
106 transport_.reset(transport);
/external/chromium_org/third_party/webrtc/video/
H A Dvideo_send_stream.cc113 newapi::Transport* transport,
121 : transport_adapter_(transport),
112 VideoSendStream( newapi::Transport* transport, CpuOveruseObserver* overuse_observer, webrtc::VideoEngine* video_engine, const VideoSendStream::Config& config, const VideoEncoderConfig& encoder_config, const std::map<uint32_t, RtpState>& suspended_ssrcs, int base_channel, int start_bitrate_bps) argument
/external/bluetooth/bluedroid/stack/avdt/
H A Davdt_l2c.c73 static void avdt_sec_check_complete_term (BD_ADDR bd_addr, tBT_TRANSPORT transport, argument
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_sr.c409 p_tcb->transport,
1033 p_tcb->transport,
1128 p_tcb->transport,
1208 p_tcb->transport,
/external/bluetooth/bluedroid/stack/srvc/
H A Dsrvc_battery.c287 status = GATTS_StartService (srvc_eng_cb.gatt_if, srvc_hdl, p_reg_info->transport);
/external/chromium_org/third_party/tlslite/tests/
H A Dtlstest.py403 transport = XMLRPCTransport(ignoreAbruptClose=True)
404 server = xmlrpclib.Server('https://%s:%s' % address, transport)
409 server = xmlrpclib.Server('http://%s:%s' % address, transport)
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DHeaderFactoryImpl.java1061 * @param transport the new transport value of uri.
1070 String transport,
1074 if (host == null || transport == null)
1096 via.setTransport(transport);
1067 createViaHeader( String host, int port, String transport, String branch) argument
/external/bluetooth/bluedroid/stack/include/
H A Dl2c_api.h922 ** transport : physical transport, BR/EDR or LE
1176 ** Physical transport for the L2CAP connection (BR/EDR or LE)
1181 L2C_API extern UINT16 L2CA_GetDisconnectReason (BD_ADDR remote_bda, tBT_TRANSPORT transport);

Completed in 522 milliseconds

12345678910