HomeSort by relevance Sort by last modified time
    Searched refs:systemCode (Results 1 - 11 of 11) sorted by null

  /frameworks/base/core/java/android/nfc/cardemulation/
NfcFCardEmulation.java 158 * @param systemCode The System Code to be registered
161 public boolean registerSystemCodeForService(ComponentName service, String systemCode)
163 if (service == null || systemCode == null) {
164 throw new NullPointerException("service or systemCode is null");
168 service, systemCode);
178 service, systemCode);
426 public static boolean isValidSystemCode(String systemCode) {
427 if (systemCode == null) {
430 if (systemCode.length() != 4) {
431 Log.e(TAG, "System Code " + systemCode + " is not a valid System Code.")
    [all...]
NfcFServiceInfo.java 86 String systemCode, String dynamicSystemCode, String nfcid2, String dynamicNfcid2,
90 this.mSystemCode = systemCode;
131 String systemCode = null;
139 "system-code-filter".equals(tagName) && systemCode == null) {
142 systemCode = a.getString(
144 if (!NfcFCardEmulation.isValidSystemCode(systemCode) &&
145 !systemCode.equalsIgnoreCase("NULL")) {
146 Log.e(TAG, "Invalid System Code: " + systemCode);
147 systemCode = null;
165 mSystemCode = (systemCode == null ? "NULL" : systemCode)
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
SystemCodeRoutingManager.java 62 t3tIdentifier.systemCode, t3tIdentifier.nfcid2);
67 t3tIdentifier.systemCode, t3tIdentifier.nfcid2);
73 Log.d(TAG, " " + t3tIdentifier.systemCode +
79 Log.d(TAG, " " + t3tIdentifier.systemCode +
93 * This notifies that the SystemCode routing table in the controller
110 pw.println(" " + t3tIdentifier.systemCode +
RegisteredT3tIdentifiersCache.java 47 public final String systemCode;
50 T3tIdentifier(String systemCode, String nfcid2) {
51 this.systemCode = systemCode;
61 if (!systemCode.equalsIgnoreCase(that.systemCode)) return false;
69 int result = systemCode.hashCode();
RegisteredNfcFServicesCache.java 84 public final String systemCode;
86 DynamicSystemCode(int uid, String systemCode) {
88 this.systemCode = systemCode;
335 service.setOrReplaceDynamicSystemCode(dynamicSystemCode.systemCode);
412 String systemCode = null;
435 systemCode = systemCodeString;
449 if (systemCode != null) {
451 new DynamicSystemCode(currentUid, systemCode);
464 systemCode = null
    [all...]
CardEmulationManager.java 454 String systemCode)
462 userId, Binder.getCallingUid(), service, systemCode);
  /frameworks/base/core/java/android/nfc/
INfcFCardEmulation.aidl 28 boolean registerSystemCodeForService(int userHandle, in ComponentName service, String systemCode);
  /packages/apps/Nfc/nci/jni/
RoutingManager.cpp 700 int systemCode;
703 systemCode = (((int)t3tId[0] << 8) | ((int)t3tId[1] << 0));
706 tNFA_STATUS nfaStat = NFA_CeRegisterFelicaSystemCodeOnDH (systemCode, nfcid2, nfcFCeCallback);
NfcTag.cpp 779 uint16_t systemCode = *(activationData.params.t3t.p_system_codes);
780 result [8] = (uint8_t) (systemCode >> 8);
781 result [9] = (uint8_t) systemCode;
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java     [all...]
  /prebuilts/sdk/current/
android.jar 

Completed in 1163 milliseconds