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

1 2

  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCDataChannelInit.h 44 , negotiated(false)
50 bool negotiated; member in struct:blink::WebRTCDataChannelInit
WebRTCDataChannelHandler.h 51 virtual bool negotiated() const = 0;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 42 public boolean negotiated = false; field in class:DataChannel.Init
51 String protocol, boolean negotiated, int id) {
56 this.negotiated = negotiated;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
datachannelinterface.h 49 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
datachannel.h 73 // 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)
datachannel_unittest.cc 293 // 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/content/renderer/media/
rtc_data_channel_handler.h 40 virtual bool negotiated() const OVERRIDE;
rtc_data_channel_handler.cc 47 if (negotiated())
92 bool RtcDataChannelHandler::negotiated() const { function in class:content::RtcDataChannelHandler
93 return channel_->negotiated();
mock_peer_connection_impl.cc 124 virtual bool negotiated() const OVERRIDE {
125 return config_.negotiated;
  /external/chromium_org/content/shell/renderer/test_runner/
mock_webrtc_data_channel_handler.h 33 virtual bool negotiated() const OVERRIDE;
mock_webrtc_data_channel_handler.cc 77 bool MockWebRTCDataChannelHandler::negotiated() const { function in class:content::MockWebRTCDataChannelHandler
78 return init_.negotiated;
  /external/chromium_org/net/socket/
ssl_client_socket.cc 77 return "negotiated";
111 bool SSLClientSocket::set_was_npn_negotiated(bool negotiated) {
112 return was_npn_negotiated_ = negotiated;
119 bool SSLClientSocket::set_was_spdy_negotiated(bool negotiated) {
120 return was_spdy_negotiated_ = negotiated;
ssl_client_socket.h 124 // 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/net/quic/test_tools/
mock_crypto_client_stream.cc 82 ASSERT_FALSE(session()->config()->negotiated());
102 ASSERT_TRUE(session()->config()->negotiated());
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.idl 37 readonly attribute boolean negotiated;
RTCDataChannel.h 64 bool negotiated() const;
RTCDataChannel.cpp 122 bool RTCDataChannel::negotiated() const function in class:blink::RTCDataChannel
124 return m_handler->negotiated();
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
OutgoingFileTransfer.java 83 * 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)) {
IncomingFileTransfer.java 61 * 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);
FileTransfer.java 261 * 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/
RTCDataChannel.mm 112 return _dataChannelInit.negotiated;
116 _dataChannelInit.negotiated = isNegotiated;
207 return _dataChannel->negotiated();
  /external/chromium_org/net/quic/
quic_config.h 26 // 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...]
quic_config.cc 644 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.
quic_config_test.cc 108 EXPECT_TRUE(config_.negotiated());
159 EXPECT_TRUE(config_.negotiated());
  /external/chromium_org/net/third_party/nss/ssl/
ssl3ext.c 327 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[ss->xtnData.numNegotiated++] = ex_type
    [all...]

Completed in 532 milliseconds

1 2