Searched refs:utf8_buffer (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dutf8.hpp76 static void convert_to_utf8(const jchar* base, int length, char* utf8_buffer);
H A Dutf8.cpp239 void UNICODE::convert_to_utf8(const jchar* base, int length, char* utf8_buffer) { argument
241 utf8_buffer = (char*)utf8_write((u_char*)utf8_buffer, base[index]);
243 *utf8_buffer = '\0';
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.hpp184 static Symbol* new_symbol(const char* utf8_buffer, int length, TRAPS) { argument
185 assert(utf8_buffer != NULL, "just checking");
186 return lookup(utf8_buffer, length, THREAD);
H A DclassFileParser.cpp246 u1* utf8_buffer = cfs->get_u1_buffer(); local
247 assert(utf8_buffer != NULL, "null utf8 buffer");
254 verify_legal_utf8((unsigned char*)utf8_buffer, utf8_length, CHECK);
264 utf8_buffer = (u1*) str;
269 Symbol* result = SymbolTable::lookup_only((char*)utf8_buffer, utf8_length, hash);
271 names[names_count] = (char*)utf8_buffer;

Completed in 59 milliseconds