Home | History | Annotate | Download | only in jni

Lines Matching refs:pss

80     int pss;
123 unsigned size = 0, resident = 0, pss = 0;
200 } else if (sscanf(line, "Pss: %d kB", &temp) == 1) {
201 pss = temp;
220 stats[whichHeap].pss += pss;
249 stats[HEAP_UNKNOWN].pss += stats[i].pss;
255 env->SetIntField(object, stat_fields[i].pss_field, stats[i].pss);
269 otherArray[j++] = stats[i].pss;
285 jlong pss = 0;
300 if (sscanf(line, "Pss: %d kB", &temp) == 1) {
301 pss += temp;
307 return pss;