Searched defs:utf8_str (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/windows/instrument/
H A DEncodingSupport_md.c34 convertUft8ToPlatformString(char* utf8_str, int utf8_len, char* platform_str, int platform_len) { argument
59 wlen = MultiByteToWideChar(CP_UTF8, 0, utf8_str, utf8_len, NULL, 0);
65 utf8_str,
/openjdk7/jdk/src/solaris/instrument/
H A DEncodingSupport_md.c175 convertUft8ToPlatformString(char* utf8_str, int utf8_len, char* platform_str, int platform_len) { argument
179 return utf8ToPlatform(utf8_str, utf8_len, platform_str, platform_len);
/openjdk7/hotspot/src/share/vm/memory/
H A DoopFactory.cpp49 typeArrayOop oopFactory::new_charArray(const char* utf8_str, TRAPS) { argument
50 int length = utf8_str == NULL ? 0 : UTF8::unicode_length(utf8_str);
53 UTF8::convert_to_unicode(utf8_str, result->char_at_addr(0), length);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dutf8.cpp148 void UTF8::convert_to_unicode(const char* utf8_str, jchar* unicode_str, int unicode_length) { argument
150 const char *ptr = (const char *)utf8_str;
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp227 Handle java_lang_String::create_from_str(const char* utf8_str, TRAPS) { argument
228 if (utf8_str == NULL) {
231 int length = UTF8::unicode_length(utf8_str);
234 UTF8::convert_to_unicode(utf8_str, value(h_obj())->char_at_addr(0), length);
239 oop java_lang_String::create_oop_from_str(const char* utf8_str, TRAPS) { argument
240 Handle h_obj = create_from_str(utf8_str, CHECK_0);

Completed in 45 milliseconds