/external/cronet/net/third_party/quiche/src/quiche/common/ |
D | quiche_data_reader_test.cc | 18 TEST(QuicheDataReaderTest, ReadUInt16) { in TEST() argument 29 EXPECT_TRUE(reader.ReadUInt16(&uint16_val)); in TEST() 33 EXPECT_TRUE(reader.ReadUInt16(&uint16_val)); in TEST() 92 EXPECT_FALSE(reader.ReadUInt16(&uint16_val)); in TEST() 110 EXPECT_FALSE(reader.ReadUInt16(&uint16_val)); in TEST() 130 EXPECT_FALSE(reader.ReadUInt16(&uint16_val)); in TEST() 149 EXPECT_FALSE(reader.ReadUInt16(&uint16_val)); in TEST()
|
D | quiche_data_reader.cc | 33 bool QuicheDataReader::ReadUInt16(uint16_t* result) { in ReadUInt16() function in quiche::QuicheDataReader 98 if (!ReadUInt16(&result_len)) { in ReadStringPiece16()
|
D | quiche_data_reader.h | 51 bool ReadUInt16(uint16_t* result);
|
/external/webrtc/test/fuzzers/ |
D | forward_error_correction_fuzzer.cc | 41 if (!fuzz_buffer.ReadUInt16(&media_seqnum)) in FuzzOneInput() 45 if (!fuzz_buffer.ReadUInt16(&fec_seqnum)) in FuzzOneInput() 84 if (!fuzz_buffer.ReadUInt16(&seq_num_diff)) in FuzzOneInput()
|
/external/cronet/net/ntlm/ |
D | ntlm_buffer_reader.cc | 31 bool NtlmBufferReader::ReadUInt16(uint16_t* value) { in ReadUInt16() function in net::ntlm::NtlmBufferReader 89 return ReadUInt16(&sec_buf->length) && SkipBytes(sizeof(uint16_t)) && in ReadSecurityBuffer() 98 bool result = ReadUInt16(&raw_avid) && ReadUInt16(avlen); in ReadAvPairHeader()
|
D | ntlm_buffer_reader.h | 75 [[nodiscard]] bool ReadUInt16(uint16_t* value);
|
D | ntlm_buffer_reader_unittest.cc | 84 ASSERT_TRUE(reader.ReadUInt16(&actual)); in TEST() 87 ASSERT_FALSE(reader.ReadUInt16(&actual)); in TEST()
|
/external/webrtc/pc/ |
D | sctp_utils.cc | 86 if (!buffer.ReadUInt16(&priority)) { in ParseDataChannelOpenMessage() 109 if (!buffer.ReadUInt16(&label_length)) { in ParseDataChannelOpenMessage() 114 if (!buffer.ReadUInt16(&protocol_length)) { in ParseDataChannelOpenMessage()
|
D | sctp_utils_unittest.cc | 49 ASSERT_TRUE(buffer.ReadUInt16(&priority)); in VerifyOpenMessageFormat() 65 ASSERT_TRUE(buffer.ReadUInt16(&label_length)); in VerifyOpenMessageFormat() 66 ASSERT_TRUE(buffer.ReadUInt16(&protocol_length)); in VerifyOpenMessageFormat()
|
/external/cronet/net/third_party/quiche/src/quiche/oblivious_http/common/ |
D | oblivious_http_header_key_config.cc | 160 if (!reader.ReadUInt16(&kem_id)) { in ParseOhttpPayloadHeader() 168 if (!reader.ReadUInt16(&kdf_id)) { in ParseOhttpPayloadHeader() 176 if (!reader.ReadUInt16(&aead_id)) { in ParseOhttpPayloadHeader() 428 if (!reader.ReadUInt8(&key_id) || !reader.ReadUInt16(&kem_id)) { in ReadSingleKeyConfig() 456 if (!sub_reader.ReadUInt16(&kdf_id) || !sub_reader.ReadUInt16(&aead_id)) { in ReadSingleKeyConfig()
|
/external/cronet/net/third_party/quiche/src/quiche/oblivious_http/buffers/ |
D | oblivious_http_request_test.cc | 138 EXPECT_TRUE(reader.ReadUInt16(&kem_id)); in TEST() 141 EXPECT_TRUE(reader.ReadUInt16(&kdf_id)); in TEST() 144 EXPECT_TRUE(reader.ReadUInt16(&aead_id)); in TEST()
|
/external/cronet/net/third_party/quiche/src/quiche/quic/masque/ |
D | masque_encapsulated_client_session.cc | 162 if (!reader.ReadUInt16(&server_port)) { in ProcessIpPacket() 175 if (!reader.ReadUInt16(&udp_length)) { in ProcessIpPacket()
|
D | masque_encapsulated_client.cc | 45 if (!reader.ReadUInt16(&word)) { in IngestData()
|
/external/cronet/net/third_party/quiche/src/quiche/quic/core/ |
D | quic_data_reader.cc | 28 if (!ReadUInt16(&value)) { in ReadUFloat16()
|
/external/webrtc/rtc_base/ |
D | socket_adapters.cc | 568 if (!response.ReadUInt32(&addr) || !response.ReadUInt16(&port)) in ProcessInput() 575 !response.ReadUInt16(&port)) in ProcessInput() 580 if (!response.ReadString(&addr, 16) || !response.ReadUInt16(&port)) in ProcessInput()
|
D | byte_buffer_unittest.cc | 104 EXPECT_TRUE(read_buf2.ReadUInt16(&ru16)); in TEST() 183 EXPECT_TRUE(read_buf9.ReadUInt16(&ru16)); in TEST()
|
D | byte_buffer.cc | 52 bool ByteBufferReader::ReadUInt16(uint16_t* val) { in ReadUInt16() function in rtc::ByteBufferReader
|
D | byte_buffer.h | 145 bool ReadUInt16(uint16_t* val);
|
D | server_socket_adapters.cc | 147 !request->ReadUInt32(&ip) || !request->ReadUInt16(&port)) { in HandleConnect()
|
/external/cronet/net/third_party/quiche/src/quiche/quic/core/crypto/ |
D | crypto_framer.cc | 261 reader.ReadUInt16(&num_entries_); in Process() 267 reader.ReadUInt16(&padding); in Process()
|
/external/webrtc/api/transport/ |
D | stun.cc | 590 if (!buf->ReadUInt16(&type_)) { in Read() 600 if (!buf->ReadUInt16(&length_)) { in Read() 636 if (!buf->ReadUInt16(&attr_type)) in Read() 638 if (!buf->ReadUInt16(&attr_length)) in Read() 904 if (!buf->ReadUInt16(&port)) in Read() 1279 if (!buf->ReadUInt16(&attr)) in Read()
|
/external/cronet/base/ |
D | pickle_fuzzer.cc | 51 std::ignore = iter.ReadUInt16(&result); in LLVMFuzzerTestOneInput()
|
D | pickle.h | 41 [[nodiscard]] bool ReadUInt16(uint16_t* result);
|
/external/cronet/net/http/ |
D | http_response_info.cc | 283 if (!sct.get() || !iter.ReadUInt16(&status)) in InitFromPickle() 300 if (!iter.ReadUInt16(&socket_address_port)) in InitFromPickle()
|
/external/libchrome/base/ |
D | pickle.h | 44 bool ReadUInt16(uint16_t* result) WARN_UNUSED_RESULT;
|