/external/python/cpython2/Lib/encodings/ |
D | hex_codec.py | 13 def hex_encode(input,errors='strict'): function 48 return hex_encode(input,errors) 73 encode=hex_encode,
|
/external/python/cpython3/Lib/encodings/ |
D | hex_codec.py | 13 def hex_encode(input, errors='strict'): function 23 return hex_encode(input, errors) 48 encode=hex_encode,
|
/external/webrtc/rtc_base/ |
D | message_digest_unittest.cc | 32 hex_encode(output, sizeof(output))); in TEST() 54 hex_encode(output, sizeof(output))); in TEST() 102 hex_encode(output, sizeof(output))); in TEST() 143 hex_encode(output, sizeof(output))); in TEST()
|
D | string_encode.cc | 28 char hex_encode(unsigned char val) { in hex_encode() function 66 buffer[bufpos] = hex_encode((ch >> 4) & 0xF); in hex_encode_with_delimiter() 67 buffer[bufpos + 1] = hex_encode((ch)&0xF); in hex_encode_with_delimiter() 80 std::string hex_encode(const std::string& str) { in hex_encode() function 81 return hex_encode(str.c_str(), str.size()); in hex_encode() 84 std::string hex_encode(const char* source, size_t srclen) { in hex_encode() function
|
D | string_encode.h | 30 std::string hex_encode(const std::string& str); 31 std::string hex_encode(const char* source, size_t srclen);
|
D | message_digest.cc | 76 return hex_encode(output.get(), digest->Size()); in ComputeDigest() 159 return hex_encode(output.get(), digest->Size()); in ComputeHmac()
|
D | string_encode_unittest.cc | 37 std::string encoded = hex_encode(data_, sizeof(data_)); in TEST_F() 65 std::string encoded = hex_encode(data_, sizeof(data_)); in TEST_F() 83 std::string encoded = hex_encode("", 0); in TEST_F()
|
/external/webrtc/p2p/base/ |
D | turn_port.cc | 1368 << rtc::hex_encode(id()); in OnSent() 1375 << rtc::hex_encode(id()) in OnResponse() 1421 << rtc::hex_encode(id()) << ", code=" << error_code in OnErrorResponse() 1440 << rtc::hex_encode(id()) << ", code=" << error_code in OnErrorResponse() 1449 << rtc::hex_encode(id()) << " timeout"; in OnTimeout() 1555 << rtc::hex_encode(id()); in OnSent() 1562 << rtc::hex_encode(id()) in OnResponse() 1601 << rtc::hex_encode(id()) << ", code=" << error_code in OnErrorResponse() 1610 << rtc::hex_encode(id()); in OnTimeout() 1644 << rtc::hex_encode(id()); in OnSent() [all …]
|
D | connection.cc | 448 << err << " id=" << rtc::hex_encode(req->id()); in OnSendStunPacket() 487 << ", id=" << rtc::hex_encode(msg->transaction_id()); in OnReadPacket() 719 << ", id=" << rtc::hex_encode(response.transaction_id()); in SendResponseMessage() 727 << ", id=" << rtc::hex_encode(response.transaction_id()); in SendResponseMessage() 774 oss << rtc::hex_encode(ping.id) << " "; in PrintPingsSinceLastResponse() 779 oss << rtc::hex_encode(ping.id) << " "; in PrintPingsSinceLastResponse() 854 << rtc::hex_encode(req->id()) in Ping() 881 << rtc::hex_encode(request_id); in HandlePiggybackCheckAcknowledgementIfAny() 1085 << ", id=" << rtc::hex_encode(request->id()) in OnConnectionRequestResponse() 1133 << " id=" << rtc::hex_encode(request->id()) in OnConnectionRequestErrorResponse() [all …]
|
D | stun_request.cc | 169 << rtc::hex_encode(id); in CheckResponse()
|
D | port.cc | 383 << " id=" << rtc::hex_encode(msg->transaction_id()) in OnReadPacket()
|
D | turn_server.cc | 421 std::string nonce = rtc::hex_encode(input.c_str(), input.size()); in GenerateNonce()
|
/external/webrtc/modules/audio_coding/neteq/tools/ |
D | audio_checksum.h | 51 return rtc::hex_encode(checksum_result_.data<char>(), in Finish()
|
/external/webrtc/modules/audio_coding/neteq/test/ |
D | result_sink.cc | 121 const std::string result = rtc::hex_encode(&buffer[0], digest_->Size()); in VerifyChecksum()
|
/external/webrtc/modules/audio_coding/acm2/ |
D | audio_coding_module_unittest.cc | 1168 rtc::hex_encode(checksum_result.data<char>(), checksum_result.size()); in Run()
|