OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aids
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
AidRoutingManager.java
42
// OEMs/Carriers could manually map off-host
AIDs
92
Set<String>
aids
= mAidRoutingTable.get(route);
local
93
if (
aids
== null) {
94
aids
= new HashSet<String>();
95
mAidRoutingTable.put(route,
aids
);
97
aids
.add(aid);
127
Set<String>
aids
= mAidRoutingTable.get(route);
local
128
if (
aids
== null) return false;
129
aids
.remove(aid);
/frameworks/base/core/java/android/nfc/cardemulation/
ApduServiceInfo.java
64
* Whether this service represents
AIDs
running on the host CPU
102
this.mAids.addAll(aidGroup.
aids
);
202
if (currentGroup.
aids
.size() > 0) {
208
Log.e(TAG, "Not adding <aid-group> with empty or invalid
AIDs
");
217
if (isValidAid(aid) && !currentGroup.
aids
.contains(aid)) {
218
currentGroup.
aids
.add(aid);
371
final ArrayList<String>
aids
;
field in class:ApduServiceInfo.AidGroup
375
AidGroup(ArrayList<String>
aids
, String category, String description) {
376
this.
aids
=
aids
;
[
all
...]
Completed in 56 milliseconds