HomeSort by relevance Sort by last modified time
    Searched defs:aids (Results 1 - 12 of 12) 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);
273 * Returns a consolidated list of AIDs from the AID groups
276 * AID group, only the dynamically registered AIDs will be returned
278 * @return List of AIDs registered by the servic
281 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 53 // OEMs/Carriers could manually map off-host AIDs
57 // How the NFC controller can match AIDs in the routing table;
94 Log.e(TAG, "Device does not support prefix AIDs but AID [" + aid
98 // Cut off '*' since controller anyway treats all AIDs as a prefix
146 * The only way to prevent this is to add the longer AIDs of the
152 // Check whether there are any shorted AIDs routed to non-default
177 Log.e(TAG, "This device does not support prefix AIDs.");
181 // Cut off '*' since controller anyway treats all AIDs as a prefix
223 Set<String> aids = mAidRoutingTable.valueAt(i); local
225 for (String aid : aids) {
    [all...]
RegisteredAidCache.java 45 // mAidServices maps AIDs to services that have registered them.
47 // of AIDs that conflict with each other.
171 Log.e(TAG, "Different defaults for conflicting AIDs!");
214 * AIDs. Note that the AID itself is not an input to the decision
324 " preference, ignoring conflicting AIDs.");
339 " default, ignoring conflicting AIDs.");
413 final HashSet<String> aids = new HashSet<String>(); field in class:RegisteredAidCache.PrefixConflicts
420 if (DBG) Log.d(TAG, "Finding AIDs in range [" + plainAid + " - " +
431 prefixConflicts.aids.add(entry.getKey());
439 // Get all exact and prefix AIDs in an ordered lis
    [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
239 skips some hardcoded AIDs it doesn't need to generate a mapping for.
427 # No core AIDs should be within any oem range.
446 def aids(self): member in class:AIDHeaderParser
447 """Retrieves the list of found AIDs.
604 # This is only cosmetic so AIDS are arranged in ascending order
754 def aids(self): member in class:FSConfigFileParser
946 ' to parse AIDs and OEM Ranges from')
953 base_aids = self._base_parser.aids
954 oem_aids = self._oem_parser.aids
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 526 milliseconds