OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newAdn
(Results
1 - 2
of
2
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
AdnRecordCache.java
163
* Replace oldAdn with
newAdn
in ADN-like record in EF
169
* If oldAdn.isEmpty() is ture, it insert the
newAdn
170
* @param
newAdn
is the adn to be stored
171
* If
newAdn
.isEmpty() is true, it delete the oldAdn
176
public void updateAdnBySearch(int efid, AdnRecord oldAdn, AdnRecord
newAdn
,
221
newAdn
.mEfid = efid;
222
newAdn
.mExtRecord = extensionEF;
223
newAdn
.mRecordNumber = index;
235
new AdnRecordLoader(mFh).updateEF(
newAdn
, efid, extensionEF,
237
obtainMessage(EVENT_UPDATE_ADN_DONE, efid, index,
newAdn
));
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccPhoneBookInterfaceManager.java
139
* Replace oldAdn with
newAdn
in ADN-like record in EF
185
AdnRecord
newAdn
= new AdnRecord(newTag, newPhoneNumber);
187
mAdnCache.updateAdnBySearch(efid, oldAdn,
newAdn
, pin2, response);
233
AdnRecord
newAdn
= new AdnRecord(newTag, newPhoneNumber);
235
mAdnCache.updateAdnByIndex(efid,
newAdn
, index, pin2, response);
Completed in 41 milliseconds