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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
hex_codec.py 27 def hex_decode(input,errors='strict'): function
50 return hex_decode(input,errors)
74 decode=hex_decode,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
hex_codec.py 27 def hex_decode(input,errors='strict'): function
50 return hex_decode(input,errors)
74 decode=hex_decode,
  /external/chromium_org/third_party/webrtc/base/
stringencode.cc 104 && hex_decode(source[srcpos], &h1)
105 && hex_decode(source[srcpos+1], &h2)) {
184 && hex_decode(source[srcpos], &h1)
185 && hex_decode(source[srcpos+1], &h2))
418 bool hex_decode(char ch, unsigned char* val) { function in namespace:rtc
483 size_t hex_decode(char * cbuffer, size_t buflen, function in namespace:rtc
509 if (!hex_decode(source[srcpos], &h1) ||
510 !hex_decode(source[srcpos + 1], &h2))
527 size_t hex_decode(char* buffer, size_t buflen, const std::string& source) { function in namespace:rtc
stringencode.h 84 bool hex_decode(char ch, unsigned char* val);
102 // hex_decode converts ascii hex to binary.
103 size_t hex_decode(char* buffer, size_t buflen,
106 // hex_decode, assuming that there is a delimiter between every byte
114 // Helper functions for hex_decode.
115 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
stringencode_unittest.cc 84 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_);
125 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_);
133 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_);
150 dec_res_ = hex_decode(decoded_, sizeof(decoded_), result);
  /external/chromium_org/third_party/libjingle/source/talk/examples/turnserver/
turnserver_main.cc 52 size_t len = rtc::hex_decode(buf, sizeof(buf), hex);
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver.cc 503 size_t len = rtc::hex_decode(p, sizeof(then),
    [all...]

Completed in 839 milliseconds