Home | History | Annotate | Download | only in jni

Lines Matching defs:rss

148     int rss;
252 unsigned pss = 0, swappable_pss = 0, rss = 0;
417 } else if (line[0] == 'R' && sscanf(line, "Rss: %d kB", &temp) == 1) {
418 rss = temp;
456 stats[whichHeap].rss += rss;
467 stats[subHeap].rss += rss;
503 stats[HEAP_GRAPHICS].rss = graphics_mem.graphics;
506 stats[HEAP_GL].rss = graphics_mem.gl;
509 stats[HEAP_OTHER_MEMTRACK].rss = graphics_mem.other;
515 stats[HEAP_UNKNOWN].rss += stats[i].rss;
527 env->SetIntField(object, stat_fields[i].rss_field, stats[i].rss);
549 otherArray[j++] = stats[i].rss;
598 jlong rss = 0;
638 if (strncmp(line, "Rss:", 4) == 0) {
643 rss += atoi(c);
672 outUssSwapPssRssArray[2] = rss;