HomeSort by relevance Sort by last modified time
    Searched refs:pss (Results 1 - 17 of 17) sorted by null

  /system/extras/libpagemap/
pm_memusage.c 20 mu->vss = mu->rss = mu->pss = mu->uss = 0;
26 a->pss += b->pss;
pm_map.c 56 usage.pss += (count >= 1) ? (map->proc->ker->pagesize / count) : (0);
103 ws.pss += (count >= 1) ? (map->proc->ker->pagesize / count) : (0);
  /external/chromium/chrome/browser/sync/
profile_sync_factory_impl.cc 87 ProfileSyncService* pss = new ProfileSyncService( local
93 pss->RegisterDataTypeController(
94 new AppDataTypeController(this, profile_, pss));
100 pss->RegisterDataTypeController(
101 new AutofillDataTypeController(this, profile_, pss));
107 pss->RegisterDataTypeController(
108 new BookmarkDataTypeController(this, profile_, pss));
114 pss->RegisterDataTypeController(
115 new ExtensionDataTypeController(this, profile_, pss));
121 pss->RegisterDataTypeController
    [all...]
profile_sync_factory_impl_unittest.cc 77 scoped_ptr<ProfileSyncService> pss(
80 pss->GetDataTypeControllerStates(&controller_states);
93 scoped_ptr<ProfileSyncService> pss(
96 pss->GetDataTypeControllerStates(&controller_states);
  /system/extras/procmem/
procmem.c 38 /* qsort compare function to compare maps by PSS */
148 "Vss", "Rss", "Pss", "Uss", "ShCl", "ShDi", "PrCl", "PrDi", "Name");
247 (long)mi->usage.pss / 1024,
259 (long)mi->usage.pss / 1024,
276 (long)total_usage.pss / 1024,
290 (long)total_usage.pss / 1024,
307 " -p Sort by PSS.\n"
319 if (mb->usage.pss < ma->usage.pss) return -1;
320 if (mb->usage.pss > ma->usage.pss) return 1
    [all...]
  /system/extras/showmap/
showmap.c 20 unsigned pss; member in struct:mapinfo
101 } else if (!strcmp(field, "Pss:")) {
102 mi->pss = size;
137 current->pss += map->pss;
225 printf(" size RSS PSS clean dirty clean dirty ");
253 unsigned pss = 0; local
273 pss += mi->pss;
286 mi->pss,
    [all...]
  /frameworks/base/core/jni/
android_os_Debug.cpp 80 int pss; member in struct:android::stats_t
123 unsigned size = 0, resident = 0, pss = 0; local
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; local
    [all...]
android_util_Process.cpp 832 // Tally up all of the Pss from the various maps
834 jlong pss = 0; local
837 if (sscanf(line, "Pss: %lld kB", &v) == 1) {
838 pss += v;
844 // Return the Pss value in bytes, not kilobytes
845 return pss * 1024;
  /system/extras/procrank/
procrank.c 42 declare_sort(pss); variable
225 printf("%5s %7s %7s %7s %7s %s\n", "PID", "Vss", "Rss", "Pss", "Uss", "cmdline");
240 total_pss += procs[i]->usage.pss;
247 procs[i]->usage.pss / 1024,
256 procs[i]->usage.pss / 1024,
288 " -p Sort by PSS.\n"
290 " (Default sort order is PSS.)\n"
373 create_sort(pss, numcmp)
  /system/extras/librank/
librank.c 60 declare_sort(pss); variable
267 printf( " %6s %6s %6s %6s %6s %s\n", "RSStot", "VSS", "RSS", "PSS", "USS", "Name/PID");
275 printf("%6dK %6s %6s %6s %6s %s\n", li->total_usage.pss / 1024, "", "", "", "", li->name);
286 mi->usage.pss / 1024,
304 " -p Sort processes by PSS.\n"
306 " (Default sort order is PSS.)\n"
333 (*((struct library_info**)a))->total_usage.pss,
334 (*((struct library_info**)b))->total_usage.pss
348 create_sort(pss, numcmp)
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SysinfoPanel.java 493 mLabel.setText("PSS in kB");
544 // Extract pss field from procrank output
545 long pss = Long.parseLong(line.substring(23, 31).trim()); local
548 if (pss > 2000) {
549 mDataset.setValue(cmdline, pss);
551 other += pss;
553 total -= pss;
  /system/extras/libpagemap/include/pagemap/
pagemap.h 30 size_t pss; member in struct:pm_memusage
  /external/e2fsprogs/debian/attic/libs/
rules 157 dh_installchangelogs -pe2fslibsg -pcomerr$(COMERR_MAJOR)g -pss$(SS_MAJOR)g ChangeLog
173 dh_gencontrol -u '-isp' -pss$(SS_MAJOR)g -pssg-dev \
  /packages/apps/Settings/src/com/android/settings/applications/
RunningState.java 405 boolean updateSize(Context context, long pss, int curSeq) {
406 mSize = pss * 1024;
1056 long[] pss = ActivityManagerNative.getDefault() local
    [all...]
  /external/e2fsprogs/debian/
rules 574 DH_OPTIONS= dh_gencontrol -pss-dev \
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java 3477 long[] pss = new long[pids.length]; local
9696 final long pss; field in class:ActivityManagerService.MemItem
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManagerNative.java 1545 long[] pss = getProcessPss(pids); local
    [all...]

Completed in 454 milliseconds