Home
last modified time | relevance | path

Searched refs:NetLogBinaryValue (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/external/cronet/net/log/
H A Dnet_log_values.cc60 base::Value NetLogBinaryValue(base::span<const uint8_t> bytes) { in NetLogBinaryValue() function
61 return NetLogBinaryValue(bytes.data(), bytes.size()); in NetLogBinaryValue()
64 base::Value NetLogBinaryValue(const void* bytes, size_t length) { in NetLogBinaryValue() function
H A Dnet_log_values_unittest.cc51 TEST(NetLogValuesTest, NetLogBinaryValue) { in TEST() argument
53 auto value1 = NetLogBinaryValue(nullptr, 0); in TEST()
59 auto value2 = NetLogBinaryValue(kBytes, std::size(kBytes)); in TEST()
H A Dnet_log_values.h51 NET_EXPORT base::Value NetLogBinaryValue(base::span<const uint8_t> bytes);
52 NET_EXPORT base::Value NetLogBinaryValue(const void* bytes, size_t length);
H A Dnet_log_with_source.cc31 dict.Set("bytes", NetLogBinaryValue(bytes, byte_count)); in BytesTransferredParams()
/aosp_15_r20/external/cronet/net/quic/
H A Dquic_event_logger.cc240 return base::Value::Dict().Set("data", NetLogBinaryValue(buffer)); in NetLogQuicPathData()
300 dict.Set("bytes", NetLogBinaryValue( in NetLogQuicCryptoFrameParams()
347 NetLogBinaryValue(reinterpret_cast<const void*>(frame->token.data()), in NetLogQuicNewTokenFrameParams()
808 "bytes", NetLogBinaryValue(base::as_byte_span(client_hello))); in OnEncryptedClientHelloSent()
H A Dquic_chromium_client_session.cc359 dict.Set("ech_config_list", NetLogBinaryValue(ech_config_list)); in NetLogQuicClientSessionParams()
/aosp_15_r20/external/cronet/net/socket/
H A Dudp_net_log_parameters.cc24 dict.Set("bytes", NetLogBinaryValue(bytes, byte_count)); in NetLogUDPDataTransferParams()
H A Dssl_client_socket_impl.cc119 return base::Value::Dict().Set("bytes", NetLogBinaryValue(bytes, len)); in NetLogSSLAlertParams()
143 dict.Set("bytes", NetLogBinaryValue(bytes, len)); in NetLogSSLMessageParams()
814 "bytes", NetLogBinaryValue(ssl_config_.ech_config_list)); in Init()
H A Dssl_connect_job.cc432 "bytes", NetLogBinaryValue(*ech_retry_configs_)); in DoSSLConnectComplete()
/aosp_15_r20/external/cronet/net/http/
H A Dhttp_auth_gssapi_posix.cc212 params.Set("bytes", NetLogBinaryValue(oid->elements, std::min(kMaxOidDataSize, in OidToValue()
263 : NetLogBinaryValue(name.value, name.length)); in GetDisplayNameValue()
/aosp_15_r20/external/cronet/net/docs/
H A Dnet-log.md43 * If the string is arbitrary data, use `NetLogBinaryValue()`.
/aosp_15_r20/external/cronet/net/dns/
H A Ddns_transaction.cc249 return NetLogBinaryValue(response_->io_buffer()->data(), read_size_); in GetRawResponseBufferForLog()
/aosp_15_r20/external/cronet/net/cert/
H A Dcert_verify_proc_builtin.cc720 results.Set("spki", NetLogBinaryValue(base::make_span(spki))); in CertVerifyProcBuiltin()