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

1 2

  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCDataChannelInit.h 44 , negotiated(false)
50 bool negotiated; member in struct:WebKit::WebRTCDataChannelInit
WebRTCDataChannelHandler.h 50 virtual bool negotiated() const { return true; } function in class:WebKit::WebRTCDataChannelHandler
  /external/chromium/net/socket/
ssl_client_socket.cc 50 bool SSLClientSocket::set_was_npn_negotiated(bool negotiated) {
51 return was_npn_negotiated_ = negotiated;
58 bool SSLClientSocket::set_was_spdy_negotiated(bool negotiated) {
59 return was_spdy_negotiated_ = negotiated;
ssl_client_socket.h 80 // Get the application level protocol that we negotiated with the server.
84 // kNextProtoNegotiated: *proto is set to the negotiated protocol.
95 virtual bool set_was_npn_negotiated(bool negotiated);
101 virtual bool set_was_spdy_negotiated(bool negotiated);
106 // True if NPN successfully negotiated SPDY.
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
DataChannel.java 42 public boolean negotiated = true; field in class:DataChannel.Init
51 String protocol, boolean negotiated, int id) {
56 this.negotiated = negotiated;
  /external/chromium_org/net/socket/
ssl_client_socket.cc 75 return "negotiated";
124 bool SSLClientSocket::set_was_npn_negotiated(bool negotiated) {
125 return was_npn_negotiated_ = negotiated;
132 bool SSLClientSocket::set_was_spdy_negotiated(bool negotiated) {
133 return was_spdy_negotiated_ = negotiated;
ssl_client_socket.h 81 // Get the application level protocol that we negotiated with the server.
85 // kNextProtoNegotiated: *proto is set to the negotiated protocol.
108 virtual bool set_was_npn_negotiated(bool negotiated);
112 virtual bool set_was_spdy_negotiated(bool negotiated);
131 // True if NPN successfully negotiated SPDY.
133 // Protocol that we negotiated with the server.
  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
RTCDataChannelHandler.h 55 bool negotiated() const;
RTCDataChannelHandler.cpp 86 bool RTCDataChannelHandler::negotiated() const function in class:WebCore::RTCDataChannelHandler
88 return m_webHandler->negotiated();
  /external/chromium_org/net/quic/test_tools/
mock_crypto_client_stream.cc 55 ASSERT_FALSE(session()->config()->negotiated());
72 ASSERT_TRUE(session()->config()->negotiated());
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebRTCDataChannelHandler.cpp 93 bool MockWebRTCDataChannelHandler::negotiated() const function in class:WebTestRunner::MockWebRTCDataChannelHandler
95 return m_init.negotiated;
MockWebRTCDataChannelHandler.h 49 virtual bool negotiated() const OVERRIDE;
  /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
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCDataChannel.idl 37 readonly attribute boolean negotiated;
RTCDataChannel.h 60 bool negotiated() const;
RTCDataChannel.cpp 103 bool RTCDataChannel::negotiated() const function in class:WebCore::RTCDataChannel
105 return m_handler->negotiated();
  /external/chromium_org/net/quic/
quic_config.h 23 // value is selected as the negotiated value in such a case.
32 bool negotiated() const { function in class:net::QuicNegotiableValue
52 // Returns the value negotiated if |negotiated_| is true, otherwise returns
97 // Returns the negotiated tag if |negotiated_| is true, otherwise returns
101 // Serialises |name_| and vector (either possible or negotiated) to |out|. If
132 // QuicConfig contains non-crypto configuration options that are negotiated in
162 bool negotiated();
191 // finished. (Not negotiated).
quic_config.cc 280 bool QuicConfig::negotiated() { function in class:net::QuicConfig
281 return congestion_control_.negotiated() &&
282 idle_connection_state_lifetime_seconds_.negotiated() &&
283 keepalive_timeout_seconds_.negotiated() &&
284 max_streams_per_connection_.negotiated();
291 // kKATO is optional. Return 0 if not negotiated.
quic_config_test.cc 68 EXPECT_TRUE(config_.negotiated());
94 EXPECT_TRUE(config_.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/grub/netboot/
w89c840.c 851 int negotiated = mii_reg5 & w840private.advertising; local
857 duplex = (negotiated & 0x0100) || (negotiated & 0x01C0) == 0x0040;
862 printf("winbond-840 : Setting %s-duplex based on MII # %d negotiated capability %X\n",
863 duplex ? "full" : "half", w840private.phys[0], negotiated);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediasessionclient.cc 272 AudioCodec negotiated(*ours);
273 negotiated.id = theirs->id;
274 audio_accept->AddCodec(negotiated);
308 VideoCodec negotiated(*ours);
309 negotiated.id = theirs->id;
310 video_accept->AddCodec(negotiated);
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3ext.c 314 return arrayContainsExtension(xtnData->negotiated,
473 xtnData->negotiated[xtnData->numNegotiated++] = ssl_server_name_xtn;
567 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
623 /* ss->nextProtoCallback cannot normally be NULL if we negotiated the
646 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
686 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
797 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
841 /* Keep track of negotiated extensions. */
842 ss->xtnData.negotiated[ss->xtnData.numNegotiated++] = ex_type;
    [all...]

Completed in 696 milliseconds

1 2