Home
last modified time | relevance | path

Searched refs:pss (Results 1 – 25 of 29) sorted by relevance

12

/external/chromium_org/chrome/browser/sync/
Dprofile_sync_components_factory_impl.cc135 ProfileSyncService* pss) { in RegisterDataTypes() argument
136 RegisterCommonDataTypes(pss); in RegisterDataTypes()
138 RegisterDesktopDataTypes(pss); in RegisterDataTypes()
143 ProfileSyncService* pss) { in RegisterCommonDataTypes() argument
147 pss->RegisterDataTypeController( in RegisterCommonDataTypes()
148 new AutofillDataTypeController(this, profile_, pss)); in RegisterCommonDataTypes()
154 pss->RegisterDataTypeController( in RegisterCommonDataTypes()
155 new AutofillProfileDataTypeController(this, profile_, pss)); in RegisterCommonDataTypes()
161 pss->RegisterDataTypeController( in RegisterCommonDataTypes()
162 new BookmarkDataTypeController(this, profile_, pss)); in RegisterCommonDataTypes()
[all …]
Dprofile_sync_components_factory_impl_unittest.cc94 scoped_ptr<ProfileSyncService> pss( in TestSwitchDisablesType() local
102 pss->factory()->RegisterDataTypes(pss.get()); in TestSwitchDisablesType()
104 pss->GetDataTypeControllerStates(&controller_states); in TestSwitchDisablesType()
116 scoped_ptr<ProfileSyncService> pss(new ProfileSyncService( in TEST_F() local
122 pss->factory()->RegisterDataTypes(pss.get()); in TEST_F()
124 pss->GetDataTypeControllerStates(&controller_states); in TEST_F()
Dprofile_sync_service_factory.cc104 ProfileSyncService* pss = new ProfileSyncService( in BuildServiceInstanceFor() local
112 pss->factory()->RegisterDataTypes(pss); in BuildServiceInstanceFor()
113 pss->Initialize(); in BuildServiceInstanceFor()
114 return pss; in BuildServiceInstanceFor()
Dprofile_sync_components_factory_impl.h29 virtual void RegisterDataTypes(ProfileSyncService* pss) OVERRIDE;
76 void RegisterDesktopDataTypes(ProfileSyncService* pss);
78 void RegisterCommonDataTypes(ProfileSyncService* pss);
Dprofile_sync_service_startup_unittest.cc45 ACTION_P(InvokeOnConfigureStart, pss) { in ACTION_P() argument
47 static_cast<ProfileSyncService*>(pss); in ACTION_P()
51 ACTION_P2(InvokeOnConfigureDone, pss, result) { in ACTION_P2() argument
53 static_cast<ProfileSyncService*>(pss); in ACTION_P2()
Dprofile_sync_components_factory.h73 virtual void RegisterDataTypes(ProfileSyncService* pss) = 0;
/external/openssl/crypto/rsa/
Drsa_ameth.c273 RSA_PSS_PARAMS *pss; in rsa_pss_decode() local
281 pss = d2i_RSA_PSS_PARAMS(NULL, &p, plen); in rsa_pss_decode()
283 if (!pss) in rsa_pss_decode()
286 if (pss->maskGenAlgorithm) in rsa_pss_decode()
288 ASN1_TYPE *param = pss->maskGenAlgorithm->parameter; in rsa_pss_decode()
289 if (OBJ_obj2nid(pss->maskGenAlgorithm->algorithm) == NID_mgf1 in rsa_pss_decode()
298 return pss; in rsa_pss_decode()
301 static int rsa_pss_param_print(BIO *bp, RSA_PSS_PARAMS *pss, in rsa_pss_param_print() argument
305 if (!pss) in rsa_pss_param_print()
318 if (pss->hashAlgorithm) in rsa_pss_param_print()
[all …]
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/
Drsa_ameth.c273 RSA_PSS_PARAMS *pss; in rsa_pss_decode() local
281 pss = d2i_RSA_PSS_PARAMS(NULL, &p, plen); in rsa_pss_decode()
283 if (!pss) in rsa_pss_decode()
286 if (pss->maskGenAlgorithm) in rsa_pss_decode()
288 ASN1_TYPE *param = pss->maskGenAlgorithm->parameter; in rsa_pss_decode()
289 if (OBJ_obj2nid(pss->maskGenAlgorithm->algorithm) == NID_mgf1 in rsa_pss_decode()
298 return pss; in rsa_pss_decode()
301 static int rsa_pss_param_print(BIO *bp, RSA_PSS_PARAMS *pss, in rsa_pss_param_print() argument
305 if (!pss) in rsa_pss_param_print()
318 if (pss->hashAlgorithm) in rsa_pss_param_print()
[all …]
/external/chromium/chrome/browser/sync/
Dprofile_sync_factory_impl.cc87 ProfileSyncService* pss = new ProfileSyncService( in CreateProfileSyncService() local
93 pss->RegisterDataTypeController( in CreateProfileSyncService()
94 new AppDataTypeController(this, profile_, pss)); in CreateProfileSyncService()
100 pss->RegisterDataTypeController( in CreateProfileSyncService()
101 new AutofillDataTypeController(this, profile_, pss)); in CreateProfileSyncService()
107 pss->RegisterDataTypeController( in CreateProfileSyncService()
108 new BookmarkDataTypeController(this, profile_, pss)); in CreateProfileSyncService()
114 pss->RegisterDataTypeController( in CreateProfileSyncService()
115 new ExtensionDataTypeController(this, profile_, pss)); in CreateProfileSyncService()
121 pss->RegisterDataTypeController( in CreateProfileSyncService()
[all …]
Dprofile_sync_factory_impl_unittest.cc77 scoped_ptr<ProfileSyncService> pss( in TestSwitchDisablesType() local
80 pss->GetDataTypeControllerStates(&controller_states); in TestSwitchDisablesType()
93 scoped_ptr<ProfileSyncService> pss( in TEST_F() local
96 pss->GetDataTypeControllerStates(&controller_states); in TEST_F()
/external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
Dsigned_in_devices_api.cc53 ProfileSyncService* pss, in GetAllSignedInDevices() argument
55 ScopedVector<DeviceInfo> devices = pss->GetAllSignedInDevices(); in GetAllSignedInDevices()
81 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile); in GetAllSignedInDevices() local
85 pss, in GetAllSignedInDevices()
91 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile); in GetLocalDeviceInfo() local
92 if (!pss) { in GetLocalDeviceInfo()
95 std::string guid = pss->GetLocalSyncCacheGUID(); in GetLocalDeviceInfo()
Dsigned_in_devices_manager.cc52 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile_); in SignedInDevicesChangeObserver() local
53 if (pss) { in SignedInDevicesChangeObserver()
54 pss->AddObserverForDeviceInfoChange(this); in SignedInDevicesChangeObserver()
59 ProfileSyncService* pss = ProfileSyncServiceFactory::GetForProfile(profile_); in ~SignedInDevicesChangeObserver() local
60 if (pss) { in ~SignedInDevicesChangeObserver()
61 pss->RemoveObserverForDeviceInfoChange(this); in ~SignedInDevicesChangeObserver()
Dsigned_in_devices_api.h37 ProfileSyncService* pss,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_dirty_surfaces.h86 …y_surfaces *dss, struct pipe_sampler_view *psv, struct pipe_sampler_state *pss, util_dirty_surface… in util_dirty_surfaces_use_for_sampling_with() argument
89 …util_dirty_surfaces_use_levels_for_sampling(pipe, dss, (unsigned)pss->min_lod + psv->u.tex.first_l… in util_dirty_surfaces_use_for_sampling_with()
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush); in util_dirty_surfaces_use_for_sampling_with()
/external/mesa3d/src/gallium/auxiliary/util/
Du_dirty_surfaces.h86 …y_surfaces *dss, struct pipe_sampler_view *psv, struct pipe_sampler_state *pss, util_dirty_surface… in util_dirty_surfaces_use_for_sampling_with() argument
89 …util_dirty_surfaces_use_levels_for_sampling(pipe, dss, (unsigned)pss->min_lod + psv->u.tex.first_l… in util_dirty_surfaces_use_for_sampling_with()
90 MIN2((unsigned)ceilf(pss->max_lod) + psv->u.tex.first_level, psv->u.tex.last_level), flush); in util_dirty_surfaces_use_for_sampling_with()
/external/mesa3d/src/gallium/drivers/rbug/
Drbug_core.c107 struct pipe_shader_state pss; in rbug_shader_create_locked() local
108 memset(&pss, 0, sizeof(pss)); in rbug_shader_create_locked()
109 pss.tokens = tokens; in rbug_shader_create_locked()
113 state = pipe->create_fs_state(pipe, &pss); in rbug_shader_create_locked()
116 state = pipe->create_vs_state(pipe, &pss); in rbug_shader_create_locked()
119 state = pipe->create_gs_state(pipe, &pss); in rbug_shader_create_locked()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
Drbug_core.c107 struct pipe_shader_state pss; in rbug_shader_create_locked() local
108 memset(&pss, 0, sizeof(pss)); in rbug_shader_create_locked()
109 pss.tokens = tokens; in rbug_shader_create_locked()
113 state = pipe->create_fs_state(pipe, &pss); in rbug_shader_create_locked()
116 state = pipe->create_vs_state(pipe, &pss); in rbug_shader_create_locked()
119 state = pipe->create_gs_state(pipe, &pss); in rbug_shader_create_locked()
/external/chromium_org/third_party/libjingle/source/talk/base/
Dnat_unittest.cc189 scoped_ptr<PhysicalSocketServer> pss(new PhysicalSocketServer()); in TestConnectivity() local
190 scoped_ptr<AsyncSocket> client(pss->CreateAsyncSocket(src.family(), in TestConnectivity()
192 scoped_ptr<AsyncSocket> server(pss->CreateAsyncSocket(src.family(), in TestConnectivity()
/external/chromium_org/content/public/android/java/src/org/chromium/content/common/
DPerfTraceEvent.java290 int pss = memoryInfo.nativePss + memoryInfo.dalvikPss + memoryInfo.otherPss; in savePerfString() local
291 traceObj.put("mem", pss); in savePerfString()
/external/e2fsprogs/debian/attic/libs/
Drules157 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/
Dprocess_metrics_linux.cc311 int pss = 0; in GetWorkingSetKBytesTotmaps() local
316 ret &= StringToInt(totmaps_fields[kPssIndex], &pss); in GetWorkingSetKBytesTotmaps()
325 ws_usage->shared = pss + swap; in GetWorkingSetKBytesTotmaps()
/external/chromium_org/tools/linux/
Dprocfs.py425 def pss(self): member in ProcSmaps.VMA
479 def pss(self): member in ProcSmaps
/external/chromium_org/third_party/icu/source/data/translit/
DKorean_Latin_BGN.txt109 ᆸᄊ → pss ; # HANGUL JONGSEONG PIEUP + CHOSEONG SSANGSIOS
223 ᆲᄊ → pss ; # HANGUL JONGSEONG RIEUL-PIEUP + CHOSEONG SSANGSIOS
/external/icu4c/data/translit/
DKorean_Latin_BGN.txt109 ᆸᄊ → pss ; # HANGUL JONGSEONG PIEUP + CHOSEONG SSANGSIOS
223 ᆲᄊ → pss ; # HANGUL JONGSEONG RIEUL-PIEUP + CHOSEONG SSANGSIOS
/external/openssl/crypto/objects/
Dobj_mac.num435 pss 435

12