| /glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/interceptors/ |
| H A D | JavaEEInterceptorBuilderImpl.java | 78 private EjbOptionalIntfGenerator gen; field in class:JavaEEInterceptorBuilderImpl 85 EjbOptionalIntfGenerator gen, Class subClassIntf, 89 this.gen = gen; 84 JavaEEInterceptorBuilderImpl(InterceptorInfo intInfo, InterceptorManager manager, EjbOptionalIntfGenerator gen, Class subClassIntf, Class subClass) argument
|
| /glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/ |
| H A D | VerifierTestContext.java | 244 public void setJDOCodeGenerator(JDOCodeGenerator gen) { argument 245 jdc = gen;
|
| /openjdk7/hotspot/test/runtime/6626217/ |
| H A D | IFace.java | 4 public many_loader[] gen(); method in interface:IFace
|
| H A D | from_loader2.java | 4 public many_loader[] gen() { method in class:from_loader2
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/tools/ |
| H A D | HeapSummary.java | 80 Generation gen = genHeap.getGen(n); 81 if (gen instanceof sun.jvm.hotspot.memory.DefNewGeneration) { 83 printGen(gen); 85 ContiguousSpace eden = ((DefNewGeneration)gen).eden(); 89 ContiguousSpace from = ((DefNewGeneration)gen).from(); 93 ContiguousSpace to = ((DefNewGeneration)gen).to(); 97 System.out.println(gen.name() + ":"); 98 printGen(gen); 215 private void printGen(Generation gen) { argument 216 printValMB("capacity = ", gen [all...] |
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/ |
| H A D | PointerLocation.java | 49 Generation gen; field in class:PointerLocation 84 return (heap != null || (gen != null) || (permGen != null)); 88 return ((gen != null) && (gen.level() == 0)); 92 return ((gen != null) && (gen.level() == 1)); 105 if (gen != null) { 106 return gen; 221 } else if (gen != null) {
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/ |
| H A D | cmsPermGen.cpp | 64 HeapWord* CMSPermGen::request_expand_and_allocate(Generation* gen, argument 67 HeapWord* obj = gen->expand_and_allocate(size, false); 68 if (gen->capacity() >= _capacity_expansion_limit) { 69 set_capacity_expansion_limit(gen->capacity() + MaxPermHeapExpansion); 70 assert(((ConcurrentMarkSweepGeneration*)gen)->should_concurrent_collect(),
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
| H A D | bufferingOopClosure.hpp | 124 void set_generation(Generation* gen) { argument 125 OopsInGenClosure::set_generation(gen); 126 _oc->set_generation(gen);
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
| H A D | psTasks.hpp | 118 // This task is used to scan for roots in the perm gen 126 SerialOldToYoungRootsTask(PSOldGen *gen, HeapWord* gen_top) : argument 127 _gen(gen), _gen_top(gen_top) { } 139 // A GC thread executing this tasks divides the generation (old gen) 187 OldToYoungRootsTask(PSOldGen *gen, argument 191 _gen(gen),
|
| /openjdk7/hotspot/src/share/vm/interpreter/ |
| H A D | templateTable.cpp | 42 void Template::initialize(int flags, TosState tos_in, TosState tos_out, generator gen, int arg) { argument 46 _gen = gen; 180 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(), char filler) { argument 182 def(code, flags, in, out, (Template::generator)gen, 0); 186 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(int arg), int arg) { 201 t->initialize(flags, in, out, gen, arg); 206 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Operation op), Operation op) { 207 def(code, flags, in, out, (Template::generator)gen, (int)op); 211 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(bool arg ), bool arg) { 212 def(code, flags, in, out, (Template::generator)gen, (in [all...] |
| /openjdk7/hotspot/src/share/vm/memory/ |
| H A D | collectorPolicy.cpp | 152 vm_exit_during_initialization("Unable to allocate gen spec"); 243 // All generational heaps have a youngest gen; handle those flags here. 671 Generation *gen = gch->get_gen(i); local 672 if (gen->should_allocate(size, is_tlab)) { 673 result = gen->expand_and_allocate(size, is_tlab); 761 // . the allocation won't fit into the current young gen heap 788 vm_exit_during_initialization("Unable to allocate gen spec"); 798 vm_exit_during_initialization("Unable to allocate gen spec");
|
| H A D | genMarkSweep.cpp | 99 // Some of the card table updates below assume that the perm gen is 102 "All generations are being collected, ergo perm gen too."); 357 void do_generation(Generation* gen) { argument 358 gen->adjust_pointers(); 407 void do_generation(Generation* gen) { argument 408 gen->compact();
|
| H A D | genOopClosures.hpp | 72 OopsInGenClosure(Generation* gen); 73 void set_generation(Generation* gen); 79 void set_orig_generation(Generation* gen) { argument 80 _orig_gen = gen; 81 set_generation(gen);
|
| H A D | genOopClosures.inline.hpp | 37 inline OopsInGenClosure::OopsInGenClosure(Generation* gen) : argument 38 OopClosure(gen->ref_processor()), _orig_gen(gen), _rs(NULL) { 39 set_generation(gen); 42 inline void OopsInGenClosure::set_generation(Generation* gen) { argument 43 _gen = gen;
|
| H A D | permGen.cpp | 41 HeapWord* PermGen::request_expand_and_allocate(Generation* gen, size_t size, argument 43 if (gen->capacity() < _capacity_expansion_limit || 45 return gen->expand_and_allocate(size, false); 52 HeapWord* PermGen::mem_allocate_in_gen(size_t size, Generation* gen) { argument 61 if ((obj = gen->allocate(size, false)) != NULL) { 70 obj = request_expand_and_allocate(gen, size, prev_cause);
|
| /openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
| H A D | SF2Instrument.java | 274 for (Map.Entry<Integer, Short> gen : pgenerators.entrySet()) { 276 if (!generators.containsKey(gen.getKey())) 277 val = layerzone.getShort(gen.getKey()); 279 val = generators.get(gen.getKey()); 280 val += gen.getValue(); 281 generators.put(gen.getKey(), val); 906 private short getGeneratorValue(Map<Integer, Short> generators, int gen) { argument 907 if (generators.containsKey(gen)) 908 return generators.get(gen); 909 return SF2Region.getDefaultValue(gen); [all...] |
| /openjdk7/hotspot/src/share/vm/services/ |
| H A D | memoryService.hpp | 80 static void add_generation_memory_pool(Generation* gen, 83 static void add_generation_memory_pool(Generation* gen, argument 85 add_generation_memory_pool(gen, major_mgr, NULL); 93 static void add_psYoung_memory_pool(PSYoungGen* gen, 96 static void add_psOld_memory_pool(PSOldGen* gen, 114 static MemoryPool* add_survivor_spaces(DefNewGeneration* gen, 119 static MemoryPool* add_gen(Generation* gen,
|
| H A D | psMemoryPool.cpp | 37 PSGenerationPool::PSGenerationPool(PSOldGen* gen, argument 41 CollectedMemoryPool(name, type, gen->capacity_in_bytes(), 42 gen->reserved().byte_size(), support_usage_threshold), _gen(gen) { 45 PSGenerationPool::PSGenerationPool(PSPermGen* gen, argument 49 CollectedMemoryPool(name, type, gen->capacity_in_bytes(), 50 gen->reserved().byte_size(), support_usage_threshold), _gen(gen) { 67 EdenMutableSpacePool::EdenMutableSpacePool(PSYoungGen* gen, argument 73 (gen 91 SurvivorMutableSpacePool(PSYoungGen* gen, const char* name, PoolType type, bool support_usage_threshold) argument [all...] |
| /openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/ |
| H A D | AttributesImpl.java | 34 package com.sun.tools.internal.jxc.gen.config;
|
| H A D | Classes.java | 27 package com.sun.tools.internal.jxc.gen.config;
|
| H A D | NGCCEventReceiver.java | 26 package com.sun.tools.internal.jxc.gen.config;
|
| H A D | NGCCEventSource.java | 26 package com.sun.tools.internal.jxc.gen.config;
|
| H A D | NGCCHandler.java | 26 package com.sun.tools.internal.jxc.gen.config;
|
| /openjdk7/jdk/test/java/nio/Buffer/ |
| H A D | genBasic.sh | 28 gen() { function 32 gen byte Byte Byte 33 gen char Char Character 34 gen short Short Short 35 gen int Int Integer 36 gen long Long Long 37 gen float Float Float 38 gen double Double Double
|
| H A D | genCopyDirectMemory.sh | 28 gen() { function 32 gen byte Byte Byte 33 gen char Char Character 34 gen short Short Short 35 gen int Int Integer 36 gen long Long Long 37 gen float Float Float 38 gen double Double Double
|