Home
last modified time | relevance | path

Searched refs:NetToHost16 (Results 1 – 25 of 56) sorted by relevance

123

/dports/www/chromium-legacy/chromium-88.0.4324.182/net/dns/
H A Ddns_response.cc383 if ((base::NetToHost16(header()->flags) & dns_protocol::kFlagResponse) == 0) in InitParse()
387 if (base::NetToHost16(header()->qdcount) != 1) in InitParse()
411 if ((base::NetToHost16(header()->flags) & dns_protocol::kFlagResponse) == 0) in InitParseWithoutQuery()
414 unsigned qdcount = base::NetToHost16(header()->qdcount); in InitParseWithoutQuery()
429 return base::NetToHost16(header()->id); in id()
438 return base::NetToHost16(header()->flags) & ~(kRcodeMask); in flags()
443 return base::NetToHost16(header()->flags) & kRcodeMask; in rcode()
448 return base::NetToHost16(header()->ancount); in answer_count()
453 return base::NetToHost16(header()->nscount); in authority_count()
458 return base::NetToHost16(header()->arcount); in additional_answer_count()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/dns/
H A Ddns_response.cc367 if (base::NetToHost16(header()->id) != query.id()) in InitParse()
371 if ((base::NetToHost16(header()->flags) & dns_protocol::kFlagResponse) == 0) in InitParse()
375 if (base::NetToHost16(header()->qdcount) != 1) in InitParse()
398 if ((base::NetToHost16(header()->flags) & dns_protocol::kFlagResponse) == 0) in InitParseWithoutQuery()
401 unsigned qdcount = base::NetToHost16(header()->qdcount); in InitParseWithoutQuery()
418 return base::NetToHost16(header()->flags) & ~(kRcodeMask); in flags()
423 return base::NetToHost16(header()->flags) & kRcodeMask; in rcode()
428 return base::NetToHost16(header()->ancount); in answer_count()
433 return base::NetToHost16(header()->arcount); in additional_answer_count()
530 unsigned nscount = base::NetToHost16(header()->nscount); in ParseToAddressList()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/quiche/common/platform/impl/
H A Dquiche_endian_impl.h23 static uint16_t NetToHost16(uint16_t x) { return base::NetToHost16(x); } in NetToHost16() function
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/common/platform/api/
H A Dquiche_endian.h37 static uint16_t NetToHost16(uint16_t x) { in NetToHost16() function
38 return QuicheEndianImpl::NetToHost16(x); in NetToHost16()
H A Dquiche_endian_test.cc42 quiche::QuicheEndian::NetToHost16(k16BitSwappedTestData)); in TEST_F()
49 quiche::QuicheEndian::NetToHost16(k16BitSwappedTestData)); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/fonts/opentype/
H A Dopen_type_types.h38 return static_cast<int16_t>(base::NetToHost16(v)); in int16_t()
46 operator uint16_t() const { return base::NetToHost16(v); } in uint16_t()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/fonts/opentype/
H A Dopen_type_types.h38 return static_cast<int16_t>(base::NetToHost16(v)); in int16_t()
46 operator uint16_t() const { return base::NetToHost16(v); } in uint16_t()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/crashpad/crashpad/util/misc/
H A Duuid.cc54 data_2 = base::NetToHost16(data_2); in InitializeFromBytes()
55 data_3 = base::NetToHost16(data_3); in InitializeFromBytes()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/crashpad/crashpad/util/misc/
H A Duuid.cc53 data_2 = base::NetToHost16(data_2); in InitializeFromBytes()
54 data_3 = base::NetToHost16(data_3); in InitializeFromBytes()
/dports/www/chromium-legacy/chromium-88.0.4324.182/remoting/protocol/
H A Dstun_tcp_packet_processor.cc31 size_t packet_size = base::NetToHost16( in GetExpectedStunPacketSize()
36 base::NetToHost16(*reinterpret_cast<const uint16_t*>(data)); in GetExpectedStunPacketSize()
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/
H A Dsys_byteorder_unittest.cc90 TEST(ByteOrderTest, NetToHost16) { in TEST() argument
91 uint16_t h = base::NetToHost16(k16BitTestData); in TEST()
H A Dsys_byteorder.h88 inline uint16_t NetToHost16(uint16_t x) { in NetToHost16() function
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/
H A Dsys_byteorder_unittest.cc90 TEST(ByteOrderTest, NetToHost16) { in TEST() argument
91 uint16_t h = base::NetToHost16(k16BitTestData); in TEST()
H A Dsys_byteorder.h88 inline uint16_t NetToHost16(uint16_t x) { in NetToHost16() function
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/base/
H A Dip_endpoint.cc49 *port = base::NetToHost16(addr->sin_port); in GetIPAddressFromSockAddr()
61 *port = base::NetToHost16(addr->sin6_port); in GetIPAddressFromSockAddr()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/base/
H A Dip_endpoint.cc52 *port = base::NetToHost16(addr->sin_port); in GetIPAddressFromSockAddr()
64 *port = base::NetToHost16(addr->sin6_port); in GetIPAddressFromSockAddr()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/services/network/p2p/
H A Dsocket.cc115 base::NetToHost16(*reinterpret_cast<const uint16_t*>(data + 2)); in GetStunPacketType()
121 base::NetToHost16(*reinterpret_cast<const uint16_t*>(data)); in GetStunPacketType()
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/network/p2p/
H A Dsocket.cc115 base::NetToHost16(*reinterpret_cast<const uint16_t*>(data + 2)); in GetStunPacketType()
121 base::NetToHost16(*reinterpret_cast<const uint16_t*>(data)); in GetStunPacketType()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/spdy/platform/impl/
H A Dspdy_endianness_util_impl.h11 return base::NetToHost16(x); in SpdyNetToHost16Impl()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/common/
H A Dquiche_endian_test.cc44 quiche::QuicheEndian::NetToHost16(k16BitSwappedTestData)); in TEST_F()
H A Dquiche_endian.h40 static uint16_t NetToHost16(uint16_t x) { return HostToNet16(x); } in NetToHost16() function
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/fonts/
H A Dsimple_font_data.cc274 return std::make_pair(static_cast<int16_t>(base::NetToHost16(buffer[0])), in TypoAscenderAndDescender()
275 -static_cast<int16_t>(base::NetToHost16(buffer[1]))); in TypoAscenderAndDescender()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/gn/base/
H A Dsys_byteorder.h91 inline uint16_t NetToHost16(uint16_t x) { in NetToHost16() function
/dports/devel/gn/gn-1962/src/base/
H A Dsys_byteorder.h91 inline uint16_t NetToHost16(uint16_t x) { in NetToHost16() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/gn/src/base/
H A Dsys_byteorder.h91 inline uint16_t NetToHost16(uint16_t x) { in NetToHost16() function

123