Home
last modified time | relevance | path

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

/system/core/adb/client/
Dfastdeploy.cpp149 ssize_t utf8_length = utf16_to_utf8_length(input, input_len); in get_string_from_utf16() local
150 if (utf8_length <= 0) { in get_string_from_utf16()
154 utf8.resize(utf8_length); in get_string_from_utf16()
155 utf16_to_utf8(input, input_len, &*utf8.begin(), utf8_length + 1); in get_string_from_utf16()
/system/core/libutils/include/utils/
DUnicode.h129 ssize_t utf8_length(const char *src);
/system/core/libutils/
DUnicode.cpp362 ssize_t utf8_length(const char *src) in utf8_length() function