HomeSort by relevance Sort by last modified time
    Searched refs:hex_encode (Results 1 - 20 of 20) sorted by null

  /prebuilts/gdb/darwin-x86/lib/python2.7/encodings/
hex_codec.py 13 def hex_encode(input,errors='strict'): function
48 return hex_encode(input,errors)
73 encode=hex_encode,
  /prebuilts/gdb/linux-x86/lib/python2.7/encodings/
hex_codec.py 13 def hex_encode(input,errors='strict'): function
48 return hex_encode(input,errors)
73 encode=hex_encode,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
hex_codec.py 13 def hex_encode(input,errors='strict'): function
48 return hex_encode(input,errors)
73 encode=hex_encode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
hex_codec.py 13 def hex_encode(input,errors='strict'): function
48 return hex_encode(input,errors)
73 encode=hex_encode,
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
audio_checksum.h 46 return rtc::hex_encode(checksum_result_, rtc::Md5Digest::kSize);
  /external/webrtc/webrtc/base/
messagedigest_unittest.cc 32 hex_encode(output, sizeof(output)));
53 hex_encode(output, sizeof(output)));
99 hex_encode(output, sizeof(output)));
139 hex_encode(output, sizeof(output)));
stringencode.cc 83 buffer[bufpos+1] = hex_encode((static_cast<unsigned char>(ch) >> 4) & 0xF);
84 buffer[bufpos+2] = hex_encode((static_cast<unsigned char>(ch) ) & 0xF);
158 buffer[bufpos+1] = hex_encode((ch >> 4) & 0xF);
159 buffer[bufpos+2] = hex_encode((ch ) & 0xF);
413 char hex_encode(unsigned char val) { function in namespace:rtc
431 size_t hex_encode(char* buffer, size_t buflen, function in namespace:rtc
453 buffer[bufpos ] = hex_encode((ch >> 4) & 0xF);
454 buffer[bufpos+1] = hex_encode((ch ) & 0xF);
469 std::string hex_encode(const std::string& str) { function in namespace:rtc
470 return hex_encode(str.c_str(), str.size())
473 std::string hex_encode(const char* source, size_t srclen) { function in namespace:rtc
    [all...]
stringencode.h 82 char hex_encode(unsigned char val);
86 // hex_encode shows the hex representation of binary data in ascii.
87 size_t hex_encode(char* buffer, size_t buflen,
90 // hex_encode, but separate each byte representation with a delimiter.
97 // Helper functions for hex_encode.
98 std::string hex_encode(const std::string& str);
99 std::string hex_encode(const char* source, size_t srclen);
md5digest_unittest.cc 47 hex_encode(output, sizeof(output)));
sha1digest_unittest.cc 48 hex_encode(output, sizeof(output)));
messagedigest.cc 88 return hex_encode(output.get(), digest->Size());
162 return hex_encode(output.get(), digest->Size());
stringencode_unittest.cc 82 enc_res_ = hex_encode(encoded_, sizeof(encoded_), data_, sizeof(data_));
114 enc_res_ = hex_encode(encoded_, sizeof(encoded_), data_, sizeof(data_));
132 enc_res_ = hex_encode(encoded_, sizeof(encoded_), "", 0);
149 std::string result = hex_encode(data_, sizeof(data_));
logging.cc 469 hex_line[i*2 + i/4] = hex_encode(ch >> 4);
470 hex_line[i*2 + i/4 + 1] = hex_encode(ch & 0xf);
testutils.h 488 hex_encode(buffer, buffer_size,
498 hex_encode(buffer, buffer_size,
  /external/webrtc/webrtc/p2p/base/
turnport.cc     [all...]
port.cc 290 << " id=" << rtc::hex_encode(msg->transaction_id())
576 << ", id=" << rtc::hex_encode(response.transaction_id());
586 << ", id=" << rtc::hex_encode(response.transaction_id());
878 << " id=" << rtc::hex_encode(req->id());
913 << ", id=" << rtc::hex_encode(msg->transaction_id());
    [all...]
stunrequest.cc 134 LOG(LS_WARNING) << "Failed to read STUN response " << rtc::hex_encode(id);
turnserver.cc 399 std::string nonce = rtc::hex_encode(input.c_str(), input.size());
  /external/webrtc/webrtc/modules/utility/source/
file_player_unittests.cc 77 rtc::hex_encode(checksum_result, sizeof(checksum_result)));
  /external/webrtc/webrtc/modules/audio_coding/acm2/
audio_coding_module_unittest_oldapi.cc     [all...]

Completed in 863 milliseconds