HomeSort by relevance Sort by last modified time
    Searched defs:aids (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/android/nfc/cardemulation/
AidGroup.java 32 * The AidGroup class represents a group of Application Identifiers (AIDs).
34 * <p>The format of AIDs is defined in the ISO/IEC 7816-4 specification. This class
35 * requires the AIDs to be input as a hexadecimal string, with an even amount of
42 * The maximum number of AIDs that can be present in any one group.
48 final List<String> aids; field in class:AidGroup
55 * @param aids The list of AIDs present in the group
58 public AidGroup(List<String> aids, String category) {
59 if (aids == null || aids.size() == 0)
149 ArrayList<String> aids = new ArrayList<String>(); local
    [all...]
ApduServiceInfo.java 65 * Whether this service represents AIDs running on the host CPU
222 if (currentGroup.aids.size() > 0) {
227 Log.e(TAG, "Not adding <aid-group> with empty or invalid AIDs");
236 if (CardEmulation.isValidAid(aid) && !currentGroup.aids.contains(aid)) {
237 currentGroup.aids.add(aid);
250 if (CardEmulation.isValidAid(aid) && !currentGroup.aids.contains(aid)) {
251 currentGroup.aids.add(aid);
264 if (CardEmulation.isValidAid(aid) && !currentGroup.aids.contains(aid)) {
265 currentGroup.aids.add(aid);
287 * Returns a consolidated list of AIDs from the AID group
295 final ArrayList<String> aids = new ArrayList<String>(); local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
LargeNumAidsEmulatorActivity.java 34 ArrayList<String> aids = new ArrayList<String>(); local
36 aids.add(HceUtils.LARGE_NUM_AIDS_PREFIX + String.format("%02X", i) + HceUtils.LARGE_NUM_AIDS_POSTFIX);
39 CardEmulation.CATEGORY_OTHER, aids);
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
AidRoutingManager.java 55 // OEMs/Carriers could manually map off-host AIDs
59 // How the NFC controller can match AIDs in the routing table;
106 Log.e(TAG, "Device does not support prefix AIDs but AID [" + aid
110 // Cut off '*' since controller anyway treats all AIDs as a prefix
119 Log.e(TAG, "Device does not support subset AIDs but AID [" + aid
123 Log.e(TAG, "Device does not support subset AIDs but AID [" + aid
175 * The only way to prevent this is to add the longer AIDs of the
181 // Check whether there are any shorted AIDs routed to non-default
206 Log.e(TAG, "This device does not support prefix AIDs.");
210 // Cut off '*' since controller anyway treats all AIDs as a prefi
268 Set<String> aids = mAidRoutingTable.valueAt(i); local
    [all...]
RegisteredAidCache.java 48 // mAidServices maps AIDs to services that have registered them.
50 // of AIDs that conflict with each other.
182 Log.e(TAG, "Different defaults for conflicting AIDs!");
229 * AIDs. Note that the AID itself is not an input to the decision
339 " preference, ignoring conflicting AIDs.");
360 " default, ignoring conflicting AIDs.");
486 final HashSet<String> aids = new HashSet<String>(); field in class:RegisteredAidCache.AidConflicts
529 if (DBG) Log.d(TAG, "Finding AIDs in range [" + plainAid + " - " +
540 prefixConflicts.aids.add(entry.getKey());
553 if (DBG) Log.d(TAG, "Finding AIDs in range [" + firstAid + " - "
    [all...]
RegisteredServicesCache.java 292 " AIDs: " + service.getAids());
316 Log.d(TAG, "Removing dynamic AIDs registered by " + component);
332 Log.d(TAG, "Dynamic AIDs file does not exist.");
398 Log.e(TAG, "Could not parse dynamic AIDs file, trashing.");
436 Log.e(TAG, "Error writing dynamic AIDs", e);
465 // AidGroup object with invalid AIDs over Binder.
466 List<String> aids = aidGroup.getAids(); local
467 for (String aid : aids) {
525 Log.e(TAG," Could not find dynamic AIDs for category " + category);
  /build/make/tools/fs_config/
fs_config_generator.py 132 # Some of the AIDS like AID_MEDIA_EX had names like mediaex
248 skips some hardcoded AIDs it doesn't need to generate a mapping for.
436 # No core AIDs should be within any oem range.
455 def aids(self): member in class:AIDHeaderParser
456 """Retrieves the list of found AIDs.
613 # This is only cosmetic so AIDS are arranged in ascending order
761 def aids(self): member in class:FSConfigFileParser
953 ' to parse AIDs and OEM Ranges from')
960 base_aids = self._base_parser.aids
961 oem_aids = self._oem_parser.aids
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/28/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_28/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 272 milliseconds