Home
last modified time | relevance | path

Searched refs:negotiated (Results 1 – 25 of 31) sorted by relevance

12

/external/syslinux/gpxe/src/include/
Dmii.h182 static inline unsigned int mii_nway_result (unsigned int negotiated) in mii_nway_result() argument
186 if (negotiated & LPA_100FULL) in mii_nway_result()
188 else if (negotiated & LPA_100BASE4) in mii_nway_result()
190 else if (negotiated & LPA_100HALF) in mii_nway_result()
192 else if (negotiated & LPA_10FULL) in mii_nway_result()
210 unsigned int negotiated) in mii_duplex() argument
214 if (mii_nway_result(negotiated) & LPA_DUPLEX) in mii_duplex()
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
DDataChannel.java42 public boolean negotiated = false; field in DataChannel.Init
51 String protocol, boolean negotiated, int id) { in Init() argument
56 this.negotiated = negotiated; in Init()
/external/webrtc/talk/app/webrtc/
Ddatachannelinterface.h50 negotiated(false), in DataChannelInit()
62 bool negotiated; // True if the channel has been externally negotiated member
141 virtual bool negotiated() const { return false; } in negotiated() function
Ddatachannel.h79 if (base.negotiated) { in InternalDataChannelInit()
145 virtual bool negotiated() const { return config_.negotiated; } in negotiated() function
289 PROXY_CONSTMETHOD0(bool, negotiated)
Ddatachannel_unittest.cc378 config.negotiated = true; in TEST_F()
394 config.negotiated = true; in TEST_F()
412 EXPECT_FALSE(init.negotiated); in TEST_F()
415 base.negotiated = true; in TEST_F()
Ddatachannel.cc625 (!is_open_message || !config_.negotiated)); in SendControlMessage()
/external/autotest/server/site_tests/firmware_PDProtocol/
Dcontrol10 CRITERIA = "This test will fail if PD is negotiated when running from USB image."
18 - That the DUT negotiated PD in dev mode from SSD boot
/external/iptables/extensions/
Dlibxt_tcpmss.man1 …can only use this on TCP SYN or SYN/ACK packets, since the MSS is only negotiated during the TCP h…
/external/syslinux/gpxe/src/drivers/net/
Dw89c840.c871 int negotiated = mii_reg5 & w840private.advertising; in check_duplex() local
877 duplex = (negotiated & 0x0100) || (negotiated & 0x01C0) == 0x0040; in check_duplex()
883 duplex ? "full" : "half", w840private.phys[0], negotiated); in check_duplex()
Dsundance.c293 int negotiated = mii_lpa & sdc->mii_if.advertising; in check_duplex() local
305 duplex = (negotiated & 0x0100) || (negotiated & 0x01C0) == 0x0040; in check_duplex()
311 negotiated ); in check_duplex()
Detherfabric.c147 gmii_nway_result ( unsigned int negotiated ) in gmii_nway_result() argument
152 other_bits = negotiated & LPA_OTHER; in gmii_nway_result()
154 if ( negotiated & LPA_EF_1000FULL ) in gmii_nway_result()
156 else if ( negotiated & LPA_EF_1000HALF ) in gmii_nway_result()
158 else if ( negotiated & LPA_100FULL ) in gmii_nway_result()
160 else if ( negotiated & LPA_100BASE4 ) in gmii_nway_result()
162 else if ( negotiated & LPA_100HALF ) in gmii_nway_result()
164 else if ( negotiated & LPA_10FULL ) in gmii_nway_result()
Dtulip.c1997 unsigned int bmsr, lpa, negotiated, new_csr6; in tulip_check_duplex() local
2025 negotiated = lpa & tp->advertising[0]; in tulip_check_duplex()
2027 if(negotiated & 0x380) new_csr6 &= ~0x400000; in tulip_check_duplex()
/external/webrtc/talk/app/webrtc/objc/
DRTCDataChannel.mm122 return _dataChannelInit.negotiated;
126 _dataChannelInit.negotiated = isNegotiated;
224 return _dataChannel->negotiated();
/external/autotest/client/site_tests/network_DhcpMTU/
Dcontrol13 if the interface MTU is not set to the value negotiated.
/external/autotest/client/site_tests/network_DhcpStaticIP/
Dcontrol18 negotiation although a lease is negotiated, it is released back to the DHCP
/external/cros/system_api/dbus/cryptohome/
Dsigned_secret.proto19 // and signed by a pre-negotiated key to authorize updates from the
/external/webrtc/talk/session/media/
Dmediasession.cc828 C negotiated = *ours; in NegotiateCodecs() local
829 negotiated.IntersectFeedbackParams(*theirs); in NegotiateCodecs()
830 if (IsRtxCodec(negotiated)) { in NegotiateCodecs()
847 negotiated.SetParam(kCodecParamAssociatedPayloadType, in NegotiateCodecs()
851 negotiated.id = theirs->id; in NegotiateCodecs()
856 negotiated.preference = theirs->preference; in NegotiateCodecs()
857 negotiated_codecs->push_back(negotiated); in NegotiateCodecs()
/external/ltp/tools/netpipe-2.4-ipv6/
DREADME93 which it is specified -- options are not negotiated between the
181 options are not negotiated between the transmitter and the receiver):
/external/ltp/tools/netpipe-2.4/
DREADME93 which it is specified -- options are not negotiated between the
181 options are not negotiated between the transmitter and the receiver):
/external/openssh/
DPROTOCOL.chacha20poly130529 negotiated.
DPROTOCOL88 AES-GCM is only negotiated as the cipher algorithms
/external/conscrypt/platform/src/test/java/org/conscrypt/
DNativeCryptoTest.java1800 byte[] negotiated = NativeCrypto.SSL_get0_alpn_selected(ssl); in test_SSL_AlpnNegotiateSuccess()
1801 assertEquals("spdy/2", new String(negotiated)); in test_SSL_AlpnNegotiateSuccess()
1809 byte[] negotiated = NativeCrypto.SSL_get0_alpn_selected(ssl); in test_SSL_AlpnNegotiateSuccess()
1810 assertEquals("spdy/2", new String(negotiated)); in test_SSL_AlpnNegotiateSuccess()
/external/libvncserver/
DREADME301 it understands is negotiated by the RFB protocol.
311 There is the possibility to set a password, which is also negotiated by the
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java1869 byte[] negotiated = NativeCrypto.SSL_get0_alpn_selected(ssl); in test_SSL_AlpnNegotiateSuccess()
1870 assertEquals("spdy/2", new String(negotiated)); in test_SSL_AlpnNegotiateSuccess()
1878 byte[] negotiated = NativeCrypto.SSL_get0_alpn_selected(ssl); in test_SSL_AlpnNegotiateSuccess()
1879 assertEquals("spdy/2", new String(negotiated)); in test_SSL_AlpnNegotiateSuccess()
/external/wpa_supplicant_8/wpa_supplicant/
DREADME-P2P235 if not present (or 1) role is negotiated by the two peers.
259 if not present (or 1) role is negotiated by the two peers.

12