OLD | NEW |
---|---|
1 { | 1 { |
2 "components": [ | 2 "components": [ |
3 "second", | 3 "second", |
4 "mmap-profiler", | 4 "mmap-profiler", |
5 "mmap-type-profiler", | 5 "mmap-type-profiler", |
6 "mmap-tcmalloc", | 6 "mmap-tcmalloc", |
7 "FROM_HERE_FOR_TOTAL", | 7 "FROM_HERE_FOR_TOTAL", |
8 "mustbezero", | 8 "mustbezero", |
9 "unhooked-absent", | 9 "unhooked-absent", |
10 "unhooked-ashmem-dalvik-heap", | |
11 "unhooked-ashmem-dalvik-LinearAlloc", | |
12 "unhooked-ashmem-dalvik-aux-structure", | |
13 "unhooked-ashmem-dalvik-bitmap", | |
14 "unhooked-ashmem-dalvik-other", | |
15 "unhooked-pvrsrvkm", | |
16 "unhooked-system-dex", | |
17 "unhooked-data-app", | |
18 "unhooked-data-applib", | |
19 "unhooked-data-data", | |
bulach
2013/05/22 15:12:18
small suggestion: rather than all this data-*, I t
| |
20 "unhooked-other-ashmem", | |
10 "unhooked-anonymous", | 21 "unhooked-anonymous", |
11 "unhooked-file-exec", | 22 "unhooked-file-exec", |
12 "unhooked-file-nonexec", | 23 "unhooked-file-nonexec", |
13 "unhooked-stack", | 24 "unhooked-stack", |
14 "unhooked-other", | 25 "unhooked-other", |
15 "no-bucket", | 26 "no-bucket", |
16 "mmap-gpu-transferbuffer", | 27 "mmap-gpu-transferbuffer", |
17 "mmap-gpu-ringbuffer", | 28 "mmap-gpu-ringbuffer", |
18 "mmap-catch-all", | 29 "mmap-catch-all", |
19 "tc-disk_cache-backing", | 30 "tc-disk_cache-backing", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 "name": "mustbezero", | 88 "name": "mustbezero", |
78 "stacktrace": "optional", | 89 "stacktrace": "optional", |
79 "allocator": "optional" | 90 "allocator": "optional" |
80 }, | 91 }, |
81 { | 92 { |
82 "name": "unhooked-absent", | 93 "name": "unhooked-absent", |
83 "stacktrace": "optional", | 94 "stacktrace": "optional", |
84 "allocator": "optional" | 95 "allocator": "optional" |
85 }, | 96 }, |
86 { | 97 { |
98 "name": "unhooked-ashmem-dalvik-heap", | |
99 "mappedfile": "/dev/ashmem/dalvik-heap.*", | |
100 "allocator": "unhooked" | |
101 }, | |
102 { | |
103 "name": "unhooked-ashmem-dalvik-LinearAlloc", | |
104 "mappedfile": "/dev/ashmem/dalvik-LinearAlloc.*", | |
105 "allocator": "unhooked" | |
106 }, | |
107 { | |
108 "name": "unhooked-ashmem-dalvik-aux-structure", | |
109 "mappedfile": "/dev/ashmem/dalvik-aux-structure.*", | |
110 "allocator": "unhooked" | |
111 }, | |
112 { | |
113 "name": "unhooked-ashmem-dalvik-bitmap", | |
114 "mappedfile": "/dev/ashmem/dalvik-bitmap.*", | |
115 "allocator": "unhooked" | |
116 }, | |
117 { | |
118 "name": "unhooked-ashmem-dalvik-other", | |
119 "mappedfile": "/dev/ashmem/dalvik.*", | |
120 "allocator": "unhooked" | |
121 }, | |
122 { | |
123 "name": "unhooked-pvrsrvkm", | |
124 "mappedfile": "/dev/pvrsrvkm.*", | |
125 "allocator": "unhooked" | |
126 }, | |
127 { | |
128 "name": "unhooked-system-dex", | |
129 "mappedfile": "/data/dalvik-cache/system.*.dex.*", | |
130 "allocator": "unhooked" | |
131 }, | |
132 { | |
133 "name": "unhooked-data-app", | |
134 "mappedfile": "/data/app/.*", | |
135 "allocator": "unhooked" | |
136 }, | |
137 { | |
138 "name": "unhooked-data-applib", | |
139 "mappedfile": "/data/app-lib/.*", | |
140 "allocator": "unhooked" | |
141 }, | |
142 { | |
143 "name": "unhooked-data-data", | |
144 "mappedfile": "/data/data/.*", | |
145 "allocator": "unhooked" | |
146 }, | |
147 { | |
148 "name": "unhooked-other-ashmem", | |
149 "mappedfile": "/dev/ashmem/.*", | |
150 "allocator": "unhooked" | |
151 }, | |
152 { | |
87 "name": "unhooked-anonymous", | 153 "name": "unhooked-anonymous", |
88 "stacktrace": "optional", | 154 "mappedfile": "^$", |
89 "allocator": "optional" | 155 "allocator": "unhooked" |
90 }, | 156 }, |
91 { | 157 { |
92 "name": "unhooked-file-exec", | 158 "name": "unhooked-file-exec", |
93 "stacktrace": "optional", | 159 "mappedfile": "^/.*", |
94 "allocator": "optional" | 160 "mappedexecutable": "x", |
161 "allocator": "unhooked" | |
95 }, | 162 }, |
96 { | 163 { |
97 "name": "unhooked-file-nonexec", | 164 "name": "unhooked-file-nonexec", |
98 "stacktrace": "optional", | 165 "mappedfile": "^/.*", |
99 "allocator": "optional" | 166 "allocator": "unhooked" |
100 }, | 167 }, |
101 { | 168 { |
102 "name": "unhooked-stack", | 169 "name": "unhooked-stack", |
103 "stacktrace": "optional", | 170 "mappedfile": ".stack.", |
104 "allocator": "optional" | 171 "allocator": "unhooked" |
105 }, | 172 }, |
106 { | 173 { |
107 "name": "unhooked-other", | 174 "name": "unhooked-other", |
108 "stacktrace": "optional", | 175 "mappedfile": ".*", |
109 "allocator": "optional" | 176 "allocator": "unhooked" |
110 }, | 177 }, |
111 { | 178 { |
112 "name": "mmap-gpu-transferbuffer", | 179 "name": "mmap-gpu-transferbuffer", |
113 "stacktrace": ".*gpu::TransferBufferManager::RegisterTransferBuffer.*", | 180 "stacktrace": ".*gpu::TransferBufferManager::RegisterTransferBuffer.*", |
114 "allocator": "mmap" | 181 "allocator": "mmap" |
115 }, | 182 }, |
116 { | 183 { |
117 "name": "mmap-gpu-ringbuffer", | 184 "name": "mmap-gpu-ringbuffer", |
118 "stacktrace": ".*gpu::CommandBufferHelper::AllocateRingBuffer.*", | 185 "stacktrace": ".*gpu::CommandBufferHelper::AllocateRingBuffer.*", |
119 "allocator": "mmap" | 186 "allocator": "mmap" |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
223 "stacktrace": "optional", | 290 "stacktrace": "optional", |
224 "allocator": "optional" | 291 "allocator": "optional" |
225 }, | 292 }, |
226 { | 293 { |
227 "name": "other", | 294 "name": "other", |
228 "stacktrace": "optional", | 295 "stacktrace": "optional", |
229 "allocator": "optional" | 296 "allocator": "optional" |
230 } | 297 } |
231 ], | 298 ], |
232 "version": "POLICY_DEEP_3" | 299 "version": "POLICY_DEEP_3" |
233 } | 300 } |
OLD | NEW |