Home
last modified time | relevance | path

Searched refs:hex_decode (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/encodings/
Dhex_codec.py27 def hex_decode(input,errors='strict'): function
50 return hex_decode(input,errors)
74 decode=hex_decode,
/external/python/cpython3/Lib/encodings/
Dhex_codec.py17 def hex_decode(input, errors='strict'): function
25 return hex_decode(input, errors)
49 decode=hex_decode,
/external/webrtc/webrtc/base/
Dstringencode.cc104 && hex_decode(source[srcpos], &h1) in decode()
105 && hex_decode(source[srcpos+1], &h2)) { in decode()
184 && hex_decode(source[srcpos], &h1) in url_decode()
185 && hex_decode(source[srcpos+1], &h2)) in url_decode()
418 bool hex_decode(char ch, unsigned char* val) { in hex_decode() function
487 size_t hex_decode(char * cbuffer, size_t buflen, in hex_decode() function
513 if (!hex_decode(source[srcpos], &h1) || in hex_decode_with_delimiter()
514 !hex_decode(source[srcpos + 1], &h2)) in hex_decode_with_delimiter()
531 size_t hex_decode(char* buffer, size_t buflen, const std::string& source) { in hex_decode() function
Dstringencode.h84 bool hex_decode(char ch, unsigned char* val);
104 size_t hex_decode(char* buffer, size_t buflen,
116 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
Dstringencode_unittest.cc85 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); in TEST_F()
126 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); in TEST_F()
134 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); in TEST_F()
151 dec_res_ = hex_decode(decoded_, sizeof(decoded_), result); in TEST_F()
/external/webrtc/webrtc/examples/turnserver/
Dturnserver_main.cc35 size_t len = rtc::hex_decode(buf, sizeof(buf), hex); in GetKey()
/external/webrtc/webrtc/p2p/base/
Dturnserver.cc414 size_t len = rtc::hex_decode(p, sizeof(then), in ValidateNonce()
/external/python/cpython3/Doc/whatsnew/
D3.4.rst335 File "/usr/lib/python3.4/encodings/hex_codec.py", line 20, in hex_decode