/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...] |
/system/extras/libpagemap/include/pagemap/ |
pagemap.h | 30 size_t pss; member in struct:pm_memusage
|
/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)
|
/system/extras/procrank/ |
procrank.c | 42 declare_sort(pss); variable 219 printf("%5s %7s %7s %7s %7s %s\n", "PID", "Vss", "Rss", "Pss", "Uss", "cmdline"); 234 total_pss += procs[i]->usage.pss; 241 procs[i]->usage.pss / 1024, 250 procs[i]->usage.pss / 1024, 282 " -p Sort by PSS.\n" 284 " (Default sort order is PSS.)\n" 367 create_sort(pss, numcmp)
|
/system/extras/showmap/ |
showmap.c | 20 unsigned pss; member in struct:mapinfo 99 } else if (!strcmp(field, "Pss:")) { 100 mi->pss = size; 135 current->pss += map->pss; 221 unsigned pss = 0; local 237 printf("size RSS PSS clean dirty clean dirty object\n"); 252 pss += mi->pss; 264 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;
|
/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;
|
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningState.java | 405 boolean updateSize(Context context, long pss, int curSeq) { 406 mSize = pss * 1024; 1054 long[] pss = ActivityManagerNative.getDefault() local [all...] |
/frameworks/base/core/java/android/app/ |
ActivityManagerNative.java | 1538 long[] pss = getProcessPss(pids); local [all...] |
/frameworks/base/services/java/com/android/server/am/ |
ActivityManagerService.java | 3248 long[] pss = new long[pids.length]; local 9184 final long pss; field in class:ActivityManagerService.MemItem [all...] |