Searched defs:c_heap (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.hpp106 // This GA will use the resource stack for storage if c_heap==false,
108 GenericGrowableArray(int initial_size, int initial_len, bool c_heap, MEMFLAGS flags = mtNone) { argument
114 assert(!(c_heap && flags == mtNone), "memory type not specified for C heap object");
117 _arena = (c_heap ? (Arena*)1 : NULL);
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp47 Symbol* SymbolTable::allocate_symbol(const u1* name, int len, bool c_heap, TRAPS) { argument
53 if (c_heap || DumpSharedSpaces) {
319 bool c_heap = class_loader() != NULL; local
320 Symbol* sym = table->basic_add(index, (u1*)names[i], lengths[i], hashValues[i], c_heap, CHECK);
341 unsigned int hashValue_arg, bool c_heap, TRAPS) {
376 Symbol* sym = allocate_symbol(name, len, c_heap, CHECK_NULL);
424 bool c_heap = class_loader() != NULL; local
425 Symbol* sym = allocate_symbol((const u1*)names[i], lengths[i], c_heap, CHECK_(false));
340 basic_add(int index_arg, u1 *name, int len, unsigned int hashValue_arg, bool c_heap, TRAPS) argument

Completed in 31 milliseconds