HomeSort by relevance Sort by last modified time
    Searched full:hex_decode (Results 1 - 10 of 10) 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/libjingle/source/talk/base/
stringencode.h 101 bool hex_decode(char ch, unsigned char* val);
119 // hex_decode converts ascii hex to binary.
120 size_t hex_decode(char* buffer, size_t buflen,
123 // hex_decode, assuming that there is a delimiter between every byte
131 // Helper functions for hex_decode.
132 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
stringencode.cc 121 && hex_decode(source[srcpos], &h1)
122 && hex_decode(source[srcpos+1], &h2)) {
201 && hex_decode(source[srcpos], &h1)
202 && hex_decode(source[srcpos+1], &h2))
434 bool hex_decode(char ch, unsigned char* val) {
499 size_t hex_decode(char * cbuffer, size_t buflen,
525 if (!hex_decode(source[srcpos], &h1) ||
526 !hex_decode(source[srcpos + 1], &h2))
543 size_t hex_decode(char* buffer, size_t buflen, const std::string& source) {
stringencode_unittest.cc 101 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_);
142 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_);
150 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_);
167 dec_res_ = hex_decode(decoded_, sizeof(decoded_), result);
  /external/chromium/third_party/libjingle/source/talk/base/
stringencode.cc 50 bool hex_decode(char ch, unsigned char* val) {
141 && hex_decode(source[srcpos], &h1)
142 && hex_decode(source[srcpos+1], &h2)) {
221 && hex_decode(source[srcpos], &h1)
222 && hex_decode(source[srcpos+1], &h2))
475 size_t hex_decode(char * cbuffer, size_t buflen,
487 && hex_decode(source[srcpos], &h1)
488 && hex_decode(source[srcpos+1], &h2))
stringencode.h 44 bool hex_decode(char ch, unsigned char* val);
104 size_t hex_decode(char * buffer, size_t buflen,
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver_main.cc 52 size_t len = talk_base::hex_decode(buf, sizeof(buf), hex);
turnserver.cc 494 size_t len = talk_base::hex_decode(p, sizeof(then),
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc     [all...]

Completed in 850 milliseconds