Home
last modified time | relevance | path

Searched refs:mFh (Results 1 – 9 of 9) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DSIMRecords.java191 mAdnCache = new AdnRecordCache(mFh); in SIMRecords()
321 new AdnRecordLoader(mFh).updateEF(adn, EF_MSISDN, getExtFromEf(EF_MSISDN), 1, null, in setMsisdnNumber()
377 new AdnRecordLoader(mFh).updateEF(adn, EF_MBDN, EF_EXT6, in setVoiceMailNumber()
383 new AdnRecordLoader(mFh).updateEF(adn, EF_MAILBOX_CPHS, in setVoiceMailNumber()
432 mFh.updateEFLinearFixed( in setVoiceMessageWaiting()
441 mFh.updateEFTransparent( in setVoiceMessageWaiting()
547 mFh.updateEFLinearFixed( in setVoiceCallForwardingFlag()
564 mFh.updateEFTransparent( in setVoiceCallForwardingFlag()
673 new AdnRecordLoader(mFh).loadFromEF(EF_MBDN, EF_EXT6, in handleMessage()
678 new AdnRecordLoader(mFh).loadFromEF(EF_MAILBOX_CPHS, in handleMessage()
[all …]
DAdnRecordLoader.java36 private IccFileHandler mFh; field in AdnRecordLoader
68 mFh = fh; in AdnRecordLoader()
93 mFh.loadEFLinearFixed( in loadFromEF()
114 mFh.loadEFLinearFixedAll( in loadAllFromEF()
141 mFh.getEFLinearRecordSize( ef, getEFPath(ef), in updateEF()
184 mFh.updateEFLinearFixed(mEf, getEFPath(mEf), mRecordNumber, in handleMessage()
224 mFh.loadEFLinearFixed( in handleMessage()
281 mFh.loadEFLinearFixed( in handleMessage()
DIsimUiccRecords.java128 mFh.loadEFTransparent(EF_IMPI, obtainMessage( in fetchIsimRecords()
132 mFh.loadEFLinearFixedAll(EF_IMPU, obtainMessage( in fetchIsimRecords()
136 mFh.loadEFTransparent(EF_DOMAIN, obtainMessage( in fetchIsimRecords()
139 mFh.loadEFTransparent(EF_IST, obtainMessage( in fetchIsimRecords()
142 mFh.loadEFLinearFixedAll(EF_PCSCF, obtainMessage( in fetchIsimRecords()
293 mFh.loadEFTransparent(EF_IMPI, obtainMessage( in handleFileUpdate()
299 mFh.loadEFLinearFixedAll(EF_IMPU, obtainMessage( in handleFileUpdate()
305 mFh.loadEFTransparent(EF_DOMAIN, obtainMessage( in handleFileUpdate()
311 mFh.loadEFTransparent(EF_IST, obtainMessage( in handleFileUpdate()
317 mFh.loadEFLinearFixedAll(EF_PCSCF, obtainMessage( in handleFileUpdate()
DAdnRecordCache.java37 private IccFileHandler mFh; field in AdnRecordCache
64 mFh = fh; in AdnRecordCache()
65 mUsimPhoneBookManager = new UsimPhoneBookManager(mFh, this); in AdnRecordCache()
169 new AdnRecordLoader(mFh).updateEF(adn, efid, extensionEF, in updateAdnByIndex()
250 new AdnRecordLoader(mFh).updateEF(newAdn, efid, extensionEF, in updateAdnBySearch()
314 new AdnRecordLoader(mFh).loadAllFromEF(efid, extensionEf, in requestLoadAllAdnLike()
DRuimRecords.java108 mAdnCache = new AdnRecordCache(mFh); in RuimRecords()
842 mFh.loadEFTransparent(EF_ICCID, obtainMessage(EVENT_GET_ICCID_DONE)); in onLocked()
855 mFh.loadEFTransparent(EF_ICCID, in fetchRuimRecords()
859 mFh.loadEFTransparent(EF_PL, in fetchRuimRecords()
863 mFh.loadEFTransparent(EF_CSIM_LI, in fetchRuimRecords()
867 mFh.loadEFTransparent(EF_CSIM_SPN, in fetchRuimRecords()
871 mFh.loadEFLinearFixed(EF_CSIM_MDN, 1, in fetchRuimRecords()
875 mFh.loadEFTransparent(EF_CSIM_IMSIM, in fetchRuimRecords()
879 mFh.loadEFLinearFixedAll(EF_CSIM_CDMAHOME, in fetchRuimRecords()
885 mFh.loadEFTransparent(EF_CSIM_EPRL, 4, in fetchRuimRecords()
[all …]
DUiccPkcs15.java175 private FileHandler mFh; field in UiccPkcs15
202 mFh = new FileHandler((String) ar.result); in handleMessage()
203 if (!mFh.loadFile(ID_ACRF, obtainMessage(EVENT_LOAD_ACRF_DONE))) { in handleMessage()
217 if (!mFh.loadFile(idAccf, obtainMessage(EVENT_LOAD_ACCF_DONE))) { in handleMessage()
DIccRecords.java93 protected IccFileHandler mFh; field in IccRecords
251 + " mFh=" + mFh in toString()
297 mFh = app.getIccFileHandler(); in IccRecords()
333 mFh = null; in dispose()
1313 pw.println(" mFh=" + mFh); in dump()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DUsimPhoneBookManager.java47 private IccFileHandler mFh; field in UsimPhoneBookManager
116 mFh = fh; in UsimPhoneBookManager()
194 mFh.loadEFLinearFixedAll(EF_PBR, obtainMessage(EVENT_PBR_LOAD_DONE)); in readPbrFileAndWait()
255 mFh.loadEFLinearFixedAll(emailEfid, in readEmailFileAndWait()
413 mFh.loadEFLinearFixedAll(efid, obtainMessage(EVENT_IAP_LOAD_DONE)); in readIapFileAndWait()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DSIMRecordsTest.java75 mFh = mFhMock; in SIMRecordsUT()