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

  /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/third_party/boringssl/src/crypto/evp/
p_rsa_asn1.c 281 RSA_PSS_PARAMS *pss; local
290 pss = d2i_RSA_PSS_PARAMS(NULL, &p, plen);
292 if (!pss) {
296 *pmaskHash = rsa_mgf1_decode(pss->maskGenAlgorithm);
298 return pss;
301 static int rsa_pss_param_print(BIO *bp, RSA_PSS_PARAMS *pss,
305 if (!pss) {
306 if (BIO_puts(bp, " (INVALID PSS PARAMETERS)\n") <= 0) {
318 if (pss->hashAlgorithm) {
319 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0)
388 RSA_PSS_PARAMS *pss; local
530 RSA_PSS_PARAMS *pss = NULL; local
594 RSA_PSS_PARAMS *pss; local
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_components_factory_impl.cc 175 ProfileSyncService* pss) {
180 RegisterCommonDataTypes(disabled_types, enabled_types, pss);
182 RegisterDesktopDataTypes(disabled_types, enabled_types, pss);
189 ProfileSyncService* pss) {
191 pss->RegisterDataTypeController(new DeviceInfoDataTypeController(
195 pss->GetLocalDeviceInfoProvider()));
200 pss->RegisterDataTypeController(
207 pss->RegisterDataTypeController(
214 pss->RegisterDataTypeController(
215 new BookmarkDataTypeController(this, profile_, pss));
    [all...]
profile_sync_service_factory.cc 135 ProfileSyncService* pss = new ProfileSyncService( local
148 pss->factory()->RegisterDataTypes(pss);
149 pss->Initialize();
150 return pss;
profile_sync_components_factory_impl_unittest.cc 109 scoped_ptr<ProfileSyncService> pss(new ProfileSyncService(
121 pss->factory()->RegisterDataTypes(pss.get());
123 pss->GetDataTypeControllerStates(&controller_states);
137 scoped_ptr<ProfileSyncService> pss(new ProfileSyncService(
149 pss->factory()->RegisterDataTypes(pss.get());
151 pss->GetDataTypeControllerStates(&controller_states);
profile_sync_components_factory_impl.h 45 virtual void RegisterDataTypes(ProfileSyncService* pss) OVERRIDE;
88 ProfileSyncService* pss);
94 ProfileSyncService* pss);
profile_sync_components_factory.h 79 virtual void RegisterDataTypes(ProfileSyncService* pss) = 0;
profile_sync_service_startup_unittest.cc 50 ACTION_P(InvokeOnConfigureStart, pss) {
52 static_cast<ProfileSyncService*>(pss);
56 ACTION_P3(InvokeOnConfigureDone, pss, error_callback, result) {
58 static_cast<ProfileSyncService*>(pss);
  /external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
signed_in_devices_manager.cc 46 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile_); local
47 if (pss && pss->GetDeviceInfoTracker()) {
48 pss->GetDeviceInfoTracker()->AddObserver(this);
53 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile_); local
54 if (pss && pss->GetDeviceInfoTracker()) {
55 pss->GetDeviceInfoTracker()->RemoveObserver(this);
signed_in_devices_api.cc 99 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile); local
100 if (!pss) {
104 LocalDeviceInfoProvider* local_device = pss->GetLocalDeviceInfoProvider();
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_exponential_backoff_test.cc 36 explicit ExponentialBackoffChecker(ProfileSyncService* pss)
37 : SingleClientStatusChangeChecker(pss) {
44 // Checks if backoff is complete. Called repeatedly each time PSS notifies
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dirty_surfaces.h 86 util_dirty_surfaces_use_for_sampling_with(struct pipe_context *pipe, struct util_dirty_surfaces *dss, struct pipe_sampler_view *psv, struct pipe_sampler_state *pss, util_dirty_surface_flush_t flush)
89 util_dirty_surfaces_use_levels_for_sampling(pipe, dss, (unsigned)pss->min_lod + psv->u.tex.first_level,
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
  /external/mesa3d/src/gallium/auxiliary/util/
u_dirty_surfaces.h 86 util_dirty_surfaces_use_for_sampling_with(struct pipe_context *pipe, struct util_dirty_surfaces *dss, struct pipe_sampler_view *psv, struct pipe_sampler_state *pss, util_dirty_surface_flush_t flush)
89 util_dirty_surfaces_use_levels_for_sampling(pipe, dss, (unsigned)pss->min_lod + psv->u.tex.first_level,
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush);
  /external/chromium_org/base/android/java/src/org/chromium/base/
PerfTraceEvent.java 299 int pss = memoryInfo.nativePss + memoryInfo.dalvikPss + memoryInfo.otherPss; local
300 traceObj.put("mem", pss);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
rbug_core.c 107 struct pipe_shader_state pss; local
108 memset(&pss, 0, sizeof(pss));
109 pss.tokens = tokens;
113 state = pipe->create_fs_state(pipe, &pss);
116 state = pipe->create_vs_state(pipe, &pss);
119 state = pipe->create_gs_state(pipe, &pss);
  /external/mesa3d/src/gallium/drivers/rbug/
rbug_core.c 107 struct pipe_shader_state pss; local
108 memset(&pss, 0, sizeof(pss));
109 pss.tokens = tokens;
113 state = pipe->create_fs_state(pipe, &pss);
116 state = pipe->create_vs_state(pipe, &pss);
119 state = pipe->create_gs_state(pipe, &pss);
  /external/chromium_org/third_party/webrtc/base/
nat_unittest.cc 173 scoped_ptr<PhysicalSocketServer> pss(new PhysicalSocketServer());
174 scoped_ptr<AsyncSocket> client(pss->CreateAsyncSocket(src.family(),
176 scoped_ptr<AsyncSocket> server(pss->CreateAsyncSocket(src.family(),
  /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 \
  /external/chromium_org/base/process/
process_metrics_linux.cc 295 // Pss: 3335 kB
322 DCHECK_EQ("Pss:", totmaps_fields[kPssIndex-1]);
327 int pss = 0; local
332 ret &= StringToInt(totmaps_fields[kPssIndex], &pss);
341 ws_usage->shared = pss + swap;
  /bionic/tests/
dlext_test.cpp 338 // We expect the sharing to save at least 10% of the total PSS. In practice
359 total_pss += usage.pss;
422 // Sum the PSS of all the children
  /external/chromium_org/tools/linux/
procfs.py 411 'Pss': '_pss',
434 def pss(self): member in class:ProcSmaps.VMA
443 self._pss = total_dct['Pss']
488 def pss(self): member in class:ProcSmaps
  /external/e2fsprogs/debian/
rules 667 DH_OPTIONS= dh_gencontrol -pss-dev \
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 

Completed in 626 milliseconds