Searched refs:committed (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMemoryUsage.java57 * <td valign=top> <tt>committed</tt> </td>
60 * The amount of committed memory may change over time (increase
62 * the system and <tt>committed</tt> could be less than <tt>init</tt>.
63 * <tt>committed</tt> will always be greater than
72 * The amount of used and committed memory will always be less than
75 * used memory such that <tt>used &gt committed</tt> even
96 * committed
111 private final long committed; field in class:MemoryUsage
121 * @param committed the amount of committed memor
137 MemoryUsage(long init, long used, long committed, long max) argument
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A Dg1MemoryPool.cpp56 size_t committed = _g1mm->eden_space_committed(); local
58 return MemoryUsage(initial_sz, used, committed, max_sz);
72 size_t committed = _g1mm->survivor_space_committed(); local
74 return MemoryUsage(initial_sz, used, committed, max_sz);
88 size_t committed = _g1mm->old_space_committed(); local
90 return MemoryUsage(initial_sz, used, committed, max_sz);
H A DpsMemoryPool.cpp56 size_t committed = _gen->capacity_in_bytes(); local
58 return MemoryUsage(initial_size(), used, committed, maxSize);
81 size_t committed = _space->capacity_in_bytes(); local
83 return MemoryUsage(initial_size(), used, committed, maxSize);
103 size_t committed = committed_in_bytes(); local
104 return MemoryUsage(initial_size(), used, committed, maxSize);
H A DmemoryPool.cpp146 size_t peak_committed = get_max_value(usage.committed(), _peak_usage.committed());
189 size_t committed = _space->capacity();
191 return MemoryUsage(initial_size(), used, committed, maxSize);
206 size_t committed = committed_in_bytes();
208 return MemoryUsage(initial_size(), used, committed, maxSize);
224 size_t committed = _space->capacity();
226 return MemoryUsage(initial_size(), used, committed, maxSize);
240 size_t committed = _gen->capacity();
243 return MemoryUsage(initial_size(), used, committed, maxSiz
[all...]
H A DmemoryUsage.hpp37 // committed - represents the amount of memory (in bytes) that is
39 // The amount of committed memory may change over time (increase
45 // committed memory. Its value may be undefined.
63 size_t committed() const { return _committed; } function in class:VALUE_OBJ_CLASS_SPEC
H A DmemoryManager.cpp246 usage.committed(), usage.max_size());
252 usage.committed(), usage.max_size());
284 usage.committed(), usage.max_size());
290 usage.committed(), usage.max_size());
H A DmemBaseline.hpp86 size_t _committed_amount; // total committed amount
109 inline void inc(size_t reserved, size_t committed) { argument
112 _committed_amount += committed;
378 // total committed memory of specified memory type
401 // total committed memory in snapshot
H A DgcNotifier.cpp123 MemoryUsage usage(u.init_size(), u.used(), u.committed(), (size_t)-1);
H A Dmanagement.cpp852 total_committed += u.committed();
2092 MemoryUsage usage(u.init_size(), u.used(), u.committed(), (size_t)-1);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1MonitoringSupport.cpp64 size_t committed = local
66 _current_size->set_value(committed);
70 size_t committed = local
72 _current_size->set_value(committed);
196 // First calculate the committed sizes that can be calculated independently.
200 // Next, start with the overall committed size.
202 size_t committed = _overall_committed; local
204 // Remove the committed size we have calculated so far (for the
206 assert(committed >= (_survivor_committed + _old_committed), "sanity");
207 committed
[all...]
H A DconcurrentMark.cpp608 MemRegion committed = _g1h->g1_committed();
609 assert(committed.start() == _heap_start, "start shouldn't change");
610 HeapWord* new_end = committed.end();
627 MemRegion committed = _g1h->g1_committed(); local
628 _heap_start = committed.start();
629 _heap_end = committed.end();
4409 G1PPRL_SUM_ADDR_FORMAT("committed")
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DadjoiningGenerations.cpp251 // Expand only if the entire generation is already committed.
273 // Expand only if the entire generation is already committed.
276 const size_t committed = young_gen()->virtual_space()->committed_size(); local
277 if (desired_size > committed) {
278 request_young_gen_expansion(desired_size - committed);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMemoryTab.java63 private static final String committedKey = "committed";
251 private long[] used, committed, max, threshold;
273 committed = new long[n];
313 committed[i] = mu.getCommitted();
353 plotter.addValues(timeStamp, used[i], committed[i], max[i], threshold[i]);
360 plotter.addValues(timeStamp, used[i], committed[i], max[i]);
365 overviewPanel.updateMemoryInfo(used[i], committed[i], max[i]);
393 long committed = plotter.getLastValue(committedKey);
398 if (committed > 0L) {
399 text += newRow(Messages.COMMITTED, formatKBytes(committed));
760 updateMemoryInfo(long used, long committed, long max) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java147 * reaches the text component as committed text within an {@link
150 * <code>keyTyped</code> key events and committed text in input method events.
192 * components, the committed text is converted to keyTyped key events
4580 String committed;
4584 committed = getText(beginIndex, endIndex - beginIndex);
4587 committed = getText(beginIndex, firstPartLength) +
4591 committed = getText(beginIndex + (composedEndIndex - composedStartIndex),
4597 return new AttributedString(committed).getIterator();
4707 // committed text into the document.
4732 // committed tex
[all...]

Completed in 299 milliseconds