OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mRunWeight
(Results
1 - 7
of
7
) sorted by null
/packages/apps/Settings/src/com/android/settings/applications/
ProcStatsPackageEntry.java
47
double
mRunWeight
;
68
mRunWeight
= in.readDouble();
89
mRunWeight
= 0;
98
mRunWeight
+= entry.
mRunWeight
;
149
dest.writeDouble(
mRunWeight
);
ProcessStatsPreference.java
44
boolean statsForeground = entry.
mRunWeight
> entry.mBgWeight;
45
double amount = avg ? (statsForeground ? entry.
mRunWeight
: entry.mBgWeight) * weightToRam
ProcStatsEntry.java
51
final double
mRunWeight
;
73
mRunWeight
= mAvgRunMem * (double) mRunDuration;
85
mBgWeight =
mRunWeight
= ((double)memDuration) * mem;
102
mRunWeight
= in.readDouble();
167
if (subProcs.get(0).
mRunWeight
> (subProcs.get(1).
mRunWeight
*3)) {
169
+ subProcs.get(0).mPackage + " weight " + subProcs.get(0).
mRunWeight
171
+ " weight " + subProcs.get(1).
mRunWeight
);
178
double maxWeight = subProcs.get(0).
mRunWeight
;
183
if (subProc.
mRunWeight
< (maxWeight/2))
[
all
...]
ProcessStatsDetail.java
184
boolean statsForeground = mApp.
mRunWeight
> mApp.mBgWeight;
185
double avgRam = (statsForeground ? mApp.
mRunWeight
: mApp.mBgWeight) * mWeightToRam;
223
if (lhs.
mRunWeight
< rhs.
mRunWeight
) {
225
} else if (lhs.
mRunWeight
> rhs.
mRunWeight
) {
252
long memoryUse = Math.max((long) (entry.
mRunWeight
* mWeightToRam),
ProcessStatsUi.java
187
double rhsWeight = Math.max(rhs.
mRunWeight
, rhs.mBgWeight);
188
double lhsWeight = Math.max(lhs.
mRunWeight
, lhs.mBgWeight);
ProcStatsData.java
292
if (ent.
mRunWeight
> 0) {
452
if (lhs.
mRunWeight
< rhs.
mRunWeight
) {
454
} else if (lhs.
mRunWeight
> rhs.
mRunWeight
) {
InstalledAppDetails.java
[
all
...]
Completed in 503 milliseconds