Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/ets_utils/js_api_module/buffer/
H A Dnative_module_buffer.cpp138 string strDecoded = Base64Decode(base64Str, type); in GetStringBase64() local
139 return strDecoded; in GetStringBase64()
144 string strDecoded = GetStringBase64(env, str, type); in FromStringBase64() local
147 size = (size < strDecoded.length()) ? size : strDecoded.length(); in FromStringBase64()
148 buffer->WriteString(strDecoded, size); in FromStringBase64()
155 string strDecoded = HexDecode(hexStr); in GetStringHex() local
156 return strDecoded; in GetStringHex()
165 string strDecoded = HexDecode(hexStr); in FromStringHex() local
166 buffer->WriteString(strDecoded, strDecoded.length()); in FromStringHex()
167 buffer->SetLength(strDecoded.length()); in FromStringHex()