Searched refs:negotiated (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRTCDataChannelInit.h44 , negotiated(false)
50 bool negotiated; member in struct:blink::WebRTCDataChannelInit
H A DWebRTCDataChannelHandler.h51 virtual bool negotiated() const = 0;
/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/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)
H A Ddatachannel_unittest.cc293 // Tests that no CONTROL message is sent if the datachannel is negotiated and
298 config.negotiated = true;
314 config.negotiated = true;
332 EXPECT_FALSE(init.negotiated);
335 base.negotiated = true;
/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 Dssl_client_socket.h124 // Get the application level protocol that we negotiated with the server.
128 // kNextProtoNegotiated: *proto is set to the negotiated protocol.
145 virtual bool set_was_npn_negotiated(bool negotiated);
149 virtual bool set_was_spdy_negotiated(bool negotiated);
212 // True if NPN successfully negotiated SPDY.
214 // Protocol that we negotiated with the server.
/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;
H A Dmock_webrtc_data_channel_handler.h33 virtual bool negotiated() const OVERRIDE;
/external/chromium_org/net/quic/test_tools/
H A Dmock_crypto_client_stream.cc82 ASSERT_FALSE(session()->config()->negotiated());
102 ASSERT_TRUE(session()->config()->negotiated());
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCDataChannel.idl37 readonly attribute boolean negotiated;
H A DRTCDataChannel.h64 bool negotiated() const;
H A DRTCDataChannel.cpp122 bool RTCDataChannel::negotiated() const function in class:blink::RTCDataChannel
124 return m_handler->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();
H A Drtc_data_channel_handler.h40 virtual bool negotiated() const OVERRIDE;
H A Dmock_peer_connection_impl.cc124 virtual bool negotiated() const OVERRIDE {
125 return config_.negotiated;
/external/smack/src/org/jivesoftware/smackx/filetransfer/
H A DOutgoingFileTransfer.java83 * is only available after it has been successfully negotiated by the
90 if (getStatus().equals(FileTransfer.Status.negotiated)) {
226 if (!updateStatus(Status.negotiated, Status.in_progress)) {
297 if (!updateStatus(Status.negotiated, Status.in_progress)) {
386 if (!updateStatus(Status.negotiating_stream, Status.negotiated)) {
H A DIncomingFileTransfer.java61 * the negotiated stream.
63 * @return The negotiated InputStream from which to read the data.
69 throw new IllegalStateException("Transfer already negotiated!");
85 * negotiated stream. The transfered file will be saved at the provided
207 setStatus(Status.negotiated);
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/app/webrtc/objc/
H A DRTCDataChannel.mm112 return _dataChannelInit.negotiated;
116 _dataChannelInit.negotiated = isNegotiated;
207 return _dataChannel->negotiated();
/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.
H A Dquic_config_test.cc108 EXPECT_TRUE(config_.negotiated());
159 EXPECT_TRUE(config_.negotiated());
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3ext.c327 return arrayContainsExtension(xtnData->negotiated,
486 xtnData->negotiated[xtnData->numNegotiated++] = ssl_server_name_xtn;
589 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
637 /* If the server negotiated ALPN then it has already told us what protocol
639 * one by sending the NPN handshake message. However, if we've negotiated
641 * two extensions cannot both be negotiated on the same connection. */
650 /* ss->nextProtoCallback cannot normally be NULL if we negotiated the
673 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
712 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
827 ss->xtnData.negotiated[s
[all...]

Completed in 2890 milliseconds

12