Sign in
android
/
platform
/
art
/
9f96aff354
/
.
/
runtime
/
javaheapprof
/
tests
/
query.sql
blob: 7e73a4fea633ee22ea1d2ba19227376b628f9869 [
file
] [
log
] [
blame
]
INCLUDE PERFETTO MODULE android
.
memory
.
heap_profile
.
summary_tree
;
SELECT
name
,
SUM
(
cumulative_alloc_size
)
as
size
FROM
android_heap_profile_summary_tree
WHERE
name
LIKE
'android.test.javaheapprof.JavaHeapProfTest$Allocator.__'
GROUP
BY
name
;