/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...] |
/external/openssl/crypto/rsa/ |
rsa_ameth.c | 273 RSA_PSS_PARAMS *pss; local 281 pss = d2i_RSA_PSS_PARAMS(NULL, &p, plen); 283 if (!pss) 286 if (pss->maskGenAlgorithm) 288 ASN1_TYPE *param = pss->maskGenAlgorithm->parameter; 289 if (OBJ_obj2nid(pss->maskGenAlgorithm->algorithm) == NID_mgf1 298 return pss; 301 static int rsa_pss_param_print(BIO *bp, RSA_PSS_PARAMS *pss, 305 if (!pss) 307 if (BIO_puts(bp, " (INVALID PSS PARAMETERS)\n") <= 0 392 RSA_PSS_PARAMS *pss; local 467 RSA_PSS_PARAMS *pss; local 580 RSA_PSS_PARAMS *pss = NULL; local [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 268 printf( " %6s %6s %6s %6s %6s %s\n", "RSStot", "VSS", "RSS", "PSS", "USS", "Name/PID"); 276 printf("%6dK %6s %6s %6s %6s %s\n", li->total_usage.pss / 1024, "", "", "", "", li->name); 287 mi->usage.pss / 1024, 305 " -p Sort processes by PSS.\n" 307 " (Default sort order is PSS.)\n" 334 (*((struct library_info**)a))->total_usage.pss, 335 (*((struct library_info**)b))->total_usage.pss 349 create_sort(pss, numcmp)
|
/system/extras/procrank/ |
procrank.c | 42 declare_sort(pss); variable 226 printf("%5s %7s %7s %7s %7s %s\n", "PID", "Vss", "Rss", "Pss", "Uss", "cmdline"); 241 total_pss += procs[i]->usage.pss; 248 procs[i]->usage.pss / 1024, 257 procs[i]->usage.pss / 1024, 289 " -p Sort by PSS.\n" 291 " (Default sort order is PSS.)\n" 374 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; 223 printf(" size RSS PSS clean dirty clean dirty "); 251 unsigned pss = 0; local 271 pss += mi->pss; 284 mi->pss, [all...] |
/frameworks/base/core/jni/ |
android_os_Debug.cpp | 83 int pss; member in struct:android::stats_t 126 unsigned size = 0, resident = 0, pss = 0; local 203 } else if (sscanf(line, "Pss: %d kB", &temp) == 1) { 204 pss = temp; 223 stats[whichHeap].pss += pss; 252 stats[HEAP_UNKNOWN].pss += stats[i].pss; 258 env->SetIntField(object, stat_fields[i].pss_field, stats[i].pss); 272 otherArray[j++] = stats[i].pss; 288 jlong pss = 0; local [all...] |
android_util_Process.cpp | 879 // Tally up all of the Pss from the various maps 881 jlong pss = 0; local 884 if (sscanf(line, "Pss: %lld kB", &v) == 1) { 885 pss += v; 891 // Return the Pss value in bytes, not kilobytes 892 return pss * 1024;
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
SysinfoPanel.java | 497 mLabel.setText("PSS in kB"); 548 // Extract pss field from procrank output 549 long pss = Long.parseLong(line.substring(23, 31).trim()); local 552 if (pss > 2000) { 553 mDataset.setValue(cmdline, pss); 555 other += pss; 557 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; 1056 long[] pss = ActivityManagerNative.getDefault() local [all...] |
/frameworks/base/core/java/android/app/ |
ActivityManagerNative.java | 1641 long[] pss = getProcessPss(pids); local [all...] |
/frameworks/base/services/java/com/android/server/am/ |
ActivityManagerService.java | 3604 long[] pss = new long[pids.length]; local 10248 final long pss; field in class:MemItem [all...] |