Lines Matching full:accounthandle
600 public void setUserSelectedOutgoingPhoneAccount(PhoneAccountHandle accountHandle) {
603 getTelecomService().setUserSelectedOutgoingPhoneAccount(accountHandle);
840 * @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
842 public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
845 getTelecomService().unregisterPhoneAccount(accountHandle);
973 * @param accountHandle The handle for the account to check the voicemail number against
977 public boolean isVoiceMailNumber(PhoneAccountHandle accountHandle, String number) {
980 return getTelecomService().isVoiceMailNumber(accountHandle, number,
994 * @param accountHandle The handle for the phone account.
999 public String getVoiceMailNumber(PhoneAccountHandle accountHandle) {
1002 return getTelecomService().getVoiceMailNumber(accountHandle,
1016 * @param accountHandle The handle for the account retrieve a number for.
1020 public String getLine1Number(PhoneAccountHandle accountHandle) {
1023 return getTelecomService().getLine1Number(accountHandle,
1292 * @param accountHandle The handle for the account the MMI code should apply to.
1297 public boolean handleMmi(String dialString, PhoneAccountHandle accountHandle) {
1301 return service.handlePinMmiForPhoneAccount(accountHandle, dialString,
1313 * @param accountHandle The handle for the account to derive an adn query URI for or
1319 public Uri getAdnUriForPhoneAccount(PhoneAccountHandle accountHandle) {
1321 if (service != null && accountHandle != null) {
1323 return service.getAdnUriForPhoneAccount(accountHandle, mContext.getOpPackageName());