HomeSort by relevance Sort by last modified time
    Searched defs:str_utf8 (Results 1 - 2 of 2) sorted by null

  /external/curl/lib/
curl_multibyte.c 40 wchar_t *Curl_convert_UTF8_to_wchar(const char *str_utf8)
44 if(str_utf8) {
46 str_utf8, -1, NULL, 0);
50 if(MultiByteToWideChar(CP_UTF8, 0, str_utf8, -1, str_w,
64 char *str_utf8 = NULL; local
70 str_utf8 = malloc(str_utf8_len * sizeof(wchar_t));
71 if(str_utf8) {
72 if(WideCharToMultiByte(CP_UTF8, 0, str_w, -1, str_utf8, str_utf8_len,
74 free(str_utf8);
81 return str_utf8;
    [all...]
  /frameworks/base/core/jni/
android_util_AssetManager.cpp 696 const char* str_utf8 = pool->string8At(value.data, &str_len); local
697 if (str_utf8 != nullptr) {
698 java_string = env->NewStringUTF(str_utf8);
    [all...]

Completed in 206 milliseconds