/prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/webrtc/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 487 size_t hex_decode(char * cbuffer, size_t buflen, function in namespace:rtc 513 if (!hex_decode(source[srcpos], &h1) || 514 !hex_decode(source[srcpos + 1], &h2)) 531 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); 103 // hex_decode converts ascii hex to binary. 104 size_t hex_decode(char* buffer, size_t buflen, 107 // hex_decode, assuming that there is a delimiter between every byte 115 // Helper functions for hex_decode. 116 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
|
stringencode_unittest.cc | 85 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); 126 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); 134 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); 151 dec_res_ = hex_decode(decoded_, sizeof(decoded_), result);
|
/external/webrtc/webrtc/examples/turnserver/ |
turnserver_main.cc | 35 size_t len = rtc::hex_decode(buf, sizeof(buf), hex);
|
/external/webrtc/webrtc/p2p/base/ |
turnserver.cc | 414 size_t len = rtc::hex_decode(p, sizeof(then),
|