Searched refs:phone (Results 1 - 25 of 68) sorted by relevance

123

/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DCdmaLteServiceStateTracker.java44 public CdmaLteServiceStateTracker(CDMALTEPhone phone) { argument
45 super(phone);
47 mCdmaLtePhone = phone;
76 phone.mIccRecords.registerForRecordsLoaded(this, EVENT_SIM_RECORDS_LOADED, null);
84 phone.prepareEri();
87 CdmaLteUiccRecords sim = (CdmaLteUiccRecords)phone.mIccRecords;
193 int networkMode = android.provider.Settings.Secure.getInt(phone.getContext()
236 int networkMode = android.provider.Settings.Secure.getInt(phone.getContext()
324 && (phone.mDataConnectionTracker instanceof CdmaDataConnectionTracker)) {
326 phone
[all...]
H A DRuimPhoneBookInterfaceManager.java35 public RuimPhoneBookInterfaceManager(CDMAPhone phone) { argument
36 super(phone);
37 adnCache = phone.mIccRecords.getAdnCache();
64 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
H A DCdmaDataConnection.java36 private CdmaDataConnection(CDMAPhone phone, String name, int id, RetryManager rm, argument
38 super(phone, name, id, rm, dct);
44 * @param phone the Phone
49 static CdmaDataConnection makeDataConnection(CDMAPhone phone, int id, RetryManager rm, argument
54 CdmaDataConnection cdmaDc = new CdmaDataConnection(phone, "CdmaDC-" + mCount,
88 phone.mCM.setupDataCall(
106 && !phone.isDnsCheckDisabled()) {
H A DCdmaMmiCode.java55 CDMAPhone phone; field in class:CdmaMmiCode
101 newFromDialString(String dialString, CDMAPhone phone) { argument
109 ret = new CdmaMmiCode(phone);
138 CdmaMmiCode (CDMAPhone phone) { argument
139 super(phone.getHandler().getLooper());
140 this.phone = phone;
141 this.context = phone.getContext();
165 phone.onMMIDone (this);
209 phone
[all...]
H A DRuimCard.java28 RuimCard(CDMAPhone phone, String LOG_TAG, boolean dbg) { argument
29 super(phone, LOG_TAG, dbg);
H A DCdmaLteUiccFileHandler.java30 CdmaLteUiccFileHandler(CDMALTEPhone phone) { argument
31 super(phone);
58 phone.mCM.iccIO(COMMAND_READ_BINARY, fileid, getEFPath(fileid),
H A DRuimFileHandler.java41 RuimFileHandler(CDMAPhone phone) { argument
42 super(phone);
60 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, "img", 0, 0,
H A DRuimRecords.java83 adnCache = new AdnRecordCache(phone);
104 phone.mCM.unregisterForRUIMReady(this);
105 phone.mCM.unregisterForOffOrNotAvailable( this);
106 phone.mCM.unregisterForIccRefresh(this);
238 MccTable.updateMccMncConfiguration(phone, operatorNumeric);
341 phone.mIccCard.broadcastIccStateChangedIntent(
350 phone.mIccCard.broadcastIccStateChangedIntent(
355 phone.mCM.getCDMASubscription(obtainMessage(EVENT_GET_CDMA_SUBSCRIPTION_DONE));
365 phone.mCM.getIMSI(obtainMessage(EVENT_GET_IMSI_DONE));
368 phone
[all...]
H A DCdmaCallTracker.java77 CDMAPhone phone; field in class:CdmaCallTracker
93 CdmaCallTracker(CDMAPhone phone) { argument
94 this.phone = phone;
95 cm = phone.mCM;
194 PhoneNumberUtils.isLocalEmergencyNumber(dialString, phone.getContext());
198 handleEcmTimer(phone.CANCEL_ECM_TIMER);
213 pendingMO = new CdmaConnection(phone.getContext(), dialString, this, foregroundCall);
235 phone.exitEmergencyCallbackMode();
236 phone
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallManager.java100 // default phone as the first phone registered, which is PhoneBase obj
186 * @param phone a Phone object
191 private static Phone getPhoneBase(Phone phone) { argument
192 if (phone instanceof PhoneProxy) {
193 return phone.getForegroundCall().getPhone();
195 return phone;
204 * they have same phone APIs, such as dial(). The real implementation, for
210 * So for phone returned by PhoneFacotry, which is used by PhoneApp,
211 * phone
290 registerPhone(Phone phone) argument
317 unregisterPhone(Phone phone) argument
408 registerForPhoneStates(Phone phone) argument
441 unregisterForPhoneStates(Phone phone) argument
695 dial(Phone phone, String dialString) argument
747 dial(Phone phone, String dialString, UUSInfo uusInfo) argument
770 canDial(Phone phone) argument
854 getPendingMmiCodes(Phone phone) argument
867 sendUssdResponse(Phone phone, String ussdMessge) argument
[all...]
H A DAdnRecordLoader.java32 PhoneBase phone; field in class:AdnRecordLoader
59 public AdnRecordLoader(PhoneBase phone) { argument
62 super(phone.getHandler().getLooper());
64 this.phone = phone;
65 LOG_TAG = phone.getPhoneName();
80 phone.mIccFileHandler.loadEFLinearFixed(
98 phone.mIccFileHandler.loadEFLinearFixedAll(
109 * @param adn is set with alphaTag and phone number
125 phone
[all...]
H A DPhoneFactory.java165 * This function returns the type of the phone, depending
214 Phone phone;
218 phone = new CDMALTEPhone(sContext, sCommandsInterface, sPhoneNotifier);
224 phone = new CDMAPhone(sContext, sCommandsInterface, sPhoneNotifier);
229 return phone;
234 Phone phone = new GSMPhone(sContext, sCommandsInterface, sPhoneNotifier);
235 return phone;
241 * @param sipUri the local SIP URI the phone runs on
H A DIccFileHandler.java93 protected PhoneBase phone; field in class:IccFileHandler
123 protected IccFileHandler(PhoneBase phone) { argument
125 this.phone = phone;
148 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
167 phone.mCM.iccIO(COMMAND_GET_RESPONSE, IccConstants.EF_IMG, "img",
185 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
202 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
220 phone.mCM.iccIO(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
239 phone
[all...]
H A DAdnRecordCache.java36 PhoneBase phone; field in class:AdnRecordCache
59 public AdnRecordCache(PhoneBase phone) { argument
60 this.phone = phone;
61 mUsimPhoneBookManager = new UsimPhoneBookManager(phone, this);
158 new AdnRecordLoader(phone).updateEF(adn, efid, extensionEF,
236 new AdnRecordLoader(phone).updateEF(newAdn, efid, extensionEF,
299 new AdnRecordLoader(phone).loadAllFromEF(efid, extensionEf,
H A DIccPhoneBookInterfaceManager.java36 protected PhoneBase phone; field in class:IccPhoneBookInterfaceManager
104 public IccPhoneBookInterfaceManager(PhoneBase phone) { argument
105 this.phone = phone;
146 if (phone.getContext().checkCallingOrSelfPermission(
177 * phone book or erase/format the whole phonebook. Currently the email field
194 if (phone.getContext().checkCallingOrSelfPermission(
238 if (phone.getContext().checkCallingOrSelfPermission(
282 if (phone.getIccCard().isApplicationOnIcc(IccCardApplication.AppType.APPTYPE_USIM)) {
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSimCard.java32 SimCard(GSMPhone phone) { argument
33 super(phone, "GSM", true);
42 * We have the Sim card for LTE on CDMA phone
44 public SimCard(PhoneBase phone, String logTag, Boolean dbg) { argument
45 super(phone, logTag, dbg);
H A DSimPhoneBookInterfaceManager.java35 public SimPhoneBookInterfaceManager(GSMPhone phone) { argument
36 super(phone);
37 adnCache = phone.mIccRecords.getAdnCache();
64 phone.getIccFileHandler().getEFLinearRecordSize(efid, response);
H A DSIMFileHandler.java39 SIMFileHandler(GSMPhone phone) { argument
40 super(phone);
41 mPhone = phone;
93 // The EFids in USIM phone book entries are decided by the card manufacturer.
95 // the phone book path.
96 IccCard card = phone.getIccCard();
H A DSIMRecords.java177 adnCache = new AdnRecordCache(phone);
201 phone.mCM.unregisterForSIMReady(this);
202 phone.mCM.unregisterForOffOrNotAvailable( this);
203 phone.mCM.unregisterForIccRefresh(this);
226 phone.setSystemProperty(PROPERTY_ICC_OPERATOR_NUMERIC, null);
227 phone.setSystemProperty(PROPERTY_ICC_OPERATOR_ALPHA, null);
228 phone.setSystemProperty(PROPERTY_ICC_OPERATOR_ISO_COUNTRY, null);
282 new AdnRecordLoader(phone).updateEF(adn, EF_MSISDN, EF_EXT1, 1, null,
334 new AdnRecordLoader(phone).updateEF(adn, EF_MBDN, EF_EXT6,
340 new AdnRecordLoader(phone)
[all...]
H A DGsmDataConnection.java42 private GsmDataConnection(PhoneBase phone, String name, int id, RetryManager rm, argument
44 super(phone, name, id, rm, dct);
50 * @param phone the Phone
55 static GsmDataConnection makeDataConnection(PhoneBase phone, int id, RetryManager rm, argument
60 GsmDataConnection gsmDc = new GsmDataConnection(phone, "GsmDC-" + mCount, id, rm, dct);
97 if (phone.getServiceState().getRoaming()) {
103 phone.mCM.setupDataCall(
133 && !phone.isDnsCheckDisabled()) {
H A DGsmMmiCode.java111 GSMPhone phone; field in class:GsmMmiCode
176 newFromDialString(String dialString, GSMPhone phone) { argument
184 ret = new GsmMmiCode(phone);
199 ret = new GsmMmiCode(phone);
201 } else if (isTwoDigitShortCode(phone.getContext(), dialString)) {
204 } else if (isShortCode(dialString, phone)) {
206 ret = new GsmMmiCode(phone);
215 boolean isUssdRequest, GSMPhone phone) {
218 ret = new GsmMmiCode(phone);
234 static GsmMmiCode newFromUssdUserInput(String ussdMessge, GSMPhone phone) { argument
214 newNetworkInitiatedUssd(String ussdMessage, boolean isUssdRequest, GSMPhone phone) argument
386 GsmMmiCode(GSMPhone phone) argument
485 isShortCode(String dialString, GSMPhone phone) argument
527 isShortCodeUSSD(String dialString, GSMPhone phone) argument
[all...]
H A DGsmServiceStateTracker.java74 GSMPhone phone; field in class:GsmServiceStateTracker
186 public GsmServiceStateTracker(GSMPhone phone) { argument
189 this.phone = phone;
190 cm = phone.mCM;
198 (PowerManager)phone.getContext().getSystemService(Context.POWER_SERVICE);
212 phone.getContext().getContentResolver(),
216 cr = phone.getContext().getContentResolver();
230 phone.getContext().registerReceiver(mIntentReceiver, filter);
233 phone
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellLocation.java43 ITelephony phone = ITelephony.Stub.asInterface(ServiceManager.getService("phone"));
44 if (phone != null) {
45 phone.updateServiceLocation();
88 * location, or null for unknown/none phone radio types.
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DCloseDragHandle.java17 package com.android.systemui.statusbar.phone;
H A DTickerView.java17 package com.android.systemui.statusbar.phone;

Completed in 210 milliseconds

123