Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Unified Diff: tools/android/memdump/memreport.py

Issue 23819066: Cleanup metrics in memreport.py. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Marcus' comment Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android/memdump/memreport.py
diff --git a/tools/android/memdump/memreport.py b/tools/android/memdump/memreport.py
index fec213d1c02d8af6e671fc88e1414df9f358bd62..d4d8df5094a5e1c7f10e118889f09705f1b68c05 100755
--- a/tools/android/memdump/memreport.py
+++ b/tools/android/memdump/memreport.py
@@ -27,19 +27,16 @@ _ENTRIES = [
('Read-only', '.* r--. .*'),
('Read-write', '.* rw.. .*'),
('Executable', '.* ..x. .*'),
- ('Anonymous total', '.* .... .* .*other=[0-9]+ ($|.*chromium:.*)'),
- ('Anonymous read-write', '.* rw.. .* .*other=[0-9]+ ($|.*chromium:.*)'),
+ ('Anonymous total', '.* .... .* .*other=[0-9]+ $'),
+ ('Anonymous read-write', '.* rw.. .* .*other=[0-9]+ $'),
('Anonymous executable (JIT\'ed code)', '.* ..x. .* shared_other=[0-9]+ $'),
('File total', '.* .... .* /.*'),
('File read-write', '.* rw.. .* /.*'),
('File executable', '.* ..x. .* /.*'),
- ('chromium mmap', '.* r... .*chromium:.*'),
- ('chromium TransferBuffer', '.* r... .*chromium:.*CreateTransferBuffer.*'),
- ('Galaxy Nexus GL driver', '.* r... .*pvrsrvkm.*'),
+ ('/dev files', '.* r... .* /dev/.*'),
('Dalvik', '.* rw.. .* /.*dalvik.*'),
('Dalvik heap', '.* rw.. .* /.*dalvik-heap.*'),
- ('Native heap (jemalloc)', '.* r... .* /.*jemalloc.*'),
- ('System heap', '.* r... .* \\[heap\\]'),
+ ('Native heap (malloc)', '.* r... .* .*malloc.*'),
('Ashmem', '.* rw.. .* /dev/ashmem .*'),
('libchromeview.so total', '.* r... .* /.*libchromeview.so'),
('libchromeview.so read-only', '.* r--. .* /.*libchromeview.so'),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698