Searched defs:profileId (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DProfileService.java204 int profileId, int newState, int prevState) {
207 svc.onProfileConnectionStateChanged(device, profileId, newState, prevState);
203 notifyProfileConnectionStateChanged(BluetoothDevice device, int profileId, int newState, int prevState) argument
H A DAdapterService.java186 public void onProfileConnectionStateChanged(BluetoothDevice device, int profileId, int newState, int prevState) { argument
189 m.arg1 = profileId;
240 private void processProfileStateChanged(BluetoothDevice device, int profileId, int newState, int prevState) { argument
241 if (((profileId == BluetoothProfile.A2DP) ||(profileId == BluetoothProfile.HEADSET)) &&
245 setProfileAutoConnectionPriority(device, profileId);
250 binder.sendConnectionStateChange(device, profileId, newState,prevState);
1387 void setProfileAutoConnectionPriority (BluetoothDevice device, int profileId){ argument
1388 if (profileId == BluetoothProfile.HEADSET) {
1397 else if (profileId
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DDeviceAdminSettings.java104 final int profileId = profiles.get(i).getIdentifier();
105 mProfileOwnerComponents.put(profileId, mDPM.getProfileOwnerAsUser(profileId));
120 final int profileId = profiles.get(i).getIdentifier();
121 updateAvailableAdminsForProfile(profileId);
346 * @param profileId the profile identifier.
348 private void updateAvailableAdminsForProfile(final int profileId) { argument
354 List<ComponentName> activeAdminsListForProfile = mDPM.getActiveAdminsAsUser(profileId);
355 addActiveAdminsForProfile(activeAdminsListForProfile, profileId);
358 addDeviceAdminBroadcastReceiversForProfile(activeAdminsListForProfile, profileId);
371 addDeviceAdminBroadcastReceiversForProfile( Collection<ComponentName> alreadyAddedComponents, final int profileId) argument
411 addActiveAdminsForProfile(final List<ComponentName> activeAdmins, final int profileId) argument
[all...]
H A DTrustedCredentialsSettings.java430 int profileId = profile.getIdentifier();
434 mKeyChainConnectionByProfileId.put(profileId, keyChainConnection);
438 aliasesByProfileId.put(profileId, aliases);
442 int profileId = profile.getIdentifier();
443 List<ParcelableString> aliases = aliasesByProfileId.get(profileId);
444 IKeyChainService service = mKeyChainConnectionByProfileId.get(profileId)
454 mTab, alias, cert, profileId));
458 certHoldersByProfile.put(profileId, certHolders);
518 int profileId) {
519 mProfileId = profileId;
513 CertHolder(IKeyChainService service, TrustedCertificateAdapterCommons adapter, Tab tab, String alias, X509Certificate x509Cert, int profileId) argument
[all...]

Completed in 123 milliseconds