Searched refs:hex_decode (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/encodings/ |
D | hex_codec.py | 27 def hex_decode(input,errors='strict'): function 50 return hex_decode(input,errors) 74 decode=hex_decode,
|
/external/python/cpython3/Lib/encodings/ |
D | hex_codec.py | 17 def hex_decode(input, errors='strict'): function 25 return hex_decode(input, errors) 49 decode=hex_decode,
|
/external/webrtc/rtc_base/ |
D | string_encode.cc | 34 bool hex_decode(char ch, unsigned char* val) { in hex_decode() function 96 size_t hex_decode(char* cbuffer, in hex_decode() function 126 if (!hex_decode(source[srcpos], &h1) || in hex_decode_with_delimiter() 127 !hex_decode(source[srcpos + 1], &h2)) in hex_decode_with_delimiter() 144 size_t hex_decode(char* buffer, size_t buflen, const std::string& source) { in hex_decode() function
|
D | string_encode.h | 37 size_t hex_decode(char* buffer, 53 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
|
D | string_encode_unittest.cc | 40 hex_decode(decoded_, sizeof(decoded_), encoded.data(), encoded.size()); in TEST_F() 77 hex_decode(decoded_, sizeof(decoded_), encoded.data(), encoded.size()); in TEST_F() 86 hex_decode(decoded_, sizeof(decoded_), encoded.data(), encoded.size()); in TEST_F()
|
/external/webrtc/examples/turnserver/ |
D | read_auth_file.cc | 26 size_t len = rtc::hex_decode(buf, sizeof(buf), line.data() + sep + 1, in ReadAuthFile()
|
/external/webrtc/p2p/base/ |
D | turn_server.cc | 439 rtc::hex_decode(p, sizeof(then), nonce.substr(0, sizeof(then) * 2)); in ValidateNonce()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 335 File "/usr/lib/python3.4/encodings/hex_codec.py", line 20, in hex_decode
|