OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mAidCache
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
HostEmulationManager.java
70
final RegisteredAidCache
mAidCache
;
109
mAidCache
= aidCache;
141
mClearNextTapDefault =
mAidCache
.isNextTapOverriden();
171
AidResolveInfo resolveInfo =
mAidCache
.resolveAidPrefix(selectAid);
183
String category =
mAidCache
.getCategoryForAid(resolveInfo.aid);
210
String category =
mAidCache
.getCategoryForAid(resolveInfo.aid);
270
mAidCache
.setDefaultForNextTap(ActivityManager.getCurrentUser(), null);
364
ComponentName paymentApp =
mAidCache
.getDefaultServiceForCategory(userId,
530
AidResolveInfo resolveInfo =
mAidCache
.resolveAidPrefix(mLastSelectedAid);
531
String category =
mAidCache
.getCategoryForAid(mLastSelectedAid)
[
all
...]
RegisteredAidCache.java
41
//
mAidCache
is a lookup table for quickly mapping an AID to one or
46
final HashMap<String, AidResolveInfo>
mAidCache
=
127
AidResolveInfo resolveInfo =
mAidCache
.get(matches.firstKey());
162
resolveInfo =
mAidCache
.get(aid);
433
mAidCache
.clear();
437
if (!
mAidCache
.containsKey(aid)) {
438
mAidCache
.put(aid, resolveAidLocked(aidEntry.getValue(), aid));
451
mAidCache
.entrySet()) {
626
for (Map.Entry<String, AidResolveInfo> entry :
mAidCache
.entrySet()) {
/packages/apps/Nfc/src/com/android/nfc/
NfcService.java
277
private RegisteredAidCache
mAidCache
;
512
mAidCache
= new RegisteredAidCache(mContext, mAidRoutingManager);
513
mHostEmulationManager = new HostEmulationManager(mContext,
mAidCache
);
690
mAidCache
.invalidateCache(ActivityManager.getCurrentUser());
740
mAidCache
.onNfcEnabled();
776
mAidCache
.onNfcDisabled();
[
all
...]
Completed in 920 milliseconds