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/rtc_base/
Dstring_encode.cc34 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
Dstring_encode.h37 size_t hex_decode(char* buffer,
53 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
Dstring_encode_unittest.cc40 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/
Dread_auth_file.cc26 size_t len = rtc::hex_decode(buf, sizeof(buf), line.data() + sep + 1, in ReadAuthFile()
/external/webrtc/p2p/base/
Dturn_server.cc439 rtc::hex_decode(p, sizeof(then), nonce.substr(0, sizeof(then) * 2)); in ValidateNonce()
/external/python/cpython3/Doc/whatsnew/
D3.4.rst335 File "/usr/lib/python3.4/encodings/hex_codec.py", line 20, in hex_decode