OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:methodStats
(Results
1 - 3
of
3
) sorted by null
/dalvik/vm/compiler/
InlineTransformation.cpp
234
CompilerMethodStats *
methodStats
=
238
if (
methodStats
->attributes & METHOD_IS_EMPTY) {
249
if (
methodStats
->attributes & METHOD_IS_GETTER) {
252
} else if (
methodStats
->attributes & METHOD_IS_SETTER) {
282
CompilerMethodStats *
methodStats
=
286
if (
methodStats
->attributes & METHOD_IS_EMPTY) {
291
if (
methodStats
->attributes & METHOD_IS_GETTER) {
294
} else if (
methodStats
->attributes & METHOD_IS_SETTER) {
362
CompilerMethodStats *
methodStats
=
364
if ((
methodStats
->attributes & METHOD_IS_LEAF) &
[
all
...]
Utility.cpp
208
CompilerMethodStats *
methodStats
=
213
totalStats->dalvikSize +=
methodStats
->dalvikSize;
214
totalStats->compiledDalvikSize +=
methodStats
->compiledDalvikSize;
215
totalStats->nativeSize +=
methodStats
->nativeSize;
219
int limit = (
methodStats
->dalvikSize >> 2) * 3;
222
if (
methodStats
->compiledDalvikSize >= limit) {
224
methodStats
->method->clazz->descriptor,
225
methodStats
->method->name,
226
methodStats
->compiledDalvikSize,
227
methodStats
->dalvikSize
[
all
...]
Frontend.cpp
[
all
...]
Completed in 32 milliseconds