Searched defs:names_count (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.hpp98 bool basic_add(Handle class_loader, constantPoolHandle cp, int names_count,
103 int names_count,
107 add(class_loader, cp, names_count, name, lengths, cp_indices, hashValues, THREAD);
173 static void add(Handle class_loader, constantPoolHandle cp, int names_count,
102 new_symbols(Handle class_loader, constantPoolHandle cp, int names_count, const char** name, int* lengths, int* cp_indices, unsigned int* hashValues, TRAPS) argument
H A DsymbolTable.cpp306 int names_count,
313 bool added = table->basic_add(class_loader, cp, names_count, names, lengths,
317 for (int i=0; i<names_count; i++) {
387 int names_count,
393 for (int i = 0; i< names_count; i++) {
403 for (int i=0; i<names_count; i++) {
305 add(Handle class_loader, constantPoolHandle cp, int names_count, const char** names, int* lengths, int* cp_indices, unsigned int* hashValues, TRAPS) argument
386 basic_add(Handle class_loader, constantPoolHandle cp, int names_count, const char** names, int* lengths, int* cp_indices, unsigned int* hashValues, TRAPS) argument
H A DclassFileParser.cpp104 int names_count = 0; local
271 names[names_count] = (char*)utf8_buffer;
272 lengths[names_count] = utf8_length;
273 indices[names_count] = index;
274 hashValues[names_count++] = hash;
275 if (names_count == SymbolTable::symbol_alloc_batch_size) {
276 SymbolTable::new_symbols(class_loader, cp, names_count, names, lengths, indices, hashValues, CHECK);
277 names_count = 0;
292 if (names_count > 0) {
293 SymbolTable::new_symbols(class_loader, cp, names_count, name
[all...]

Completed in 42 milliseconds