HomeSort by relevance Sort by last modified time
    Searched refs:committed (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/chromium/chrome/browser/
memory_details.h 27 // The committed bytes.
28 base::CommittedKBytes committed; member in struct:ProcessMemoryInformation
memory_details_mac.cc 165 process_info.GetCommittedKBytesOfPID(info.pid, &info.committed);
223 process_info.GetCommittedKBytesOfPID(info.pid, &info.committed);
browser_about_handler.cc     [all...]
memory_details_win.cc 116 metrics->GetCommittedKBytes(&info.committed);
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
policies.py 10 from lib.bucket import BUCKET_ID, COMMITTED
188 sizes[component_match] += int(words[COMMITTED])
192 sizes['tc-total-log'] += int(words[COMMITTED])
194 sizes['other-total-log'] += int(words[COMMITTED])
219 committed = 0
220 if 'committed' in value[1]:
221 committed = value[1]['committed']
222 global_stats['total'] += committed
234 global_stats[key] += committed
    [all...]
expand.py 8 from lib.bucket import BUCKET_ID, COMMITTED, ALLOC_COUNT, FREE_COUNT
61 def _add_size(precedence, bucket, depth, committed, sizes):
71 sizes[stacktrace_sequence] += committed
96 int(words[COMMITTED]), sizes)
104 region[1]['committed'], sizes)
  /external/chromium_org/content/test/data/indexeddb/
transaction_get_test.js 8 debug("Accessing a committed transaction should throw");
version_change_crash.js 63 // Validate that Part 2 never committed
  /external/chromium_org/chrome/browser/
memory_details.h 48 // The committed bytes.
49 base::CommittedKBytes committed; member in struct:ProcessMemoryInformation
memory_details_mac.cc 177 process_info.GetCommittedKBytesOfPID(info.pid, &info.committed);
235 process_info.GetCommittedKBytesOfPID(info.pid, &info.committed);
memory_details_win.cc 118 metrics->GetCommittedKBytes(&info.committed);
  /external/chromium_org/third_party/jemalloc/chromium/
jemalloc.h 78 size_t mapped; /* Bytes mapped (not necessarily committed). */
79 size_t committed; /* Bytes committed (readable/writable). */ member in struct:__anon13636
81 size_t dirty; /* Bytes dirty (committed unused pages). */
  /external/chromium_org/third_party/jemalloc/vendor/
jemalloc.h 78 size_t mapped; /* Bytes mapped (not necessarily committed). */
79 size_t committed; /* Bytes committed (readable/writable). */ member in struct:__anon13642
81 size_t dirty; /* Bytes dirty (committed unused pages). */
  /external/chromium_org/tools/deep_memory_profiler/lib/
sorter.py 48 def __init__(self, unit_id, committed, reserved, mmap, region,
50 super(VMUnit, self).__init__(unit_id, committed)
58 def committed(self): member in class:VMUnit
84 def __init__(self, unit_id, committed, reserved, region, bucket_set,
86 super(MMapUnit, self).__init__(unit_id, committed, reserved, True,
100 def __init__(self, unit_id, committed, reserved, region,
102 super(UnhookedUnit, self).__init__(unit_id, committed, reserved, False,
  /external/chromium_org/third_party/tcmalloc/chromium/src/
deep-heap-profile.cc 55 static const char kCommittedLabel[] = "committed";
237 // Check if the page is committed.
342 // Reset committed sizes of buckets.
345 // Record committed sizes.
742 uint64 committed; local
744 committed = memory_residence_info_getter->CommittedSize(first_address,
747 committed_bytes_ += committed;
748 return committed;
959 // The total committed memory usage in all_ (from /proc/<pid>/maps) is
960 // sometimes smaller than the sum of the committed mmap'ed addresses an
1049 size_t committed = deep_profile->memory_residence_info_getter_->CommittedSize( local
1068 size_t committed = deep_profile->memory_residence_info_getter_-> local
    [all...]
  /external/chromium/chrome/browser/renderer_host/
gtk_im_context_wrapper.cc 341 // To prevent any text from being committed when resetting the |context_|;
364 // committed, then the character will be send to webkit as a Char event
367 // can always be committed as confirmed composition text.
421 bool committed = false;
440 committed = true;
452 // If a text has been committed, then we don't need to send the empty
466 } else if (!committed) {
501 // In this case, the text must be committed directly.
  /external/chromium_org/content/browser/indexed_db/
indexed_db_transaction.cc 222 bool committed = unused || transaction_.Commit(); local
237 if (committed) {
283 // If there are no pending tasks, we haven't already committed/aborted,
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoader.h 113 void setCommitted(bool committed) { m_committed = committed; }
  /external/chromium_org/chrome/browser/ui/webui/
about_ui.cc     [all...]
  /external/chromium_org/content/browser/renderer_host/
gtk_im_context_wrapper.cc 337 // To prevent any text from being committed when resetting the |context_|;
360 // committed, then the character will be send to webkit as a Char event
363 // can always be committed as confirmed composition text.
418 bool committed = false;
437 committed = true;
450 // If a text has been committed, then we don't need to send the empty
464 } else if (!committed) {
500 // In this case, the text must be committed directly.
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
LoginModuleUtilsTest.java 120 status.committed();
  /external/skia/tools/
compare_baselines.py 3 committed to the Skia repository.
47 committed to the Skia repository. Relies on skdiff to do the low-level
134 committed to the Skia repository.
  /external/chromium_org/third_party/mesa/src/docs/
MESA_swap_frame_usage.spec 113 between two buffer-swap operations being committed. In unextended GLX the
122 the swap is committed before target_msc, and is greater than or equal to
155 number of swaps that have been committed. This value may not match the
  /external/mesa3d/docs/
MESA_swap_frame_usage.spec 113 between two buffer-swap operations being committed. In unextended GLX the
122 the swap is committed before target_msc, and is greater than or equal to
155 number of swaps that have been committed. This value may not match the
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 156 * a sequence number each time an edit is committed. A snapshot is stale if
721 private boolean committed; field in class:DiskLruCache.Editor
729 * Returns an unbuffered input stream to read the last committed value,
730 * or null if no value has been committed.
749 * Returns the last committed value as a string, or null if no value
750 * has been committed.
812 committed = true;
824 if (!committed) {
883 /** The sequence number of the most recently committed edit to this entry. */

Completed in 350 milliseconds

1 2 3 4