Searched defs:negotiated (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRTCDataChannelInit.h44 , negotiated(false)
50 bool negotiated; member in struct:blink::WebRTCDataChannelInit
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_webrtc_data_channel_handler.cc77 bool MockWebRTCDataChannelHandler::negotiated() const { function in class:content::MockWebRTCDataChannelHandler
78 return init_.negotiated;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddatachannelinterface.h49 negotiated(false),
61 bool negotiated; // True if the channel has been externally negotiated member in struct:webrtc::DataChannelInit
123 virtual bool negotiated() const { return false; } function in class:webrtc::DataChannelInterface
H A Ddatachannel.h73 // The default role is kOpener because the default |negotiated| is false.
77 // If the channel is externally negotiated, do not send the OPEN message.
78 if (base.negotiated) {
124 virtual bool negotiated() const { return config_.negotiated; } function in class:webrtc::DataChannel
263 PROXY_CONSTMETHOD0(bool, negotiated)
/external/chromium_org/content/renderer/media/
H A Drtc_data_channel_handler.cc47 if (negotiated())
92 bool RtcDataChannelHandler::negotiated() const { function in class:content::RtcDataChannelHandler
93 return channel_->negotiated();
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DDataChannel.java42 public boolean negotiated = false; field in class:DataChannel.Init
51 String protocol, boolean negotiated, int id) {
56 this.negotiated = negotiated;
49 Init( boolean ordered, int maxRetransmitTimeMs, int maxRetransmits, String protocol, boolean negotiated, int id) argument
/external/chromium_org/net/quic/
H A Dquic_config.h26 // value is selected as the negotiated value in such a case.
66 bool negotiated() const { function in class:net::QuicNegotiableValue
86 // Returns the value negotiated if |negotiated_| is true, otherwise returns
119 // Returns the negotiated tag if |negotiated_| is true, otherwise returns
123 // Serialises |name_| and vector (either possible or negotiated) to |out|. If
150 // Stores uint32 from CHLO or SHLO messages that are not negotiated.
184 // Stores tag from CHLO or SHLO messages that are not negotiated.
218 // Stores tag from CHLO or SHLO messages that are not negotiated.
254 // QuicConfig contains non-crypto configuration options that are negotiated in
356 bool negotiated();
[all...]
H A Dquic_config.cc644 bool QuicConfig::negotiated() { function in class:net::QuicConfig
645 // TODO(ianswett): Add the negotiated parameters once and iterate over all
646 // of them in negotiated, ToHandshakeMessage, ProcessClientHello, and
648 return congestion_feedback_.negotiated() &&
649 idle_connection_state_lifetime_seconds_.negotiated() &&
650 keepalive_timeout_seconds_.negotiated() &&
651 max_streams_per_connection_.negotiated();
660 // kKATO is optional. Return 0 if not negotiated.
/external/chromium_org/net/socket/
H A Dssl_client_socket.cc77 return "negotiated";
111 bool SSLClientSocket::set_was_npn_negotiated(bool negotiated) { argument
112 return was_npn_negotiated_ = negotiated;
119 bool SSLClientSocket::set_was_spdy_negotiated(bool negotiated) { argument
120 return was_spdy_negotiated_ = negotiated;
H A Dsocket_test_util.cc1431 bool MockSSLClientSocket::set_was_npn_negotiated(bool negotiated) { argument
1433 return new_npn_value_ = negotiated;
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCDataChannel.cpp122 bool RTCDataChannel::negotiated() const function in class:blink::RTCDataChannel
124 return m_handler->negotiated();
/external/smack/src/org/jivesoftware/smackx/filetransfer/
H A DFileTransfer.java261 * The file transfer is being negotiated with the peer. The party
277 * The stream to transfer the file is being negotiated over the chosen
279 * status becomes negotiated.
281 * @see #negotiated
290 negotiated("Negotiated"), enum constant in enum:FileTransfer.Status
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dsession.h119 bool negotiated() const { return negotiated_; } function in class:cricket::TransportProxy
345 // Returns the transport that has been negotiated or NULL if
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasession.cc765 C negotiated = *ours; local
766 negotiated.IntersectFeedbackParams(*theirs);
767 if (IsRtxCodec(negotiated)) {
775 negotiated.SetParam(kCodecParamAssociatedPayloadType, apt_value);
777 negotiated.id = theirs->id;
782 negotiated.preference = theirs->preference;
783 negotiated_codecs->push_back(negotiated);
927 // The codecs, rtcp_mux, and crypto are all negotiated with the offer
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslimpl.h607 SECItem srvVirtName; /* for server: name that was negotiated
720 * negotiated as it's used to bind the ChannelID signature on the
820 /* Keep track of the extensions that are negotiated. */
824 PRUint16 negotiated[SSL_MAX_EXTENSIONS]; member in struct:TLSExtensionDataStr
1028 * this is the protocol that was negotiated.
1091 SECItem srvName; /* negotiated server name */

Completed in 1515 milliseconds