Searched refs:NetLogBinaryValue (Results 1 – 13 of 13) sorted by relevance
/aosp_15_r20/external/cronet/net/log/ |
H A D | net_log_values.cc | 60 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 D | net_log_values_unittest.cc | 51 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 D | net_log_values.h | 51 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 D | net_log_with_source.cc | 31 dict.Set("bytes", NetLogBinaryValue(bytes, byte_count)); in BytesTransferredParams()
|
/aosp_15_r20/external/cronet/net/quic/ |
H A D | quic_event_logger.cc | 240 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 D | quic_chromium_client_session.cc | 359 dict.Set("ech_config_list", NetLogBinaryValue(ech_config_list)); in NetLogQuicClientSessionParams()
|
/aosp_15_r20/external/cronet/net/socket/ |
H A D | udp_net_log_parameters.cc | 24 dict.Set("bytes", NetLogBinaryValue(bytes, byte_count)); in NetLogUDPDataTransferParams()
|
H A D | ssl_client_socket_impl.cc | 119 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 D | ssl_connect_job.cc | 432 "bytes", NetLogBinaryValue(*ech_retry_configs_)); in DoSSLConnectComplete()
|
/aosp_15_r20/external/cronet/net/http/ |
H A D | http_auth_gssapi_posix.cc | 212 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 D | net-log.md | 43 * If the string is arbitrary data, use `NetLogBinaryValue()`.
|
/aosp_15_r20/external/cronet/net/dns/ |
H A D | dns_transaction.cc | 249 return NetLogBinaryValue(response_->io_buffer()->data(), read_size_); in GetRawResponseBufferForLog()
|
/aosp_15_r20/external/cronet/net/cert/ |
H A D | cert_verify_proc_builtin.cc | 720 results.Set("spki", NetLogBinaryValue(base::make_span(spki))); in CertVerifyProcBuiltin()
|