/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ |
RSA.java | 30 // provider.addAlgorithm("AlgorithmParameters.PSS", PREFIX + "AlgorithmParametersSpi$PSS"); 32 // provider.addAlgorithm("Alg.Alias.AlgorithmParameters.RSAPSS", "PSS"); 33 // provider.addAlgorithm("Alg.Alias.AlgorithmParameters.RSASSA-PSS", "PSS"); 35 // provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA224withRSA/PSS", "PSS"); 36 // provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA256withRSA/PSS", "PSS"); 37 // provider.addAlgorithm("Alg.Alias.AlgorithmParameters.SHA384withRSA/PSS", "PSS") [all...] |
/external/chromium_org/third_party/openssl/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...] |
/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...] |
/external/chromium_org/chrome/browser/sync/ |
profile_sync_components_factory_impl.cc | 126 ProfileSyncService* pss) { 127 RegisterCommonDataTypes(pss); 129 RegisterDesktopDataTypes(pss); 134 ProfileSyncService* pss) { 138 pss->RegisterDataTypeController( 139 new AutofillDataTypeController(this, profile_, pss)); 145 pss->RegisterDataTypeController( 146 new AutofillProfileDataTypeController(this, profile_, pss)); 152 pss->RegisterDataTypeController( 153 new BookmarkDataTypeController(this, profile_, pss)); [all...] |
sync_startup_tracker_unittest.cc | 105 // Non-initialized PSS should result in no callbacks to the observer. 111 // Now, mark the PSS as initialized. 118 // Non-initialized PSS should result in no callbacks to the observer. 126 // Now, mark the PSS as having an auth error. 138 // Non-initialized PSS should result in no callbacks to the observer. 146 // Now, mark the PSS as having an unrecoverable error.
|
profile_sync_components_factory_impl_unittest.cc | 91 scoped_ptr<ProfileSyncService> pss( 98 pss->factory()->RegisterDataTypes(pss.get()); 100 pss->GetDataTypeControllerStates(&controller_states); 112 scoped_ptr<ProfileSyncService> pss( 119 pss->factory()->RegisterDataTypes(pss.get()); 121 pss->GetDataTypeControllerStates(&controller_states);
|
profile_sync_service_factory.cc | 103 ProfileSyncService* pss = new ProfileSyncService( local 110 pss->factory()->RegisterDataTypes(pss); 111 pss->Initialize(); 112 return pss;
|
profile_sync_components_factory_impl.h | 29 virtual void RegisterDataTypes(ProfileSyncService* pss) OVERRIDE; 71 void RegisterDesktopDataTypes(ProfileSyncService* pss); 73 void RegisterCommonDataTypes(ProfileSyncService* pss);
|
/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/libpagemap/ |
pm_memusage.c | 20 mu->vss = mu->rss = mu->pss = mu->uss = mu->swap = 0; 26 a->pss += b->pss;
|
/frameworks/base/core/jni/ |
android_os_Debug.cpp | 112 int pss; member in struct:android::stats_t 153 // Container used to retrieve graphics memory pss 174 ssize_t pss = memtrack_proc_graphics_pss(p); local 175 if (pss < 0) { 176 ALOGW("failed to get graphics pss: %d", pss); 177 return pss; 179 graphics_mem->graphics = pss / 1024; 181 pss = memtrack_proc_gl_pss(p); 182 if (pss < 0) 224 unsigned size = 0, resident = 0, pss = 0, swappable_pss = 0; local 492 jlong pss = 0; local [all...] |
/external/chromium_org/crypto/ |
signature_verifier.h | 43 // NOTE: for RSA-PSS signatures, use VerifyInitRSAPSS instead. 69 // Initiates a RSA-PSS signature verification operation. This should be 72 // The RSA-PSS signature algorithm parameters are specified with the 75 // An RSA-PSS signature is a nonnegative integer encoded as a byte string 132 // Used for all signature types except RSA-PSS. 135 // Used for RSA-PSS signatures.
|
/external/chromium_org/chrome/browser/extensions/api/signedin_devices/ |
signedin_devices_api.cc | 52 ProfileSyncService* pss, 54 ScopedVector<DeviceInfo> devices = pss->GetAllSignedInDevices(); 80 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile); local 84 pss,
|
signedin_devices_api.h | 36 ProfileSyncService* pss,
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
AlgorithmParametersSpi.java | 159 public static class PSS 165 * Return the PKCS#1 ASN.1 structure RSASSA-PSS-params. 205 throw new InvalidParameterSpecException("unknown parameter spec passed to PSS parameters object."); 214 throw new InvalidParameterSpecException("PSSParameterSpec required to initialise an PSS algorithm parameters object"); 237 throw new IOException("Not a valid PSS Parameter encoding."); 241 throw new IOException("Not a valid PSS Parameter encoding."); 262 return "PSS Parameters";
|
/system/extras/memtrack/ |
memtrack.h | 34 // Get the PSS information from the file data. If there are no more 35 // PSS values to be found, return false. 36 bool getPss(size_t *pss);
|
/external/chromium_org/third_party/openssl/openssl/crypto/objects/ |
obj_xref.txt | 16 # For PSS the digest algorithm can vary and depends on the included
|
/external/openssl/crypto/objects/ |
obj_xref.txt | 16 # For PSS the digest algorithm can vary and depends on the included
|
/frameworks/base/services/java/com/android/server/am/ |
ProcessMemInfo.java | 26 long pss; field in class:ProcessMemInfo
|
/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 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...] |
/system/extras/librank/ |
librank.c | 62 declare_sort(pss); variable 245 {"pss", 0, 0, 'p'}, 378 printf(" %6s %6s %6s %6s %6s ", "RSStot", "VSS", "RSS", "PSS", "USS"); 392 printf("%6dK %6s %6s %6s %6s ", li->total_usage.pss / 1024, "", "", "", ""); 407 mi->usage.pss / 1024, 429 " -p Sort processes by PSS.\n" 432 " (Default sort order is PSS.)\n" 464 (*((struct library_info**)a))->total_usage.pss, 465 (*((struct library_info**)b))->total_usage.pss 479 create_sort(pss, numcmp [all...] |
/frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/ |
MemoryUsageTest.java | 44 * reports the total PSS in kilobytes of each processes. 171 int pss = 0; local 175 pss = getPss(processName); 176 Log.i(TAG, appName + "=" + pss); 177 if (pss < 0) { 181 pssData.add(pss); 183 results.putInt(mNameToResultKey.get(appName), pss); local
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
MemoryTracker.java | 45 public long[] pss = new long[256]; field in class:MemoryTracker.ProcessMemInfo 138 info.head = (info.head+1) % info.pss.length; 139 info.pss[info.head] = info.currentPss = dinfo.getTotalPss(); 143 // Log.v(TAG, "update: pid " + pid + " pss=" + info.currentPss + " uss=" + info.currentUss); 145 Log.v(TAG, "update: pid " + pid + " has pss=0, it probably died");
|