Home | History | Annotate | Download | only in phone

Lines Matching full:phone

17 package com.android.phone;
38 import com.android.internal.telephony.Phone;
61 private Phone mPhone;
369 * Our own handler to take care of the messages from the phone state changes
408 mPhone = PhoneApp.getInstance().phone;
470 if (mPhone.getPhoneType() == Phone.PHONE_TYPE_CDMA) {
847 * lasts the whole life of the phone process. Instead, maybe look at
935 * Plays the local tone based the phone type.
939 if (phoneType == Phone.PHONE_TYPE_GSM) {
941 } else if (phoneType == Phone.PHONE_TYPE_CDMA) {
944 throw new IllegalStateException("Unexpected phone type: " + phoneType);
949 * Stops the local tone based on the phone type.
953 if (phoneType == Phone.PHONE_TYPE_GSM) {
955 } else if (phoneType == Phone.PHONE_TYPE_CDMA) {
961 throw new IllegalStateException("Unexpected phone type: " + phoneType);